码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2020-08-20 18:10:31      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:stat   lang   available   lan   roi   oid   语音   count   this   

调用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);

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

标签:stat   lang   available   lan   roi   oid   语音   count   this   

原文地址:https://blog.51cto.com/1206995290qq/2521094

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!