I\'m developing an app which would read out the text in the document and I want to add a pause and resume functionality but I can\'t find any pause() method in TTS. Is there
the TextToSpeech class has the ability to add a setOnUtteranceCompletedListener (or for api level 15+ setOnUtteranceProgressListener) which will let you attach a listener for when the TTS utterence is completed and then you can start your second utterence, or your pause, or whatever you need..