为什么以下Ordered Broadcast在 Android Oreo 中会失败,除非我专门设置了包名称?
final Intent vrIntent = new Intent(RecognizerIntent.ACTION_GET_LANGUAGE_DETAILS);
// Setting the package it will work. Omitting, it will fail
// vrIntent.setPackage("com.google.android.googlequicksearchbox");
getContext().sendOrderedBroadcast(vrIntent, null, new BroadcastReceiver() {
@Override
public void onReceive(final Context context, final Intent intent) {
// final Bundle bundle = intent.getExtras();
final Bundle bundle = getResultExtras(true);
if (bundle != null) {
if (bundle.containsKey(RecognizerIntent.EXTRA_SUPPORTED_LANGUAGES)) {
Log.i("TAG", "onReceive: EXTRA_SUPPORTED_LANGUAGES present");
final ArrayList<String> vrStringLocales = bundle.getStringArrayList(
RecognizerIntent.EXTRA_SUPPORTED_LANGUAGES);
Log.i("TAG", "onReceive: EXTRA_SUPPORTED_LANGUAGES size: " + vrStringLocales.size());
} else {
Log.w("TAG", "onReceive: missing EXTRA_SUPPORTED_LANGUAGES");
}
} else {
Log.w("TAG", "onReceive: Bundle null");
}
}, null, 1234, null, null);
如果包名没有设置,EXTRA_SUPPORTED_LANGUAGES
会丢失。
我最近问了一个赏金问题,我没有设置包名称的“遗留代码”在 Oreo 中失败,但在以前的 Android 版本上成功运行。
在检查了API 26 中的所有行为变化后,我看不出任何可以解释这一点的东西。
任何人都可以阐明可能的原因吗?
注意:示例代码和问题假设设备安装了Google 的“Now”应用程序以提供RecognitionService