service的隐式启动和显示启动
Last updated
Was this helpful?
Last updated
Was this helpful?
service的隐式启动和显示启动
有些时候我们使用Service的时需要采用隐私启动的方式,但是Android 5.0一出来后,其中有个特性就是Service Intent must be explitict,也就是说从Lollipop开始,service服务必须采用显示方式启动。
而android源码是这样写的(源码位置:sdk/sources/android-21/android/app/ContextImpl.java):
可产考:
既然,源码里是这样写的,那么这里有两种解决方法:
1、设置Action和packageName:
参考代码如下:
此方式是google官方推荐使用的解决方法。
2、设置ComponentName:
Intent intent = new Intent(); ComponentName componentName = new ComponentName(pkgName,serviceName); intent.setComponent(componentName); context.startService(intent);
补充知识点: 在Android5.0之前的显示和隐式启动service
隐式启动
AndroidManifest.xml 中定义service
java 启动
显示启动
不同进程的显式启动,需要带上applicationId,service的全限定名就可以了
在此附上地址供大家参考: ... tml#billing-service,有兴趣的可以去看看。