Implicit intents with startService are not safe:解決辦法

有些時候我們使用Service的時需要採用隱私啓動的方式,但是Android 5.0一出來後,其中有個特性就是Service Intent  must be explitict,也就是說從Lollipop開始,service服務必須採用顯示方式啓動。

而android源碼是這樣寫的(源碼位置:sdk/sources/android-21/android/app/ContextImpl.java):

[java] view plain copy
 print?
  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(23));  
  10.            }  
  11.        }  
  12.    }  

那麼這裏有兩種解決方法:

1、設置Action和packageName:

參考代碼如下:

[java] view plain copy
 print?
  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

[java] view plain copy
 print?在CODE上查看代碼片派生到我的代碼片
  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.     }  

調用方式如下:

[java] view plain copy
 print?在CODE上查看代碼片派生到我的代碼片
  1. Intent mIntent = new Intent();  
  2. mIntent.setAction("XXX.XXX.XXX");  
  3. Intent eintent = new Intent(getExplicitIntent(mContext,mIntent));  
  4. context.startService(eintent);  
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章