2

我试图使用 Google Wear 网站的自由格式语音输入。

在 hello world 示例中,我只是在 textView 上添加了一个点击。它确实从语音意图中调出了 Speak Now 活动,但模拟器无法检测到来自我的麦克风的任何声音。

我使用的是 Mac OS 10.9.3,我尝试了 arm 和 intel 版本的磨损手表,并检查了 AVD 创建中存在的硬件键盘。文档说有一个系统内置的语音识别器,所以像在移动模拟器中那样安装谷歌语音应用程序似乎是一个错误的答案?

public class MainActivity extends Activity {

private TextView mTextView;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    final WatchViewStub stub = (WatchViewStub) findViewById(R.id.watch_view_stub);
    stub.setOnLayoutInflatedListener(new WatchViewStub.OnLayoutInflatedListener() {
        @Override
        public void onLayoutInflated(WatchViewStub stub) {
            mTextView = (TextView) stub.findViewById(R.id.text);
            mTextView.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    displaySpeechRecognizer();
                }
            });
        }
    });
}


private static final int SPEECH_REQUEST_CODE = 0;

// Create an intent that can start the Speech Recognizer activity
private void displaySpeechRecognizer() {
    Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
    intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);

    // Start the activity, the intent will be populated with the speech text
    startActivityForResult(intent, SPEECH_REQUEST_CODE);
}

// This callback is invoked when the Speech Recognizer returns.
// This is where you process the intent and extract the speech text from the intent.
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (requestCode == SPEECH_REQUEST_CODE && resultCode == RESULT_OK) {
        List<String> results = data.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
        String spokenText = results.get(0);
        // Do something with spokenText
    }
    super.onActivityResult(requestCode, resultCode, data);
}

}

4

2 回答 2

2

我通过这篇文章从 Android 可穿戴模拟器接收语音输入发现,您可以使用键盘进行输入,我认为现在没关系

于 2014-07-06T19:18:24.057 回答
1

根据 android 文档 - Android 模拟器不支持语音输入。将模拟器用于可穿戴设备时,启用 AVD 设置中的硬件键盘,以便您可以键入回复(http://developer.android.com/training/wearables/notifications/voice-input.html

于 2016-04-11T04:04:56.687 回答