Android中的TextToSpeech 将文本转换成语音的简单使用。

来源:互联网 发布:淘宝做代购被违规处罚 编辑:程序博客网 时间:2024/04/29 04:31

转发地址:http://flycatdeng.iteye.com/blog/1827245

今天拿到一个数据库文件,里面有很多英语单词的音标,看到别人的软件既可以显示音标又可以朗读单词就以为是有什么插件能根据音标发音,后来问了很多群,结果没人回答,查了很多资料之后才知道有这么一个TTS,就是将文本转为语音。刚好安卓帮助文档里面又看到有TextToSpeech,就跟着别人的以及帮助文档摸索的测试了一下,果不其然,真的能读。部分代码及注释:

main.xml

Xml代码  收藏代码
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:orientation="vertical" >  
  6.   
  7.     <TextView  
  8.         android:id="@+id/speechTxt"  
  9.         android:layout_width="fill_parent"  
  10.         android:layout_height="fill_parent"  
  11.         android:text="you are very good !" />  
  12.   
  13.     <Button  
  14.         android:id="@+id/speechBtn"  
  15.         android:layout_width="wrap_content"  
  16.         android:layout_height="wrap_content"  
  17.         android:layout_alignParentLeft="true"  
  18.         android:layout_alignParentTop="true"  
  19.         android:layout_marginTop="22dp"  
  20.         android:text="text to speech" />  
  21.   
  22. </RelativeLayout>  

 MainAty.java

Java代码  收藏代码
  1. package fly.aty;  
  2.   
  3. import java.util.Locale;  
  4.   
  5. import android.app.Activity;  
  6. import android.os.Bundle;  
  7. import android.speech.tts.TextToSpeech;  
  8. import android.speech.tts.TextToSpeech.OnInitListener;  
  9. import android.view.View;  
  10. import android.view.View.OnClickListener;  
  11. import android.widget.Button;  
  12. import android.widget.TextView;  
  13. import android.widget.Toast;  
  14.   
  15. public class MainAty extends Activity implements OnClickListener, OnInitListener{  
  16.   
  17.     private Button speechBtn; // 按钮控制开始朗读  
  18.     private TextView speechTxt; // 需要朗读的内容  
  19.     private TextToSpeech textToSpeech; // TTS对象  
  20.   
  21.     @Override  
  22.     public void onCreate(Bundle savedInstanceState) {  
  23.         super.onCreate(savedInstanceState);  
  24.         setContentView(R.layout.main);  
  25.   
  26.         speechBtn = (Button) findViewById(R.id.speechBtn);  
  27.         speechBtn.setOnClickListener(this);  
  28.   
  29.         speechTxt = (TextView) findViewById(R.id.speechTxt);  
  30.         textToSpeech = new TextToSpeech(thisthis); // 参数Context,TextToSpeech.OnInitListener  
  31.     }  
  32.       
  33.     /** 
  34.      * 用来初始化TextToSpeech引擎 
  35.      * status:SUCCESS或ERROR这2个值 
  36.      * setLanguage设置语言,帮助文档里面写了有22种 
  37.      * TextToSpeech.LANG_MISSING_DATA:表示语言的数据丢失。 
  38.      * TextToSpeech.LANG_NOT_SUPPORTED:不支持 
  39.      */  
  40.     @Override  
  41.     public void onInit(int status) {  
  42.         if (status == TextToSpeech.SUCCESS) {  
  43.             int result = textToSpeech.setLanguage(Locale.US);  
  44.             if (result == TextToSpeech.LANG_MISSING_DATA  
  45.                     || result == TextToSpeech.LANG_NOT_SUPPORTED) {  
  46.                 Toast.makeText(this"数据丢失或不支持", Toast.LENGTH_SHORT).show();  
  47.             }  
  48.         }  
  49.     }  
  50.   
  51.     @Override  
  52.     public void onClick(View v) {  
  53.         if (textToSpeech != null && !textToSpeech.isSpeaking()) {  
  54.             textToSpeech.setPitch(0.5f);// 设置音调,值越大声音越尖(女生),值越小则变成男声,1.0是常规  
  55.             textToSpeech.speak(speechTxt.getText().toString(),  
  56.                     TextToSpeech.QUEUE_FLUSH, null);  
  57.         }  
  58.     }  
  59.   
  60.     @Override  
  61.     protected void onStop() {  
  62.         super.onStop();  
  63.         textToSpeech.stop(); // 不管是否正在朗读TTS都被打断  
  64.         textToSpeech.shutdown(); // 关闭,释放资源  
  65.     }  
  66. }  

 


0 0
原创粉丝点击