使用TextToSpeech 可以朗读文本,要先初始化TextToSpeech 对象,通过实现TextToSpeech.OnInitListener接口来检测初始化状态成功与否(设置语言等动作是否成功),初始化成功后,才可以使用,用完该对象后,要调用shutdown方法,释放TextToSpeech (TTS)引擎占用的资源
package com.zhou.activity;
import java.util.Locale;
import java.util.Random;
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;
public class TextToSpeechActivity extends Activity implements TextToSpeech.OnInitListener{
private static final String TAG = "TextToSpeechDemo";
private TextToSpeech mTts;
private Button mAgainButton;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.text_to_speech);
// 初始化TextToSpeech对象. 是一个异步操作.
// 初始化监听对象,在完成初始化时调用
mTts = new TextToSpeech(this,this);
//取得按钮
mAgainButton = (Button) findViewById(R.id.again_button);
//为按钮设置单击事件
mAgainButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
sayHello();
}
});
}
@Override
public void onDestroy() {
if (mTts != null) {
//停止TextToSpeech
mTts.stop();
//释放TextToSpeech占用的资源
mTts.shutdown();
}
super.onDestroy();
}
//实现TextToSpeech.OnInitListener接口.
public void onInit(int status) {
//状态成功
if (status == TextToSpeech.SUCCESS) {
//设置语言
int result = mTts.setLanguage(Locale.US);
//(我试了中文,不好使????)
// int result = mTts.setLanguage(Locale.CHINA);
if (result == TextToSpeech.LANG_MISSING_DATA ||
result == TextToSpeech.LANG_NOT_SUPPORTED) {
// 如果不支持该语言
Log.e(TAG, "Language is not available.");
} else {
// TTS 引擎已经成功初始化
//按钮设置为可点击
mAgainButton.setEnabled(true);
//发音朗读
sayHello();
}
} else {
// 初始化失败
Log.e(TAG, "Could not initialize TextToSpeech.");
}
}
private static final Random RANDOM = new Random();
private static final String[] HELLOS = {
"Hello",
"Salutations",
"Greetings",
"Howdy",
"What's crack-a-lackin?",
"That explains the stench!"
};
//尝试朗读中文,失败了,语言设置为中国的也不行
// private static final String[] HELLOS = {
// "中国",
// "北京",
// "上海",
// "吉林",
// "辽宁",
// "北京欢迎你"
// };
private void sayHello() {
// Select a random hello.
int helloLength = HELLOS.length;
String hello = HELLOS[RANDOM.nextInt(helloLength)];
//朗读
mTts.speak(hello,TextToSpeech.QUEUE_FLUSH, null);
}
}
分享到:
相关推荐
如果希望新文本追加到队列后面,可以使用`TextToSpeech.QUEUE_ADD`。 在应用不再需要TTS服务时,应释放资源,避免内存泄漏: ```java if (textToSpeech != null) { textToSpeech.stop(); textToSpeech.shutdown...
一旦TTS引擎准备就绪,我们就可以调用 `textToSpeech.speak()` 方法来朗读文本了。例如: ```java String text = "这是一段需要被朗读的文字"; textToSpeech.speak(text, TextToSpeech.QUEUE_FLUSH, null, null); `...
在Android Studio环境下,开发者可以方便地利用Android自带的TextToSpeech类来实现这一功能。以下是对这个"Android TTs 文本转语音朗读源码"的详细解读。 1. **TextToSpeech类的引入** Android系统的TextToSpeech...
TextToSpeech tts = new TextToSpeech(context, new TextToSpeech.OnInitListener() { @Override public void onInit(int status) { if (status == TextToSpeech.SUCCESS) { int result = tts.setLanguage...
TextToSpeech textToSpeech = new TextToSpeech(this, new TextToSpeech.OnInitListener() { @Override public void onInit(int status) { if (status == TextToSpeech.SUCCESS) { // 初始化成功,可以开始使用...
textToSpeech.speak("这是一段要朗读的文本", TextToSpeech.QUEUE_FLUSH, null, null); ``` `QUEUE_FLUSH`表示清空队列并立即朗读新的文本,`null`参数是用于设置额外的语境信息,通常可以省略。 除了基础的朗读,...
3. **源码实现**:TextToSpeech的源码可能会使用编程语言如Java、Python或C++实现,并且可能依赖于特定的TTS引擎,如Android的TextToSpeech API、Apple的AVFoundation框架或者开源的eSpeak、Flite或MaryTTS等。...
textToSpeech = new TextToSpeech(this, new TextToSpeech.OnInitListener() { @Override public void onInit(int status) { if (status == TextToSpeech.SUCCESS) { // TTS初始化成功,可以设置语言等参数 } ...
要使用TTS,首先需要在应用中初始化`TextToSpeech`对象,并设置一个回调接口用于处理TTS事件。以下是一个简单的初始化示例: ```java TextToSpeech textToSpeech = new TextToSpeech(context, new TextToSpeech....
TextToSpeech tts = new TextToSpeech(this, new TextToSpeech.OnInitListener() { @Override public void onInit(int status) { if (status == TextToSpeech.SUCCESS) { int result = tts.setLanguage(Locale....
if (resultCode == TextToSpeech.Engine.CHECK_VOICE_DATA_PASS) { // success, create the TTS instance mTts = new TextToSpeech(this, this); } else { // missing data, install it Intent installIntent ...
《Android-TextToSpeech:构建将文本转换为语音的应用程序》 在当今信息化社会,文本转语音技术(Text-to-Speech,简称TTS)已经广泛应用于各种场景,如辅助视力障碍者阅读,或者在驾驶时提供导航信息。Android平台...
在`TextToSpeech`初始化成功后,我们可以使用`speak()`方法来朗读文本: ```java String text = "这是一段要朗读的文本"; textToSpeech.speak(text, TextToSpeech.QUEUE_FLUSH, null, null); ``` 除了基本的文本...
- 使用完成后记得释放资源,如`speechRecognizer.destroy()`和`textToSpeech.shutdown()`。 在实际开发中,这些代码片段可能需要结合具体项目需求进行调整和优化,比如处理多种语言、添加错误处理、优化性能等。...
首先,我们需要了解Android系统中的TextToSpeech(TTS)服务。TextToSpeech是Android提供的一个API,它允许开发者将文本转换为合成语音。这个服务依赖于设备上安装的TTS引擎,如Google TTS或Samsung TTS。为了使用...