본문 바로가기

안드로이드

[Android/Kotlin] Google TTS 사용법

728x90

 

 

오늘은 Android 의 Text To Sound 사용하기입니다.

안드로이드 스튜디오에서는 구글에서 제공되어지는 TTS 서비스가 있기 때문에 구현이 아주 쉽습니다!

 

 

https://developer.android.com/reference/kotlin/android/speech/tts/TextToSpeech#isSpeaking() 

 

TextToSpeech  |  Android Developers

android.net.wifi.hotspot2.omadm

developer.android.com

 

자세한 메서드는 홈페이지에서 참조하여 더 사용하시길 바랍니다. 

class MainActivity : AppCompatActivity() {
    private var textToSpeech: TextToSpeech? = null

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
       
		 setAlarm()
         
         playAlarm("하이하이요~")
    }
    
     fun playAlarm(string: String) {
        textToSpeech?.speak(string, TextToSpeech.QUEUE_FLUSH, null, order.oid)
        textToSpeech?.playSilentUtterance(750,TextToSpeech.QUEUE_ADD,null) // deley시간 설정
    }

     fun setAlarm() {
        textToSpeech = TextToSpeech(appContext, TextToSpeech.OnInitListener {
            if (it == TextToSpeech.SUCCESS) {
                val result = textToSpeech!!.setLanguage(Locale.KOREAN)
                if (result == TextToSpeech.LANG_MISSING_DATA || result == TextToSpeech.LANG_NOT_SUPPORTED) {
                    Log.e("TTS","해당언어는 지원되지 않습니다.")
                    return@OnInitListener
                }
            }
        })
    }
}