Service组件 Android 5.0中出现的警告:Service Intent must be explicit

在学习Service组件时,按照书上的例子的,写好,运行点击后,应用闪退,后台报错


去网上找了下,发现是因为android 5.0存在的问题,正好我编译程序的sdk是5.0.1的。

Android 5.0一出来后,其中有个特性就是Service Intent  must be explitict,也就是说从Lollipop开始,service服务必须采用显示方式启动。
而android源码是这样写的(源码位置:sdk/sources/android-21/android/app/ContextImpl.java):

  1. private void validateServiceIntent(Intent service) {
  2.         if (service.getComponent() == null && service.getPackage() == null) {
  3.             if (getApplicationInfo().targetSdkVersion >= Build.VERSION_CODES.LOLLIPOP) {
  4.                 IllegalArgumentException ex = new IllegalArgumentException(
  5.                         "Service Intent must be explicit: " + service);
  6.                 throw ex;
  7.             } else {
  8.                 Log.w(TAG, "Implicit intents with startService are not safe: " + service
  9.                         + " " + Debug.getCallers(2, 3));
  10.             }
  11.         }
  12.     }
既然,源码里是这样写的,那么这里有两种解决方法:

1、设置Action和packageName:

参考代码如下:
  1. Intent intent = new Intent();
  2. mIntent.setAction("XXX.XXX.XXX");//你定义的service的action
  3. mIntent.setPackage(getPackageName());//这里你需要设置你应用的包名
  4. context.startService(intent);
此方式是google官方推荐使用的解决方法。

在此附上地址供大家参考:http://developer.android.com/goo ... tml#billing-service,有兴趣的可以去看看。

注意:这里的packageName是当前应用的包名,即AndroidManifest.xml中那个package值,不能是你service所在那个包路径


2、将隐式启动转换为显示启动--参考地址:http://stackoverflow.com/a/26318757/1446466

  1. public static Intent getExplicitIntent(Context context, Intent implicitIntent) {
  2.         // Retrieve all services that can match the given intent
  3.         PackageManager pm = context.getPackageManager();
  4.         List<ResolveInfo> resolveInfo = pm.queryIntentServices(implicitIntent, 0);
  5.         // Make sure only one match was found
  6.         if (resolveInfo == null || resolveInfo.size() != 1) {
  7.             return null;
  8.         }
  9.         // Get component info and create ComponentName
  10.         ResolveInfo serviceInfo = resolveInfo.get(0);
  11.         String packageName = serviceInfo.serviceInfo.packageName;
  12.         String className = serviceInfo.serviceInfo.name;
  13.         ComponentName component = new ComponentName(packageName, className);
  14.         // Create a new intent. Use the old one for extras and such reuse
  15.         Intent explicitIntent = new Intent(implicitIntent);
  16.         // Set the component to be explicit
  17.         explicitIntent.setComponent(component);
  18.         return explicitIntent;
  19.     }
复制代码
调用方式如下:
  1. Intent mIntent = new Intent();
  2. mIntent.setAction("XXX.XXX.XXX");
  3. Intent eintent = new Intent(getExplicitIntent(mContext,mIntent));
  4. context.startService(eintent);
复制代码

详细地址:http://blog.csdn.net/vrix/article/details/45289207


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值