`
LoveZhou
  • 浏览: 272421 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Android(朗读文本) TextToSpeech的使用

阅读更多
使用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);
	    }
}
分享到:
评论

相关推荐

    Text To Speech的Android编程方法(实例源码下载)

    如果希望新文本追加到队列后面,可以使用`TextToSpeech.QUEUE_ADD`。 在应用不再需要TTS服务时,应释放资源,避免内存泄漏: ```java if (textToSpeech != null) { textToSpeech.stop(); textToSpeech.shutdown...

    TextToSpeech

    一旦TTS引擎准备就绪,我们就可以调用 `textToSpeech.speak()` 方法来朗读文本了。例如: ```java String text = "这是一段需要被朗读的文字"; textToSpeech.speak(text, TextToSpeech.QUEUE_FLUSH, null, null); `...

    Android TTs 文本转语音朗读源码

    在Android Studio环境下,开发者可以方便地利用Android自带的TextToSpeech类来实现这一功能。以下是对这个"Android TTs 文本转语音朗读源码"的详细解读。 1. **TextToSpeech类的引入** Android系统的TextToSpeech...

    android TextSpeech语音朗读

    TextToSpeech tts = new TextToSpeech(context, new TextToSpeech.OnInitListener() { @Override public void onInit(int status) { if (status == TextToSpeech.SUCCESS) { int result = tts.setLanguage...

    Android 调用安卓自带文本朗读-IT计算机-毕业设计.zip

    TextToSpeech textToSpeech = new TextToSpeech(this, new TextToSpeech.OnInitListener() { @Override public void onInit(int status) { if (status == TextToSpeech.SUCCESS) { // 初始化成功,可以开始使用...

    Android代码-调用安卓自带文本朗读.rar

    textToSpeech.speak("这是一段要朗读的文本", TextToSpeech.QUEUE_FLUSH, null, null); ``` `QUEUE_FLUSH`表示清空队列并立即朗读新的文本,`null`参数是用于设置额外的语境信息,通常可以省略。 除了基础的朗读,...

    TextToSpeech_20210423.rar

    3. **源码实现**:TextToSpeech的源码可能会使用编程语言如Java、Python或C++实现,并且可能依赖于特定的TTS引擎,如Android的TextToSpeech API、Apple的AVFoundation框架或者开源的eSpeak、Flite或MaryTTS等。...

    Android应用源码之调用安卓自带文本朗读.zip

    textToSpeech = new TextToSpeech(this, new TextToSpeech.OnInitListener() { @Override public void onInit(int status) { if (status == TextToSpeech.SUCCESS) { // TTS初始化成功,可以设置语言等参数 } ...

    Android高级应用源码-调用安卓自带文本朗读.zip

    要使用TTS,首先需要在应用中初始化`TextToSpeech`对象,并设置一个回调接口用于处理TTS事件。以下是一个简单的初始化示例: ```java TextToSpeech textToSpeech = new TextToSpeech(context, new TextToSpeech....

    安卓Android源码——调用安卓自带文本朗读.rar

    TextToSpeech tts = new TextToSpeech(this, new TextToSpeech.OnInitListener() { @Override public void onInit(int status) { if (status == TextToSpeech.SUCCESS) { int result = tts.setLanguage(Locale....

    详解Android SDK1.6中Text-To-Speech(TTS)语音朗读.doc

    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:用于将文本转换为语音的 Android 应用程序。 应用程序已使用 Android Studio IDE 构建

    《Android-TextToSpeech:构建将文本转换为语音的应用程序》 在当今信息化社会,文本转语音技术(Text-to-Speech,简称TTS)已经广泛应用于各种场景,如辅助视力障碍者阅读,或者在驾驶时提供导航信息。Android平台...

    安卓Android源码——调用安卓自带文本朗读.zip

    在`TextToSpeech`初始化成功后,我们可以使用`speak()`方法来朗读文本: ```java String text = "这是一段要朗读的文本"; textToSpeech.speak(text, TextToSpeech.QUEUE_FLUSH, null, null); ``` 除了基本的文本...

    安卓语音识别文本朗读相关-调用安卓自带文本朗读.rar

    - 使用完成后记得释放资源,如`speechRecognizer.destroy()`和`textToSpeech.shutdown()`。 在实际开发中,这些代码片段可能需要结合具体项目需求进行调整和优化,比如处理多种语言、添加错误处理、优化性能等。...

    安卓开发-调用安卓自带文本朗读.zip

    首先,我们需要了解Android系统中的TextToSpeech(TTS)服务。TextToSpeech是Android提供的一个API,它允许开发者将文本转换为合成语音。这个服务依赖于设备上安装的TTS引擎,如Google TTS或Samsung TTS。为了使用...

Global site tag (gtag.js) - Google Analytics