有些时候我们使用Service的时需要采用隐私启动的方式,但是Android 5.0一出来后,其中有个特性就是Service Intentmust 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 mIntent = new Intent();
  2. mIntent.setAction("XXX.XXX.XXX");//你定义的service的action
  3. mIntent.setPackage(getPackageName());//这里你需要设置你应用的包名
  4. context.startService(mIntent);
复制代码

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


在此附上地址供大家参考:http://developer.android.com/goo ... tml#billing-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);
复制代码

更多相关文章

  1. Android(安卓)实现微信,QQ的程序前后台切换:back键切换后台;点击通
  2. 【源代码】基于Android和蓝牙的单片机温度採集系统
  3. Android学习笔记2:Hello World程序解析
  4. 【源码】实现Android闹钟功能使用HTML+JS,并附带Alarm代码分享
  5. Android使用getIdentifier()方法根据资源名来获取资源id
  6. Activity的启动模式和onNewIntent
  7. 让你的代码减少三倍!使用kotlin开发Android(五) 监听器
  8. 最完整Android(安卓)Studio插件整理 (转)
  9. 在 Android(安卓)studio 中 配置Gradle 根据不同参数打包,并在代

随机推荐

  1. Android中Handler小例子
  2. android之从Bmob获取数据显示在ListView
  3. Android 屏幕截图
  4. Awesome Adb——一份超全超详细的 ADB 用
  5. 如何防止android Toast重复显示?
  6. 动态修改Android参数信息的方法绕过改机
  7. Android 利用url获取Bitmap图片
  8. Win7上Git安装及简单配置过程
  9. Android phone在拨号盘输入*#06#的处理流
  10. android调用shell命令及权限问题