Android语音识别:startActivityForResult()不起作用

时间:2015-08-13 21:11:34

标签: java android android-intent dialog speech

您需要知道的一切: 我有一个带有按钮的对话框。按下按钮时,我想在MainActivity中启动语音识别。 (该对话框由另一个类创建,我通过界面处理点击)。

所以这是相关的代码:(在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;
        }

    }
}

问题在于:通常会出现语音输入对话框。但不知何故,这个对话框不会出现。我测试了它,它显示了'测试吐司'(见上文),但没有错误,也没有输入对话框。但是为什么?

编辑:我终于可以在另一台设备上测试它了(最后)我收到了一个错误:Google对话框已关闭。从协议,空指针异常,所以我想我的意图一定有问题。

2 个答案:

答案 0 :(得分:1)

所以我终于可以解决问题了:

在我的表现中:

<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作为活动的启动模式。 为了我的目的,我使用singleTask作为替代。

答案 1 :(得分:0)

我相信你也需要这个:

intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);

Android文档在RecognizerIntent的“必需附加内容”下列出了此内容。

编辑:经过实验,似乎EXTRA_LANGUAGE_MODEL在Intent中不是强制性的,与文档相反。没有它,识别确实有效,至少在我的测试中......