欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Android中使用TextToSpeech的方法

程序员文章站 2022-03-06 23:48:16
前言在一年前,和朋友一起码了一个英语app,仿照某app实现了单词的功能,最开始就是借助的texttospeech,后面感觉声音不够好听,于是使用了第三方app初稿如图:实现1.初始化语音。这是一个异...

前言

在一年前,和朋友一起码了一个英语app,仿照某app实现了单词的功能,最开始就是借助的texttospeech,后面感觉声音不够好听,于是使用了第三方

app初稿如图:

Android中使用TextToSpeech的方法

实现

1.初始化语音。这是一个异步操作。初始化完成后调用oninitlistener(第二个参数)。

texttospeech mtts = new texttospeech(this, this);

2.实现texttospeech.oninitlistener

注意:语言可能不可用。

// 实现texttospeech.oninitlistener.
     public void oninit(int status) {
         if (status == texttospeech.success) {
             //设置首选语言为中文,注意,语言可能是不可用的,结果将指示此
             int result = mtts.setlanguage(locale.china);
             if (result == texttospeech.lang_missing_data ||
                 result == texttospeech.lang_not_supported) {
                 //语言数据丢失或不支持该语言。
                 log.e(tag, "语言数据丢失或不支持该语言");
             } else {
                 //检查文档中其他可能的结果代码。
                 // 例如,语言可能对区域设置可用,但对指定的国家和变体不可用
                 // tts引擎已成功初始化。
                 // 允许用户按下按钮让应用程序再次发言。
                 magainbutton.setenabled(true);
             }
         } else {
             // 初始化失败
             log.e(tag, "初始化失败");
         }
     }

3.写一个朗读方法,在需要的时候触发(如:点击事件)

texttospeech的speak方法有两个重载。

执行朗读的方法

speak(charsequence text,int queuemode,bundle params,string utteranceid);

第二个参数queuemode用于指定发音队列模式,两种模式选择。
(1)texttospeech.queue_flush:该模式下在有新任务时候会清除当前语音任务,执行新的语音任务
(2)texttospeech.queue_add:该模式下会把新的语音任务放到语音任务之后,等前面的语音任务执行完了才会执行新的语音任务。

将朗读的的声音记录成音频文件

synthesizetofile(charsequence text,bundle params,file file,string utteranceid);
 private void sayhello() {
         string hello ="hellow";
         //texttospeech的speak方法有两个重载。
         // 执行朗读的方法
         //speak(charsequence text,int queuemode,bundle params,string utteranceid);
         // 将朗读的的声音记录成音频文件
         //synthesizetofile(charsequence text,bundle params,file file,string utteranceid);
         //第二个参数queuemode用于指定发音队列模式,两种模式选择
         //(1)texttospeech.queue_flush:该模式下在有新任务时候会清除当前语音任务,执行新的语音任务
         //(2)texttospeech.queue_add:该模式下会把新的语音任务放到语音任务之后,
         //等前面的语音任务执行完了才会执行新的语音任务

         mtts.speak(hello,
             texttospeech.queue_flush,
             null);
     }

4.记得利用activity的生命周期中将其关闭

@override
     public void ondestroy() {
         // 生命周期中结束
         if (mtts != null) {
             mtts.stop();
             mtts.shutdown();
         }

         super.ondestroy();
     }

源码

speechactivity.java

public class speechactivity extends activity implements texttospeech.oninitlistener {

     private static final string tag = "speechdemo";

     private texttospeech mtts;
     private button mbutton;

     @override
     public void oncreate(bundle savedinstancestate) {
         super.oncreate(savedinstancestate);
         setcontentview(r.layout.text_to_speech);

         //初始化语音。这是一个异步操作。初始化完成后调用oninitlistener(第二个参数)。
         mtts = new texttospeech(this, this);

         mbutton = (button) findviewbyid(r.id.again_button);
        //触发
         mbutton.setonclicklistener(new view.onclicklistener() {
             public void onclick(view v) {
                 sayhello();
             }
         });
     }

     @override
     public void ondestroy() {
         // 生命周期中结束
         if (mtts != null) {
             mtts.stop();
             mtts.shutdown();
         }

         super.ondestroy();
     }

     // 实现texttospeech.oninitlistener.
     public void oninit(int status) {
         if (status == texttospeech.success) {
             //设置首选语言为中文,注意,语言可能是不可用的,结果将指示此
             int result = mtts.setlanguage(locale.china);
             if (result == texttospeech.lang_missing_data ||
                 result == texttospeech.lang_not_supported) {
                 //语言数据丢失或不支持该语言。
                 log.e(tag, "语言数据丢失或不支持该语言");
             } else {
                 //检查文档中其他可能的结果代码。
                 // 例如,语言可能对区域设置可用,但对指定的国家和变体不可用
                 // tts引擎已成功初始化。
                 // 允许用户按下按钮让应用程序再次发言。
                 magainbutton.setenabled(true);
             }
         } else {
             // 初始化失败
             log.e(tag, "初始化失败");
         }
     }

     private void sayhello() {
         string hello ="计蒙不吃鱼";
         //texttospeech的speak方法有两个重载。
         // 执行朗读的方法
         //speak(charsequence text,int queuemode,bundle params,string utteranceid);
         // 将朗读的的声音记录成音频文件
         //synthesizetofile(charsequence text,bundle params,file file,string utteranceid);
         //第二个参数queuemode用于指定发音队列模式,两种模式选择
         //(1)texttospeech.queue_flush:该模式下在有新任务时候会清除当前语音任务,执行新的语音任务
         //(2)texttospeech.queue_add:该模式下会把新的语音任务放到语音任务之后,
         //等前面的语音任务执行完了才会执行新的语音任务

         mtts.speak(hello,
             texttospeech.queue_flush,
             null);
     }

 }

text_to_speech.xml

<linearlayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >
    <button android:id="@+id/again_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:enabled="false" />
</linearlayout>

到此这篇关于android中texttospeech的使用的文章就介绍到这了,更多相关adroid texttospeech使用内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

相关标签: adroid TextToSpeech