0

音声から音声を認識したい。認識された単語がリスト ビューに表示されます。作業を実行するコードを書きましたが、致命的な例外「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);
}

そのような例外の理由は何ですか?どうすれば解決できますか?ありがとう。

4

1 に答える 1

0

それは、デバイスがその意図をサポートしていないためです。次を使用します。

try {
startActivityForResult(intent, REQUEST_CODE);
} catch(ActivityNotFoundException e){
   Log.e("speech", e.toString());
}

音声認識機能のあるデバイスでテストしてみて、どうなるか見てみましょう。

こちらもご覧ください:ActivityNotFoundException + SOに関するスピーチ

于 2013-03-03T20:24:48.557 に答える