Convert Toast message to text

后端 未结 2 589
野趣味
野趣味 2021-01-22 07:59

How can I convert this TOAST message to voice in Android?

Example

Toast.makeText(MainActivity.this, \"I am enter code here\" +positive[+         


        
2条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-22 08:26

    TextView wordView = (TextView)view; String wordChosen = (String) wordView.getText(); Toast.makeText(MainActivity.this, "I am " + positive[+position] + " always", Toast.LENGTH_SHORT).show(); //tts.speak("I am" + blank +position+" always", TextToSpeech.QUEUE_FLUSH, null); tts.speak("You chose, you are "+wordChosen+" today and always", TextToSpeech.QUEUE_FLUSH, null); 
    

提交回复
热议问题