Android笔记之 TTS中文发音
使用手说TTS进行中文文本的朗读,包括中文简繁体、阿拉伯数字、英文字母及一些符号的混读。并且处理了中文的多音字和音调转换等问题。个人工作室所做的。因为他提供了比较详细的二次开发接口,所以我下面就是针对他做了一个中文TTS开发。实际测试,效果差钱人意吧,普通话真的不是很好。此外,只有最新版的才有连贯功能,以前的没有,纠结我半天。
第一步:安装手说TTS安装包
从官网 http://shoushuo.com/sstts.html 下载手说TTS安装包:ShoushuoTTS.apk 。
安装到真实手机或者手机模拟器中。
第二步:下载手说TTS客户类库包
下载手说TTS客户类库包:shoushuotts.jar 。
将该jar文件引入到你的应用中。
第三步,编写代码
import android.app.Activity; import android.content.ComponentName; import android.content.Context; import android.content.Intent; import android.content.ServiceConnection; import android.os.Bundle; import android.os.IBinder; import android.os.RemoteException; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.EditText; import com.shoushuo.android.tts.ITts; /** * @version 1.0 */ public class Speech extends Activity { private ITts ttsService; private boolean ttsBound; private ServiceConnection connection = new ServiceConnection() { @Override public void onServiceConnected(ComponentName className, IBinder iservice) { ttsService = ITts.Stub.asInterface(iservice); ttsBound = true; //在应用第一个使用TTS 的地方,调用下面的initialize方法,比如如果有 //两个Activity都使用手说TTS,则第二个Activity在此不需要再调用。 try { ttsService.initialize(); } catch (RemoteException e) { e.printStackTrace(); setTitle("出错啦"); } } @Override public void onServiceDisconnected(ComponentName arg0) { ttsService = null; ttsBound = false; } }; private EditText edt; private Button press; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); this.setContentView( R.layout.main ); this.press = ( Button ) findViewById( R.id.speech ); edt = (EditText)findViewById(R.id.txt); //给Button 添加事件监听器Button.OnClickListener() //处理事件 press.setOnClickListener(new OnClickListener() { @Override public void onClick( View source) { try { ttsService.speak("欢迎小朋友",0); } catch (RemoteException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } ); } @Override protected void onStart() { super.onStart(); if (!ttsBound ) { String actionName = "com.shoushuo.android.tts.intent.action.InvokeTts"; Intent intent = new Intent(actionName); this.bindService(intent, connection, Context.BIND_AUTO_CREATE); } } @Override protected void onDestroy () { if (ttsBound ) { ttsBound = false; this.unbindService(connection); } super. onDestroy (); } }
threadid=1: thread exiting with uncaught exception (group=0x4001d800)
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。