`

java.lang.IllegalArgumentException: Service Intent must be explicit

阅读更多
转自:http://www.2cto.com/kf/201507/414802.html

Android L[Android5.X.X] 版本通过Intent隐式启动service时将会报出以下错误:

AndroidRuntime( 792): java.lang.IllegalArgumentException: Service Intent must be explicit




B .分析过程



上面源码中蓝色加粗部分:service.getComponent() == null && service.getPackage() == null

表明通过intent启动service时, 需要指定Intent的ComponentName信息:intent.setComponent(xxx),或指定Intent的setPackage(包名),如果两者都没有指定的话将会报以上错误。尤其在framework层启动APP层的service时,如果是隐式启动service,可能会导致系统进程挂掉,出现不断重启的现象。


三 解决方法



参考一

Intent intent = new Intent();
ComponentName componentName = new ComponentName(pkgName,serviceName);
intent.setComponent(componentName);
context.startService(intent);


参考二

Intent mIntent = new Intent();
mIntent.setAction(XXX.XXX.XXX);//Service能够匹配的Action
mIntent.setPackage(pkgName);//应用的包名
context.startService(mIntent);


四 延伸官网


Binding to a Service
The Context.bindService() method now requires an explicit Intent, and throws an exception if given an implicit intent. To ensure your app is secure, use an explicit intent when starting or binding your Service, and do not declare intent filters for the service.
也就是说,在5.0以后不允许使用隐式Intent方式来启动Service
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics