所以我有点问题。我试图让我的应用程序根据它通过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);
}
}
}
答案 0 :(得分:0)
它首次不起作用,因为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是静态的。这意味着它是一个类变量,在创建服务的新实例时不会被销毁/初始化。第二次使用此服务时,此变量已在第一次服务执行中初始化。