【android 在5.0以后不允许使用隐式Intent方式来启动Service】知识的领域是无限的,我们的学习也是无限期的。这篇文章主要讲述android 在5.0以后不允许使用隐式Intent方式来启动Service相关的知识,希望能为你提供帮助。
android5.0以后不能使用隐式intent :需要指定Intent的ComponentName信息:intent.setComponent(xxx),或指定Intent的setPackage("包名"),如果两者都没有指定的话将会报以上错误。尤其在framework层启动APP层的service时,如果是隐式启动service,可能会导致系统进程挂掉,出现不断重启的现象。
三 解决方法
1. Intent intent = new Intent();
ComponentName componentName = new ComponentName(pkgName,serviceName);
intent.setComponent(componentName);
context.startService(intent);
2.Intent mIntent = new Intent();
mIntent.setAction("XXX.XXX.XXX");
//Service能够匹配的Action
mIntent.setPackage(pkgName);
//应用的包名
context.startService(mIntent);
推荐阅读
- android开发学习——day1
- 修改 android ListView 字体大小及颜色
- Android学习笔记Git相关配置及使用
- Android Studio环境下代码混淆+签名打包
- android--线程
- Android便携式热点的开启状态检测和SSID的获取
- Hybrid AppCordova+android入门
- ionic2——安装并配置android sdk
- 通过Appium获取Android app中webview