본문 바로가기

코틀린

앱에서 TTS 설정창 띄우기 안드로이드 코틀린

728x90

intent = Intent()
intent.action = "com.android.settings.TTS_SETTINGS"
intent.flags = Intent.FLAG_ACTIVITY_NEW_TASK
this.startActivity(intent)

728x90