Android TextToSpeech教程
在Android中,你可以通过 TextToSpeech 类将文本转换为语音。完成转换后,你可以播放或创建声音文件。
TextToSpeech类的构造方法
- TextToSpeech(Context context, TextToSpeech.OnInitListener)
TextToSpeech类的方法
TextToSpeech类常用的方法如下:
方法 | 描述 |
---|---|
**int speak (String text, int queueMode, HashMap params) ** | 将文本转换为语音。队列模式可以是QUEUE_ADD或QUEUE_FLUSH。请求参数可以为空,也可以是KEY_PARAM_STREAM,KEY_PARAM_VALUME等。 |
int setSpeechRate(float speed) | 设置语音的速度。 |
int setPitch(float speed) | 设置语音的音调。 |
int setLanguage (Locale loc) | 设置语音的具体区域特定语言。 |
void shutdown() | 释放由TextToSpeech Engine设置的资源。 |
int stop() | 中断当前的语音输出(无论是播放还是保存到文件),并丢弃队列中的其他语音输出。 |
HTML格式的英文文本翻译成中文保留HTML格式不变输出
您需要实现TextToSpeech.OnInitListener接口,以执行TextToSpeech引擎上的事件处理。
TextToSpeech.OnInitListener接口的方法
此接口中只有一个方法。
方法 | 描述 |
---|---|
void onInit (int status) | 在TextToSpeech引擎初始化完成后调用。状态可以是SUCCESS或ERROR。 |
Android TextToSpeech 示例
让我们编写代码将文本转换为语音。
activity_main.xml
在布局中拖动一个文本视图,一个编辑框和一个按钮。现在activity_main.xml文件将会是这样的:
<RelativeLayout xmlns:androclass="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<EditText
android:id="@+id/editText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="77dp"
android:layout_marginTop="42dp"
android:ems="10" >
<requestFocus />
</EditText>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/editText1"
android:layout_below="@+id/editText1"
android:layout_marginLeft="59dp"
android:layout_marginTop="39dp"
android:text="Speak" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/editText1"
android:layout_alignBottom="@+id/editText1"
android:layout_alignParentLeft="true"
android:text="Enter Text:" />
</RelativeLayout>
Activity类
让我们来看看如何编写代码来朗读给定的文本。
package com.example.texttospeech;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import java.util.Locale;
import android.app.Activity;
import android.os.Bundle;
import android.speech.tts.TextToSpeech;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
public class MainActivity extends Activity implements
TextToSpeech.OnInitListener {
/** Called when the activity is first created. */
private TextToSpeech tts;
private Button buttonSpeak;
private EditText editText;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tts = new TextToSpeech(this, this);
buttonSpeak = (Button) findViewById(R.id.button1);
editText = (EditText) findViewById(R.id.editText1);
buttonSpeak.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
speakOut();
}
});
}
@Override
public void onDestroy() {
// Don't forget to shutdown tts!
if (tts != null) {
tts.stop();
tts.shutdown();
}
super.onDestroy();
}
@Override
public void onInit(int status) {
if (status == TextToSpeech.SUCCESS) {
int result = tts.setLanguage(Locale.US);
if (result == TextToSpeech.LANG_MISSING_DATA
|| result == TextToSpeech.LANG_NOT_SUPPORTED) {
Log.e("TTS", "This Language is not supported");
} else {
buttonSpeak.setEnabled(true);
speakOut();
}
} else {
Log.e("TTS", "Initilization Failed!");
}
}
private void speakOut() {
String text = editText.getText().toString();
tts.speak(text, TextToSpeech.QUEUE_FLUSH, null);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
}