android 在5.0以后不允许使用隐式Intent方式来启动Service

Posted 水柠檬QAQ

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 在5.0以后不允许使用隐式Intent方式来启动Service的主要内容,如果未能解决你的问题,请参考以下文章

隐式意图Intent

Android:不允许后台执行:接收意图

Android5.0以后隐式启动ServiceBug

如何使用为 Android 5.0 (Lollipop) 提供的新 SD 卡访问 API?

Android 5.0 Usb调试拦截分析及修改

解决Android5.0以后DataPicker选择时间无效的bug。