博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
22、TTS技术
阅读量:6695 次
发布时间:2019-06-25

本文共 1934 字,大约阅读时间需要 6 分钟。

Android对TTS技术的支持

      Android 1.6开始支持TTS(Text To Speech)技术,通过该技术可以将文本转换成语音。

     TTS技术的核心是android.speech.tts.TextToSpeech类。要想使用TTS技术朗读文本,需要做两个工作:初始化TTS和指定要朗读的文本。在第1项工作中主要指定TTS朗读的文本的语言,第2项工作主要使用speak方法指定要朗读的文本。

在Android中使用TTS技术

TextToSpeech.OnInitListener.onInit用于初始化TTS

TextToSpeech.speak用于将文本转换为声音

Demo
 
1 import java.util.Locale; 2  3 import android.annotation.SuppressLint; 4 import android.app.Activity; 5 import android.os.Bundle; 6 import android.speech.tts.TextToSpeech; 7 import android.view.View; 8 import android.view.View.OnClickListener; 9 import android.widget.Button;10 import android.widget.TextView;11 import android.widget.Toast;12 13 @SuppressLint("NewApi")14 15 /**16  * 朗读文本17  * 18  * 安卓本身的库,只支持英文。除非从网上更新下载其他语言包。19  * @author dr20  */21 public class Main extends Activity implements TextToSpeech.OnInitListener,22         OnClickListener {23     private TextToSpeech tts;24     private TextView textView;25 26     @SuppressLint("NewApi")27     @Override28     public void onCreate(Bundle savedInstanceState) {29         super.onCreate(savedInstanceState);30         setContentView(R.layout.main);31          32         tts = new TextToSpeech(this, this);33 34         Button button = (Button) findViewById(R.id.button);35         textView = (TextView) findViewById(R.id.textview);36         button.setOnClickListener(this);37     }38 39     public void onClick(View view) {40         tts.speak(textView.getText().toString(), TextToSpeech.QUEUE_FLUSH, null);41     }42 43     @Override44     public void onInit(int status) {45         if (status == TextToSpeech.SUCCESS) {46             int result = tts.setLanguage(Locale.US);47             if (result == TextToSpeech.LANG_MISSING_DATA48                     || result == TextToSpeech.LANG_NOT_SUPPORTED) {49                 Toast.makeText(this, "Language is not available.",50                         Toast.LENGTH_LONG).show();51             }52         }53 54     }55 56 }

 

转载地址:http://rmpoo.baihongyu.com/

你可能感兴趣的文章
Cube Stacking
查看>>
WPF中DataGrid的ComboBox的简单绑定方式(绝对简单)
查看>>
UIViewContentMode各类型效果
查看>>
转:开启nginx的gzip压缩的相关参数设置
查看>>
转:网站架构-从无到有
查看>>
MUI的一些笔记
查看>>
Jenkins可持续集成Python自动化脚本
查看>>
Linux系统起源及主流发行版
查看>>
跨域问题、跨域cookie问题
查看>>
smarty获取php中的变量
查看>>
GIL 锁
查看>>
平衡二叉树
查看>>
linux中wget 、apt-get、yum rpm区别
查看>>
关于Hogan的学习笔记
查看>>
android 布局属性详解
查看>>
coredump功能介绍
查看>>
Linux内核学习第五周 系统调用
查看>>
第三天,小作业,表达式,while循环
查看>>
HTML5编写规范
查看>>
restful+springmvc+mybatis+ webservice 分布式架构
查看>>