コード例 #1
0
ファイル: MainActivity.java プロジェクト: mailat/dina12
 // 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);
     confirmText(spokenText);
   }
   super.onActivityResult(requestCode, resultCode, data);
 }