如何解決Android 5.0中出現的警告:Service Intent must be expli

來源:互聯網
上載者:User

標籤:

有些時候我們使用Service的時需要採用隱私啟動的方式,但是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 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);
複製代碼
上述是eoe上看到的解決方案,而當時我是在用AIDL的service,測試了兩種方式,第一種在添加setpackage這句代碼後提示AIDL的service的綁定失敗,第二種方式解決了出現的異常問題,如果有更好的解決方案希望能留言或者私信我,以便學習知識更新博文

如何解決Android 5.0中出現的警告:Service Intent must be expli

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.