如何解決Android 5.0中出現的警告:Service Intent must be expli
有些時候咱們使用Service的時須要採用隱私啓動的方式,可是Android 5.0一出來後,其中有個特性就是 Service Intent must be explitict ,也就是說從Lollipop開始,service服務必須採用顯示方式啓動。
而android源碼是這樣寫的(源碼位置:sdk/sources/android-21/android/app/ContextImpl.java):
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));
}
}
}
複製代碼
既然,源碼裏是這樣寫的,那麼這裏有兩種解決方法:
一、 設置Action和packageName:
參考代碼以下:
Intent mIntent = new Intent();
mIntent.setAction("XXX.XXX.XXX");//你定義的service的action
mIntent.setPackage(getPackageName());//這裏你須要設置你應用的包名
context.startService(mIntent);
複製代碼
此方式是google官方推薦使用的解決方法。
在此附上地址供你們參考:http://developer.android.com/goo ... tml#billing-service ,有興趣的能夠去看看。
二、 將隱式啓動轉換爲顯示啓動 :
--參考地址:
http://stackoverflow.com/a/26318757/1446466
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;
}
就是使用 上面這段代碼解決了出錯的問題 html
複製代碼
調用方式以下:
Intent mIntent = new Intent();
mIntent.setAction("XXX.XXX.XXX");
Intent eintent = new Intent(getExplicitIntent(mContext,mIntent));
context.startService(eintent);
複製代碼
上述是eoe上看到的解決方案,而當時我是在用AIDL的service,測試了兩種方式,第一種在添加setpackage這句代碼後提示AIDL的service的綁定失敗,第二種方式解決了出現的異常問題,若是有更好的解決方法但願能留言或者私信我,以便學習知識更新博文
歡迎關注本站公眾號,獲取更多信息