Text to Speech でヒントを提供するために私を助けてくれる人はいますか?
私の目的は、どの単語がデバイスによって読み取られているかのヒントを提供することです。
テキスト読み上げ私のコードは以下の通りです:-
TextToSpeech tts = new TextToSpeech(this,this);
if (txtText.getText().toString().length() == 0)
tts.speak("You haven't typed text", TextToSpeech.QUEUE_FLUSH, null);
else
tts.speak(txtText.getText().toString(), TextToSpeech.QUEUE_FLUSH,null);
ありがとう。