您好,登錄后才能下訂單哦!
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報錯如何解決問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。