当有电话打进我的电话时,是否有任何方法可以停止TTS?通过代码?
最佳答案
您可以从链接http://peacemoon.wordpress.com/2009/08/06/android-listening-to-incomingoutgoing-phone-calls/中看到来电通知
并如下停止TTS
public void onDestroy() {
// Don't forget to shutdown!
if (mTts != null) {
mTts.stop();
mTts.shutdown();
}
super.onDestroy();
}
mts
在哪里mTts = new TextToSpeech(this,
this // TextToSpeech.OnInitListener
);
我希望这会帮助你。