文本到语音转换工作不正常(Text to Speech not working as expecte

2019-07-18 20:04发布

我跟了几个教程,但我遇到了同样的问题。 首先,这里是我的简单的代码:

import java.util.Locale;

import android.app.Activity;
import android.content.Intent;
import android.content.pm.ActivityInfo;
import android.os.Bundle;
import android.speech.tts.TextToSpeech;
import android.speech.tts.TextToSpeech.OnInitListener;
import android.util.Log;

public class AchievementsActivity extends Activity implements OnInitListener {

    TextToSpeech reader;
    Locale canada;
    boolean readerInit = false;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setRequestedOrientation (ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);


        canada = Locale.ENGLISH;
        reader = new TextToSpeech(this, this);

        //speak();

        //      while (reader.isSpeaking()) {} //waiting for reader to finish speaking

    }

    @Override
    public void onStart()   {
        super.onStart();
        //speak();

    }

    @Override
    public void onInit(int status) {

        if (status == TextToSpeech.SUCCESS) {
            reader.setLanguage(canada);
            reader.setPitch(0.9f);
            Log.e("Init", "Success");
            readerInit = true;
            speak();
        }

        else
            System.out.println("Something went wrong.");
    }

    public void speak() {
        reader.speak("You currently have no achievements.", TextToSpeech.QUEUE_FLUSH, null);
    }
}

现在,请注意在第一个说话onCreate()我已经注释掉,并在第二个onStart()我也注释掉。 根据我收到的logcat这样做的原因是显而易见的。 出于某种原因,他们被称为前的初始化reader完成。 所以我这方面的工作权利的唯一方法是通过将speak()函数后的初始化是确保自己的方法内完成。

所以我在想,如果有任何的方式来等待初始化完成,然后运行speak()onCreateonStart()

Answer 1:

你可以这样做:

@Override
public void onInit(int status) {

    if (status == TextToSpeech.SUCCESS) {
        reader.setLanguage(canada);
        reader.setPitch(0.9f);
        Log.e("Init", "Success");
        readerInit = true;

        // wait a little for the initialization to complete
        Handler h = new Handler();
        h.postDelayed(new Runnable() {
            @Override
            public void run() {
                // run your code here
                speak();
            }
        }, 400);

    }

    else {
        System.out.println("Something went wrong.");
    }

}

这是不是很漂亮,但它的工作原理。 我希望有人会找到一个更好的解决办法?



Answer 2:

请看看到本教程 。
基本上,它的过程中强制初始化onCreate()方法。

// Fire off an intent to check if a TTS engine is installed
Intent checkIntent = new Intent();
checkIntent.setAction(TextToSpeech.Engine.ACTION_CHECK_TTS_DATA);
startActivityForResult(checkIntent, MY_DATA_CHECK_CODE);

然后,你将能够在演讲一开始你想要的任何文本(与出用户的任何交互)。 当然,说话会奏效。

HTH!
米尔顿



Answer 3:

尝试使用另一个构造函数,使用给定的TTS引擎的文字转语音类:

TextToSpeech(this,this,"com.google.android.tts");

代替:

new TextToSpeech(this, this);


文章来源: Text to Speech not working as expected