2

已经看到另一个线程提到,如果从具有单实例启动模式的活动中启动,具有识别器意图的活动将无法正常工作。所以我想知道我的替代方案是什么。

我的用例如下:我的应用程序监听一个事件,当这个事件发生时,它会显示一个警告对话框,即使用户正在使用另一个应用程序。从其他问题中,我发现这样做的常见方法是使用单实例启动模式启动活动。但是现在一旦弹出这个警告对话框,我需要使用 RecognizerIntent 并对文本进行一些语音处理。然而,语音输入对话框不会等待任何输入,并且会立即调用 onActivityResult()。如果我的警报对话框从具有“singleInstance”以外的启动模式的活动中弹出,则一切正常。

还有其他方法可以解决这个问题吗?

4

1 回答 1

0

尝试以这种方式运行您的代码:-

List<ResolveInfo> activities = pm.queryIntentActivities(
            new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH), 0);
    if (activities.size() != 0) {
        speakButton.setOnClickListener(this);
    } else {
        speakButton.setEnabled(false);
        speakButton.setText("Recognizer not present");
   }

上面的代码应该写在 onCreate() 里面,下面的代码应该写在外面

public void onClick(View v) {
    if (v.getId() == R.id.btn_speak) {
        startVoiceRecognitionActivity();
    }
}


 private void startVoiceRecognitionActivity() {
    Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
    intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
            RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
    intent.putExtra(RecognizerIntent.EXTRA_PROMPT, "Speech recognition demo");
    startActivityForResult(intent, VOICE_RECOGNITION_REQUEST_CODE);

//Run a loop checking whether the list is empty or not:-
    while(activities.isEmpty()){
        //wait    
    }
//Now run your alert dialog box 
}

我已经在 DellXCD35 android 2.3.3 上对其进行了测试,一旦您在列表视图中获得文本列表,它就可以很好地工作,这取决于您想要选择的内容。

于 2013-02-24T05:53:49.950 回答