I have an app that uses Text To Speech to say info that I get from the internet.. When that info is long, It takes a lot of time to start reading.. I tried on android 2.3.6 and android 5 loliipop, It worked on android 2.3.6 without taking so much time.. The problem happened on android 5..
Here is onInit method :
public void onInit(int status) {
if (status == TextToSpeech.SUCCESS) {
masterSpeech.setLanguage(Locale.CANADA);
masterSpeech.speak(info, TextToSpeech.QUEUE_ADD, null);
}
}
Any Idea? :D