diff options
Diffstat (limited to 'core/java')
-rwxr-xr-x | core/java/android/speech/tts/TextToSpeech.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/speech/tts/TextToSpeech.java b/core/java/android/speech/tts/TextToSpeech.java index f714dd9..61e182a 100755 --- a/core/java/android/speech/tts/TextToSpeech.java +++ b/core/java/android/speech/tts/TextToSpeech.java @@ -207,7 +207,7 @@ public class TextToSpeech { } }; - Intent intent = new Intent("android.intent.action.USE_TTS"); + Intent intent = new Intent("android.intent.action.START_TTS_SERVICE"); intent.addCategory("android.intent.category.TTS"); mContext.bindService(intent, mServiceConnection, Context.BIND_AUTO_CREATE); |