简体   繁体   English

TextToSpeech-Android

[英]TextToSpeech - Android

I'm working on a simple game. 我正在开发一个简单的游戏。 The idea of the first round is that, there are 26 buttons (images) on the first activity - english alphabet and I want to make it pronounce on button click. 第一轮的想法是,第一次活动中有26个按钮(图像)-英文字母,我想在按钮单击时使其发音。 For example, when I press "a" button, it must say "a". 例如,当我按下“ a”按钮时,它必须说“ a”。 How can I get the ID of each button, then string of it and give it to speak() method as a parameter? 如何获取每个按钮的ID,然后获取它的字符串,并将其作为参数提供给talk()方法? THANKS IN ADVANCE ! 提前致谢 !

Code is here: 代码在这里:

import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.os.Vibrator;
import android.widget.Button;
import android.widget.TableLayout;
import android.widget.TableRow;

import java.util.Locale;
import java.util.Random;


import android.speech.tts.TextToSpeech;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;

public class FirstActivity extends Activity {

    /** Called when the activity is first created. */

    TextToSpeech ttx;
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.firstact);

        ttx = new TextToSpeech(
                FirstActivity.this, 
                new TextToSpeech.OnInitListener() {

            public void onInit(int status) {
                // TODO Auto-generated method stub
                if(status !=TextToSpeech.ERROR){
                    ttx.setLanguage(Locale.US);                 
                }

            }
        });


        TableLayout table = (TableLayout) findViewById(R.id.table);

        String alphabet = "abcdefghijqlmnopqrstuvwxyz";

        int pos = 0;
        for (int i = 0; i < 7; i++) {
            TableRow row = new TableRow(this);
            for (int j = 0; j < 4; j++) {
                if (pos == 26) {
                    break;
                }
                Button but = new Button(this);
                /*but.setOnClickListener(btnListener);*/
                but.setText(Character.toString(alphabet.charAt(pos++)));
                but.setHeight(80);
                but.setWidth(70);
                but.setBackgroundResource(R.drawable.burti);
                row.addView(but);
                but.setId(pos);

                 but.setOnClickListener((OnClickListener) this);


            table.addView(row);

        }}



    }
    @Override
    protected void onPause() {
        // TODO Auto-generated method stub
        if(ttx != null){
            ttx.stop();
            ttx.shutdown();     
        }
        super.onPause();
    }

    public void onClick(View arg0) {
        // TODO Auto-generated method stub


        String pressed = but.getText().toString(); //error here....
        ttx.speak(pressed, TextToSpeech.QUEUE_FLUSH, null);

    }

}

I made a working example: http://frank.anemaet.nl/android/TalkingButtons.zip Here is a snippet of the working code: 我做了一个工作示例: http : //frank.anemaet.nl/android/TalkingButtons.zip这是工作代码的片段:

for (int i = 0; i < alphabet.length(); i++)
    {
        TableRow row = new TableRow(this);
        Button but;
        but = new Button(this);
        but.setText(Character.toString(alphabet.charAt(i)));
        but.setHeight(button_width);
        but.setWidth(button_height);
        but.setId(i);

        but.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
              performClick(v);
            }
          });

        row.addView(but);
        table.addView(row);
    }

... ...

public void performClick(View arg0){

    Button tv = (Button)findViewById(arg0.getId());
    String pressed = tv.getText().toString(); 
    ttx.speak(pressed, TextToSpeech.QUEUE_FLUSH, null);

}

Your onInit() method has to do more, like handle when the user does not have the language data installed. 您的onInit()方法必须做更多的事情,例如在用户未安装语言数据时进行处理。 See this code for a helper class. 有关帮助程序类,请参见此代码

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM