Last active
August 22, 2019 23:48
-
-
Save Younes-Charfaoui/1847712ac25cadca09dde79a16010a25 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private fun saySomething(something: String, queueMode: Int = TextToSpeech.QUEUE_ADD) { | |
| val speechStatus = textToSpeech.speak(something, queueMode, null, "ID") | |
| if (speechStatus == TextToSpeech.ERROR) { | |
| Toast.makeText(this, "Cant use the Text to speech.", Toast.LENGTH_LONG).show() | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment