Android 简明教程

Android - Text To Speech

Android 允许您将文本转换为语音。它不仅允许您这么做,还允许您用多种不同的语言朗读文本。

Android 提供 TextToSpeech 类用于此目的。为了使用这个类,您需要实例化这个类的对象,并指定 initListener 。其语法如下:

private EditText write;
ttobj=new TextToSpeech(getApplicationContext(), new TextToSpeech.OnInitListener() {
   @Override
   public void onInit(int status) {
   }
});

在此监听器中,您必须指定 TextToSpeech 对象的属性,例如其语言、音调等。可以通过调用 setLanguage() 方法来设置语言。其语法如下:

ttobj.setLanguage(Locale.UK);

setLanguage 方法将 Locale 对象作为参数。以下将列出可用的某些区域设置的列表:

Sr.No

Locale

1

US

2

CANADA_FRENCH

3

GERMANY

4

ITALY

5

JAPAN

6

CHINA

一旦设置了语言,您可以调用该类的 speak 方法来朗读文本。其语法如下:

ttobj.speak(toSpeak, TextToSpeech.QUEUE_FLUSH, null);

除了 speak 方法之外,TextToSpeech 类还提供一些其他方法。它们列在下面:

Sr.No

Method & description

1

addSpeech(String text, String filename) 此方法会添加一个文本字符串和一个声音文件之间的映射。

2

getLanguage() 此方法返回一个描述语言的 Locale 实例。

3

isSpeaking() 方法检查 TextToSpeech 引擎是否忙于说话。

4

setPitch(float pitch) 此方法为 TextToSpeech 引擎设置语音音高。

5

setSpeechRate(float speechRate) 此方法设置语音速率。

6

shutdown() 此方法释放 TextToSpeech 引擎使用的资源。

7

stop() 此方法停止说话。

Example

下面的示例演示了 TextToSpeech 类的使用方法。它创建一个基本的应用程序,允许您设置书写文本并朗读它。

要尝试此示例,您需要在实际设备上运行此示例。

Steps

Description

1

你将使用 Android Studio 在包 com.example.sairamkrishna.myapplication 下创建 Android 应用程序。

2

修改 src/MainActivity。java 文件添加 TextToSpeech 代码。

3

修改布局 XML 文件 res/layout/activity_main.xml,如有需要,则添加任何 GUI 组件。

4

运行该应用程序,选择一个正在运行的安卓设备,并在该设备上安装应用程序并验证结果。

以下为 src/MainActivity.java 的内容。

package com.example.sairamkrishna.myapplication;

import android.app.Activity;
import android.os.Bundle;
import android.speech.tts.TextToSpeech;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import java.util.Locale;
import android.widget.Toast;

public class MainActivity extends Activity {
   TextToSpeech t1;
   EditText ed1;
   Button b1;

   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      ed1=(EditText)findViewById(R.id.editText);
      b1=(Button)findViewById(R.id.button);

      t1=new TextToSpeech(getApplicationContext(), new TextToSpeech.OnInitListener() {
         @Override
         public void onInit(int status) {
            if(status != TextToSpeech.ERROR) {
               t1.setLanguage(Locale.UK);
            }
         }
      });

      b1.setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            String toSpeak = ed1.getText().toString();
            Toast.makeText(getApplicationContext(), toSpeak,Toast.LENGTH_SHORT).show();
            t1.speak(toSpeak, TextToSpeech.QUEUE_FLUSH, null);
         }
      });
   }

   public void onPause(){
      if(t1 !=null){
         t1.stop();
         t1.shutdown();
      }
      super.onPause();
   }
}

以下是 activity_main.xml 的内容。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
   android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
   android:paddingRight="@dimen/activity_horizontal_margin"
   android:paddingTop="@dimen/activity_vertical_margin"
   android:paddingBottom="@dimen/activity_vertical_margin"
   tools:context=".MainActivity"
   android:transitionGroup="true">

   <TextView android:text="Text to Speech" android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:id="@+id/textview"
      android:textSize="35dp"
      android:layout_alignParentTop="true"
      android:layout_centerHorizontal="true" />

   <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Tutorials point"
      android:id="@+id/textView"
      android:layout_below="@+id/textview"
      android:layout_centerHorizontal="true"
      android:textColor="#ff7aff24"
      android:textSize="35dp" />

   <ImageView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:id="@+id/imageView"
      android:src="@drawable/abc"
      android:layout_below="@+id/textView"
      android:layout_centerHorizontal="true"
      android:theme="@style/Base.TextAppearance.AppCompat" />

   <EditText
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:id="@+id/editText"
      android:layout_below="@+id/imageView"
      android:layout_marginTop="46dp"
      android:hint="Enter Text"
      android:layout_alignParentRight="true"
      android:layout_alignParentEnd="true"
      android:layout_alignParentLeft="true"
      android:layout_alignParentStart="true"
      android:textColor="#ff7aff10"
      android:textColorHint="#ffff23d1" />

   <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="Text to Speech"
      android:id="@+id/button"
      android:layout_below="@+id/editText"
      android:layout_centerHorizontal="true"
      android:layout_marginTop="46dp" />

</RelativeLayout>

以下是 Strings.xml 的内容。

<resources>
   <string name="app_name">My Application</string>
</resources>

以下是 AndroidManifest.xml 的内容

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
   package="com.example.sairamkrishna.myapplication" >
   <application
      android:allowBackup="true"
      android:icon="@mipmap/ic_launcher"
      android:label="@string/app_name"
      android:theme="@style/AppTheme" >

      <activity
         android:name=".MainActivity"
         android:label="@string/app_name" >

         <intent-filter>
            <action android:name="android.intent.action.MAIN" >
            <category android:name="android.intent.category.LAUNCHER" />
         </intent-filter>

      </activity>

   </application>
</manifest>

我们尝试运行您的应用程序。我假设您已将实际的安卓移动设备连接到您的电脑。要从 Android Studio 运行应用程序,请打开您项目的某个活动文件,然后从工具栏中点击运行图标。在启动您的应用程序之前,Android Studio 将显示以下窗口,供您选择运行安卓应用程序的位置。

choose device

选择您的移动设备作为选项,然后查看您的移动设备,它将显示以下屏幕。

texttospeech

现在,只需在字段输入一些文字,然后单击下面的语音合成按钮。将出现一条通知并且朗读出文字。它显示在下图中 −

texttospeech1

现在键入其他内容,并以不同的语言环境重复此步骤。您又会听到声音。如下所示 −

texttospeech2