While using Text-To-Speech , how can we know if text to speech is in progress or not ? Progress mean it is converting text to voice
Use this code to check if tts is in progress or not
if (!tts.isSpeaking()) {
///your code
}