Android TTS doesn't speak

风格不统一 提交于 2019-11-30 20:05:27

After some more hours looking the code, I noticed that the problem is that TTS engine initialization takes some time. If initialization is not over, the speak method call will fail.

If you "say" something on button click, you will probably won't need this, because user will take some time to think before pressing the button, and the initialization will be over.

If you want to "say" something as soon initialization finishes, use this code :

talker = new TextToSpeech(this, new TextToSpeech.OnInitListener() {

        @Override
        public void onInit(int arg0) {
       if(arg0 == TextToSpeech.SUCCESS) 
           {
        talker.setLanguage(Locale.US);
            say(gameover,true);
            say(line,false);
            say(definition_string,false);
            }
        }
    });

It is recommended that you implement TextToSpeech.OnInitListener from your main activity. try this

public class GameOverActivity extends Activity implements TextToSpeech.OnInitListener {

@Override
public void onInit(int status) {
    if (status == TextToSpeech.SUCCESS) {

        int result = mTts.setLanguage(Locale.US);
        // Try this someday for some interesting results.
        // int result mTts.setLanguage(Locale.FRANCE);
        if (result == TextToSpeech.LANG_MISSING_DATA ||
                result == TextToSpeech.LANG_NOT_SUPPORTED) {
            // Lanuage data is missing or the language is not supported.
            //Log.e(TAG, "Language is not available.");
        } else {
            // Check the documentation for other possible result codes.
            // For example, the language may be available for the locale,
            // but not for the specified country and variant.

            // The TTS engine has been successfully initialized.
            // Allow the user to press the button for the app to speak again.
            // mAgainButton.setEnabled(true);
            // Greet the user.
            //sayHello();
        }
    } else {
        // Initialization failed.

    }

}

private TextToSpeech mTts;
}

Well another cause of this problem could be your TTS engine, Sometimes in SAMSUNG phones the default TTS engine is SAMSUNG Engine which doesn't work on some languages like persian (I don't mean for persian text, Even if you're trying to read an english text, it still doesn't work, it's strange but It happens). In order to solve it all you have to do is to set the TTS engine on your code (or select Setting -> Language input -> Text to speech -> Google Text-to-speech manually)

One problem I've had with text-to-speech is that if it is installed to the SD card, then it won't work when the USB is plugged up. So you might try unplugging your test device from the USB and see if that solves the problem.

Another thing you might try is stepping through the program and seeing if you are altering your text-to-speech object in any way on accident. Set a break point on the talk part of your code and take a look at all of the variables in your talker object.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!