亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android 應用中出現Service Intent must be explicit報錯如何解決

發布時間:2020-12-03 15:00:22 來源:億速云 閱讀:1034 作者:Leah 欄目:移動開發

Android 應用中出現Service Intent must be explicit報錯如何解決?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

Android 出現的警告(Service Intent must be explicit)解決辦法詳解

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

而android源碼是這樣寫的

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);

2、將隱式啟動轉換為顯示啟動:

public static Intent getExplicitIntent(Context context, Intent implicitIntent) {
  // Retrieve all services that can match the given intent
  PackageManager pm = context.getPackageManager();
  List<ResolveInfo> resolveInfo = pm.queryIntentServices(implicitIntent, 0);
  // Make sure only one match was found
  if (resolveInfo == null || resolveInfo.size() != 1) {
   return null;
  }
  // Get component info and create ComponentName
  ResolveInfo serviceInfo = resolveInfo.get(0);
  String packageName = serviceInfo.serviceInfo.packageName;
  String className = serviceInfo.serviceInfo.name;
  ComponentName component = new ComponentName(packageName, className);
  // Create a new intent. Use the old one for extras and such reuse
  Intent explicitIntent = new Intent(implicitIntent);
  // Set the component to be explicit
  explicitIntent.setComponent(component);
  return explicitIntent;
 }

調用方式如下:

Intent mIntent = new Intent();
mIntent.setAction("XXX.XXX.XXX");
Intent eintent = new Intent(getExplicitIntent(mContext,mIntent));
context.startService(eintent);

關于Android 應用中出現Service Intent must be explicit報錯如何解決問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

尼木县| 桂东县| 潍坊市| 尚志市| 萍乡市| 陈巴尔虎旗| 丰都县| 武城县| 中方县| 文安县| 合川市| 丰原市| 松滋市| 甘谷县| 宿迁市| 钦州市| 察哈| 读书| 漳平市| 镇沅| 铅山县| 南岸区| 阿坝| 定兴县| 天门市| 澄迈县| 施秉县| 拜城县| 璧山县| 胶南市| 丹东市| 吕梁市| 师宗县| 龙山县| 宣化县| 乐至县| 瑞丽市| 安阳县| 铁岭县| 剑川县| 论坛|