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

【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);







    推荐阅读