编写使用Android 系统自带的文字转语音代码

回眸只為那壹抹淺笑 提交于 2020-08-18 12:19:32

调用Android系统语音TextToSpeech实例对象

具体代码写法如下:

TextToSpeech mTextToSpeech = new TextToSpeech(this, new TextToSpeech.OnInitListener() {

    @Override

 public void onInit(int status) {

if (status==TextToSpeech.SUCCESS) {

   //设置语言朗读

  int supported= mTextToSpeech.setLanguage(Locale.US);

 if ((supported!=TextToSpeech.LANG_AVAILABLE)&& (supported!=TextToSpeech.LANG_COUNTRY_AVAILABLE)) {

            Toast.makeText(this, "不支持当前语言!", Toast.LENGTH_SHORT).show();

                             }

                         }

                   }

          });

mTextToSpeech.speak("这里填入想要转成语音的文字", TextToSpeech.QUEUE_FLUSH, null);

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!