public void setTTSRead() { myTTS = new TextToSpeech(getApplicationContext(), new TextToSpeech.OnInitListener() { @Override public void onInit(int status) { // check for successful instantiation if (status == TextToSpeech.SUCCESS) { MyLogger.LogE("SUCCESS TTS"); if (myTTS.isLanguageAvailable(Locale.KOREAN) == TextToSpeech.LANG_AVAILABLE) { myTTS.setLanguage(Locale.KOREAN); } if (Build.VERSION.SDK..