Service的隐式启动和显示启动

前言:懂得珍惜方可拥有更多。
有些时候我们使用Service的时需要采用隐私启动的方式,但是Android 5.0一出来后,其中有个特性就是Service Intent must be explitict,也就是说从Lollipop开始,service服务必须采用显示方式启动。
而android源码是这样写的(源码位置:sdk/sources/android-21/android/app/ContextImpl.java):

private void validateServiceIntent(Intent service) {  
        if (service.getComponent() == null && service.getPackage() == null) {  
            if (getApplicationInfo().targetSdkVersion >= Build.VERSION_CODES.LOLLIPOP) {  
                IllegalArgumentException ex = new IllegalArgumentException(  
                        "Service Intent must be explicit: " + service);  
                throw ex;  
            } else {  
                Log.w(TAG, "Implicit intents with startService are not safe: " + service  
                        + " " + Debug.getCallers(2, 3));  
            }  
        }  
    }  

既然,源码里是这样写的,那么这里有两种解决方法:

1、设置Action和packageName:

参考代码如下:

Intent mIntent = new Intent();  
mIntent.setAction("XXX.XXX.XXX");//你定义的service的action  
mIntent.setPackage(getPackageName());//这里你需要设置你应用的包名  
context.startService(mIntent);  

此方式是google官方推荐使用的解决方法。

2、设置ComponentName:

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

补充知识点:在Android5.0之前的显示和隐式启动service
隐式启动

<service android:name=".service">  
<intent-filer>  
<action android:name="com.android.service"/>  
<intent-filer>  
</service>  
final Intent serviceIntent=new Intent();  
serviceIntent.setAction("com.android.service");  

显示启动

final Intent serviceIntent=new Intent(this,service.class);  
startService(serviceIntent);  

不同进程的显式启动,需要带上applicationId,service的全限定名就可以了

转发自https://blog.csdn.net/cpcpcp123/article/details/52741237

  • 3
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值