2

Google Wear サイトから Free-form Speech Input を使用しようとしていました。

Hello World の例から、textView のクリックを追加しました。音声インテントから Speak Now アクティビティが表示されますが、エミュレーターはマイクからの音を検出できませんでした。

私は Mac OS 10.9.3 を使用しています。arm と Intel の両方のバージョンの wear watch を試し、AVD の作成に存在するハードウェア キーボードを確認しました。ドキュメントには、システムに組み込みの音声認識エンジンがあると書かれているため、モバイル エミュレーターで行うように Google Voice アプリをインストールするのは間違った答えのように思えます。

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

1

Android のドキュメントによると、Android エミュレーターは音声入力をサポートしていません。ウェアラブル デバイス用のエミュレータを使用する場合は、AVD 設定にあるハードウェア キーボードを有効にして、代わりに返信を入力できるようにします ( http://developer.android.com/training/wearables/notifications/voice-input.html ) 。

于 2016-04-11T04:04:56.687 に答える