Android 语音识别:startActivityForResult() 不起作用
Android speech recognition: startActivityForResult() does not work
所有你需要知道的:
我有一个带有按钮的对话框。当按下按钮时,我想在我的 MainActivity 中启动语音识别。 (该对话框由另一个 class 创建,我通过界面处理点击)。
所以这是相关代码:(在 MainActivity 中)
public void speechToText(boolean isName) {
this.isName = isName;
Intent intent = new Intent(
RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, Locale.getDefault().toString());
//intent.putExtra(RecognizerIntent.EXTRA_PROMPT, getString(R.string.prompt));
try {
startActivityForResult(intent, RESULT_SPEECH);
Toast.makeText(getApplicationContext(),
"started acitvity for result", //test toast
Toast.LENGTH_SHORT).show();
} catch (ActivityNotFoundException a) {
Toast.makeText(getApplicationContext(),
getString(R.string.speech_to_text_not_supported),
Toast.LENGTH_SHORT).show();
}
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
switch (requestCode) {
case RESULT_SPEECH: {
if (resultCode == RESULT_OK && null != data) {
ArrayList<String> text = data
.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
if(isName)
currentName = text.get(0);
else
currentDes = text.get(0);
dialog.DialogNew(currentName, currentDes);
}
break;
}
}
}
问题出在这里:通常会出现一个对话框用于输入语音。但不知怎的,这个对话框不会出现。我已经测试过了,它显示 'test toast'(见上文),但没有错误,也没有输入对话框。但是为什么?
编辑: 我终于可以在另一台设备上测试它了,(最后)我得到了一个错误:google 对话框被关闭了。从协议来看,空指针异常,所以我猜我的意图一定有问题。
我相信你也需要这个:
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
Android 文档在 "Required Extras" 下列出了 RecognizerIntent。
编辑:虽然经过实验,似乎 EXTRA_LANGUAGE_MODEL 在 Intent 中不是强制性的,这与文档相反。没有它识别确实有效,至少在我的测试中...
所以我终于可以解决问题了:
在我的清单中:
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:configChanges="orientation|keyboardHidden|screenSize"
android:theme="@style/AppTheme"
android:uiOptions="none" >
android:launchMode="singleInstance"> <!--THIS WON'T WORK-->
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
您无法将 singleInstance 用作 activity 的启动模式。
为了我的目的,我使用 singleTask 作为替代。
所有你需要知道的: 我有一个带有按钮的对话框。当按下按钮时,我想在我的 MainActivity 中启动语音识别。 (该对话框由另一个 class 创建,我通过界面处理点击)。
所以这是相关代码:(在 MainActivity 中)
public void speechToText(boolean isName) {
this.isName = isName;
Intent intent = new Intent(
RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, Locale.getDefault().toString());
//intent.putExtra(RecognizerIntent.EXTRA_PROMPT, getString(R.string.prompt));
try {
startActivityForResult(intent, RESULT_SPEECH);
Toast.makeText(getApplicationContext(),
"started acitvity for result", //test toast
Toast.LENGTH_SHORT).show();
} catch (ActivityNotFoundException a) {
Toast.makeText(getApplicationContext(),
getString(R.string.speech_to_text_not_supported),
Toast.LENGTH_SHORT).show();
}
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
switch (requestCode) {
case RESULT_SPEECH: {
if (resultCode == RESULT_OK && null != data) {
ArrayList<String> text = data
.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
if(isName)
currentName = text.get(0);
else
currentDes = text.get(0);
dialog.DialogNew(currentName, currentDes);
}
break;
}
}
}
问题出在这里:通常会出现一个对话框用于输入语音。但不知怎的,这个对话框不会出现。我已经测试过了,它显示 'test toast'(见上文),但没有错误,也没有输入对话框。但是为什么?
编辑: 我终于可以在另一台设备上测试它了,(最后)我得到了一个错误:google 对话框被关闭了。从协议来看,空指针异常,所以我猜我的意图一定有问题。
我相信你也需要这个:
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
Android 文档在 "Required Extras" 下列出了 RecognizerIntent。
编辑:虽然经过实验,似乎 EXTRA_LANGUAGE_MODEL 在 Intent 中不是强制性的,这与文档相反。没有它识别确实有效,至少在我的测试中...
所以我终于可以解决问题了:
在我的清单中:
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:configChanges="orientation|keyboardHidden|screenSize"
android:theme="@style/AppTheme"
android:uiOptions="none" >
android:launchMode="singleInstance"> <!--THIS WON'T WORK-->
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
您无法将 singleInstance 用作 activity 的启动模式。 为了我的目的,我使用 singleTask 作为替代。