音声から音声を認識したい。認識された単語がリスト ビューに表示されます。作業を実行するコードを書きましたが、致命的な例外「android.content.ActivityNotFoundException」が発生します。
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
tView=(TextView) findViewById(R.id.Textshow);
vButton=(Button) findViewById(R.id.speakButton);
lView=(ListView) findViewById(R.id.listView);
vButton.setOnClickListener(this);
}
@Override
public void onClick(View arg0)
{
Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
intent.putExtra(RecognizerIntent.EXTRA_PROMPT, "Voice recognition Demo...");
startActivityForResult(intent, REQUEST_CODE);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data)
{
if(requestCode==REQUEST_CODE && resultCode==RESULT_OK)
{
ArrayList<String> result=data.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
lView.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1,result));
}
super.onActivityResult(requestCode, resultCode, data);
}
そのような例外の理由は何ですか?どうすれば解決できますか?ありがとう。