Solution 1 :
The answer is: Yes that is correct. 😀
Problem :
Is it ok to initialize the android TextToSpeech object on the main thread? My understanding is that it should not be an issue creating the instance in onCreate()
since TextToSpeech.OnInitListener is an asynchronous callback and it will not slow down the UI. Is this assumption correct?
Comments
Comment posted by umer farooq
Yes i also think its correct.