文本到语音不按预期工作

时间:2013-01-28 13:28:13

标签: android text-to-speech

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

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()onCreate中运行onStart()

3 个答案:

答案 0 :(得分:4)

您可以这样做:

@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.");
    }

}

这不是很好,但它确实有效。我希望有人会找到更好的解决方案......

答案 1 :(得分:2)

请查看this tutorial
基本上,它会在onCreate()方法期间强制执行init。

// 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!
米尔顿

答案 2 :(得分:0)

尝试使用给定TTS引擎的TextToSpeech类的另一个构造函数:

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

而不是:

new TextToSpeech(this, this);