借助“手说”免费应用软件,实现中文朗读(Android TTS实践)

目前android是支持英文朗读的,但不支持中文朗读,这意味着如果想在自己的应用中实现中文朗读的话,那必须依靠第三方软件(针对菜鸟而言,大神自己都可以开发中文朗读)。

笔者借助“手说”软件,开发了一个小demo,可以朗读用户输入的中英文文本。中文朗读可以读出英文字母,但不能读成单词,而英文朗读则只能读出英文文本。

以下是android工程的说明:

先看个效果图:


界面非常简单.

新建Android工程后,只需要三步:

1.在libs文件夹中添加手说TTS提供的jar包,这个可以从http://shoushuo.com/index.html上找到并下载。

2.修改xml文件,也就是实现效果图的界面,这个非常简单,代码如下:



    
    

    
3.自然是修改java主程序了,代码如下:

import java.util.Locale;
import com.shoushuo.android.tts.ITts;
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.speech.tts.TextToSpeech;
import android.view.View;
import android.widget.TextView;
import android.widget.Toast;
import android.speech.tts.TextToSpeech.OnInitListener;

public class MainActivity extends Activity implements OnInitListener {
	private TextView inputWordsTextView;
	private TextToSpeech ttsInEnglish;// English语音播报控件

	// 中文朗读,手说,移植代码块开始
	private ITts ttsInChinese; // 中文语音播报控件
	private boolean ttsBound;

	/**
	 * tts服务连接.
	 */
	private final ServiceConnection ttsConnection = new ServiceConnection() {
		@Override
		public void onServiceDisconnected(ComponentName arg0) {
			ttsInChinese = null;
			ttsBound = false;
		}

		@Override
		public void onServiceConnected(ComponentName name, IBinder service) {
			ttsInChinese = ITts.Stub.asInterface(service);
			ttsBound = true;
			try {
				// tts服务初始化
				ttsInChinese.initialize();
			} catch (RemoteException e) {
			}
		}
	};

	// 移植代码块结束

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		inputWordsTextView = (TextView) findViewById(R.id.inputwords);
		ttsInEnglish = new TextToSpeech(this, this);// English语音播报

	}

	// 移植代码块开始
	@Override
	protected void onDestroy() {
		if (ttsBound) {
			ttsBound = false;
			// 撤销tts服务
			this.unbindService(ttsConnection);
		}
		super.onDestroy();
	}

	@Override
	protected void onStart() {
		super.onStart();
		if (!ttsBound) {
			String actionName = "com.shoushuo.android.tts.intent.action.InvokeTts";
			Intent intent = new Intent(actionName);
			// 绑定tts服务
			this.bindService(intent, ttsConnection, Context.BIND_AUTO_CREATE);
		}
	}

	// 移植代码块完

	// 点击"中文"按钮
	public void chinese(View view) {
		readInChinese(inputWordsTextView.getText().toString());
	}

	public void readInChinese(String readText) {
		 try {
			ttsInChinese.speak(readText, TextToSpeech.QUEUE_FLUSH);
		} catch (RemoteException e) {
			e.printStackTrace();
		}
	}

	// 点击"English"按钮
	public void english(View view) {
		readInEnglish(inputWordsTextView.getText().toString());
	}

	public void readInEnglish(String readText) {
		ttsInEnglish.speak(readText, TextToSpeech.QUEUE_FLUSH, null);
	}

	@Override
	public void onInit(int status) {
		if (status == TextToSpeech.SUCCESS) {
			int result = ttsInEnglish.setLanguage(Locale.US);
			if (result == TextToSpeech.LANG_MISSING_DATA
					|| result == TextToSpeech.LANG_NOT_SUPPORTED) {
				Toast.makeText(this, "Language is not available",
						Toast.LENGTH_LONG).show();
			}
		}
	}

	// 点击"清空"按钮
	public void empty(View view) {
		inputWordsTextView.setText("");
	}

}

最后说明一下,这个小应用必须具备的一个条件就是要同时安装“手说”应用,各大安卓应用市场都可以找到,否则点击“中文”的时候应用会因找不到“手说”而退出。另外,详细的开发也可以参考http://shoushuo.com/sstts.html。

以上内容仅供学习交流,请勿将“手说”应用于商业用途。



你可能感兴趣的:(技术学习)