所以我有点问题。我试图让我的应用程序根据它通过 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);
}
}
}