文本到语音代码中的错误

时间:2017-03-10 07:06:34

标签: android text-to-speech voice-recognition

我正在遵循本教程,在我的应用程序中实现文本到语音的实现

http://www.androidhive.info/2012/01/android-text-to-speech-tutorial/

言论激烈。请参考下面的图片

添加代码后

After editing the code

1 个答案:

答案 0 :(得分:0)

更改以下代码: -

TextToSpeech textSpeach = new TextToSpeech(this, this);

更改为

   TextToSpeech textSpeach = new TextToSpeech(this, new TextToSpeech.OnInitListener() {
            @Override
            public void onInit(int status) {

            }
        });

问题原因 : - 您正在this的参数中传递上下文TextToSpeech,因此出现此问题,其次是TextToSpeech

的列表