[TOC]
Android 8.0问题汇总
android 8.0变更文档
https://developer.android.com/about/versions/oreo/android-8.0-changes?hl=zh-cn
启动页设置透明时在Android8报错
Android 8.0踩坑记录——Only fullscreen opaque activities can request orientation
Android8的安装应用权限
Android8的图标适配
Android 8.0静态广播接收不到
/**
* 其中ComponentName(参数1,参数2)
* 参数1指的是你的app的包名,参数2指的是你的自定义广播所在的路径
*
* 当时度娘时,看到好多人写参数1,表示是自定义广播的包名,其实是不对的,我的自定义广播的包名是“com.btzh.baidulocation.receiver”
* 我测试了好久,根本接收不到消息,后来用了方法2,点进去看到源码才明白需要的是app的包名
*
*/
Intent intent = new Intent();
intent.setAction(MqReceiver.Mq_Message);
//写法一
ComponentName componentName = new ComponentName("com.btzh.baidulocation","com.btzh.baidulocation.receiver.MqReceiver");
//写法二
//ComponentName componentName = new ComponentName(this,"com.btzh.baidulocation.receiver.MqReceiver");
intent.setComponent(componentName);
sendBroadcast(intent);
网友评论