ak1394 / react-native-tts

React Native Text-To-Speech library for Android and iOS
618 stars 156 forks source link

pause on Android #150

Open johnbowdenatfacet opened 3 years ago

johnbowdenatfacet commented 3 years ago

Hi,

Just wondering if pause/resume will be enabled on Android at all?

Thanks

liviu-padurariu commented 3 years ago

Hi @johnbowdenatfacet, now you can subscribe to the 'tts-progress' event for android. This will give you the information about the currentWord in your text.

You can call Tts.stop() to "pause" and save the current progress.

Then when you want to resume you can call Tts.speak("with the remaining text.").

Hope this makes sense.