1

所以我有点问题。我试图让我的应用程序根据它通过 GCM 接收到的消息来做事。在这种情况下,它应该使用 TextToSpeech 类来发出声音。它有点工作,但不是我第一次发送消息。我意识到这可能是因为 TextToSpeech 尚未实例化,但我不确定如何去做?我尝试了 onInit(),但这根本不起作用。

另外,在我的示例中,关闭 TTS 的最佳方法是什么?

免责声明:我来自 PHP 背景,对 Java 知之甚少。我尝试边做边学,所以如果这是一个愚蠢的问题,请原谅我。提前致谢!

public class GCMIntentService extends GCMBaseIntentService {

private static final String TAG = "GCMIntentService";
public static TextToSpeech mtts;

public GCMIntentService() {
    super(SENDER_ID);
}

@Override
protected void onMessage(Context context, Intent intent) {
    Log.i(TAG, "Received message");
    String message = intent.getExtras().getString("message");
    mtts = new TextToSpeech(context, null);

    if (message.startsWith("makeSound")) {
        mtts = new TextToSpeech(context, null);
        mtts.setLanguage(Locale.US);
        mtts.speak(message, TextToSpeech.QUEUE_FLUSH, null);
    }
}
}
4

1 回答 1

0

第一次不行,因为TextToSpeech的初始化是异步的。您不能简单地实例化它并照常使用它。如果您想立即使用 TextToSpeech,您应该提供一个在初始化 TextToSpeech 后调用的回调。

 mTextToSpeech = new TextToSpeech( this, new TextToSpeech.OnInitListener()
    {
        @Override
        public void onInit( int status )
        {
            // Check for status might not be initialized due to errors
            // Configure language/speed
        }
    } );

它在其余时间确实有效,因为 mtts 是静态的。这意味着它是一个类变量,在创建服务的新实例时不会被销毁/初始化。在您第二次使用此服务时,此变量已在第一次服务执行中初始化。

于 2012-12-14T15:10:52.193 回答