请参阅内部方法内的TTS对象

时间:2011-10-30 18:04:22

标签: android text-to-speech

嗯......我正在尝试使用TTS引擎创建应用程序。

我已经可以做到,工作,没问题。但是我需要我的按钮是dinamic,它们来自数据库。

到目前为止,你们帮助了我很多,因为现在我可以通过我们从你们那里获得的技巧来做到这一点。

嗯..现在我又被困了。

我创建的每个新按钮都附加一个OnClickListener,因此它可以启动TTS并说些什么。

然而,这是一个内部方法,因此,当我尝试运行下面的代码时,它在尝试使用TTS“说话”时给我一个NullPointerException。我知道TTS对象不在上下文中,所以,我该如何解决这个问题?

代码下方。这有点大,因为我想要包括所有内容:

请注意“这是我的问题!”评论,所以你们可以看到我的问题到底在哪里。我知道它在哪里,但我不知道如何解决它=(

任何帮助都很有意义! =)

public class LivoxTesteActivity extends Activity implements OnInitListener{
    /** Called when the activity is first created. */
    private int MY_DATA_CHECK_CODE = 0;
    public TextToSpeech tts;


    @Override
    public void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_NO_TITLE); 
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, 
            WindowManager.LayoutParams.FLAG_FULLSCREEN);  
    setContentView(R.layout.main);


    LinearLayout lgeral = new LinearLayout (this);
    lgeral.setOrientation(LinearLayout.VERTICAL);
    lgeral.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT, 1f));

    String array[][] = {{"Comer","eat", "Eu quero comer", "1"},
            {"Abraço","hug", "Eu quero um abraço", "2"},
            {"Assustado","afraid", "Eu estou com medo", "3"},
            {"Beber","drink", "Eu quero beber", "4"}};
    int x = array.length;

    int qtdeLinhas = 2;
    for (int j = 0; j < qtdeLinhas; j++) {        

        LinearLayout l1 = new LinearLayout (this);
        l1.setOrientation(LinearLayout.HORIZONTAL);
        l1.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT, 1f));

        FrameLayout fl;
        for (int i = 0; i < array.length; i++) {

            fl = (FrameLayout)LayoutInflater.from(getBaseContext()).inflate(R.layout.framelayoutstyle, l1, false);

            TextView textoEscrito;
            textoEscrito = (TextView)LayoutInflater.from(getBaseContext()).inflate(R.layout.textviewstyle, fl, false);

            textoEscrito.setText(array[i][0]);

            final String texto = textoEscrito.getText().toString();        
            final String textoFalar = array[i][2];

            ImageButton btn;
            btn = (ImageButton)LayoutInflater.from(getBaseContext()).inflate(R.layout.imagebuttonstyle, fl, false);

            btn.setImageResource(this.getResources().getIdentifier("drawable/" + array[i][1], null, this.getPackageName()));


            btn.setOnClickListener(new Button.OnClickListener(){
                public void onClick (View v){


                    Toast.makeText(getBaseContext(), texto, Toast.LENGTH_SHORT).show();
                    //*******************************
                    //HERE IS MY PROBLEM!!!
                    //*******************************
                    tts.speak(txtFl, TextToSpeech.QUEUE_ADD, null);
                    //*******************************
                    //WHEN I TRY TO RUN THE ABOVE IT GIVES A NULLPOINTEREXCEPTION!!!
                    //*******************************



                }

            });


            fl.addView(btn);
            fl.addView(textoEscrito);

            l1.addView(fl);
        }

        lgeral.addView(l1);
    }

    setContentView(lgeral);        

}


protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (requestCode == MY_DATA_CHECK_CODE) {
        if (resultCode == TextToSpeech.Engine.CHECK_VOICE_DATA_PASS) {
            // success, create the TTS instance
            tts = new TextToSpeech(this, this);
        }
        else {
            // missing data, install it
            Intent installIntent = new Intent();
            installIntent.setAction(TextToSpeech.Engine.ACTION_INSTALL_TTS_DATA);
            startActivity(installIntent);
        }
    }

}
@Override
public void onInit(int status) {       
    if (status == TextToSpeech.SUCCESS) {
    }
    else if (status == TextToSpeech.ERROR) {
    }
}


@Override
public void onDestroy() {
if (tts != null) {
tts.stop();
tts.shutdown();
}
super.onDestroy();
} 

}

顺便说一下...方法Toast.makeText(getBaseContext(),texto,Toast.LENGTH_SHORT).show();工作良好。我相信那是因为Toast是一个静态类。

那么,也许解决方案是用方法来创建一个静态类?想法?我该怎么办?

2 个答案:

答案 0 :(得分:0)

将tts声明为final,它将变为可访问。或者,您可以将其设为类的实例变量。你使用它的方式,后者可能是正确的答案。

答案 1 :(得分:0)

确保在合成语音之前调用onActivityResultonInit。如果你正在获得NullPointerException,最可能的原因是,当单击按钮时,tts对象尚未构建。

正确的方法是设置要发言的短语队列(例如,ArrayList<String>),并且一旦初始化TTS(即在onInit的SUCCESS分支中),就开始说话。

编辑:现在我查看你的代码了...你在哪里调用任何会导致onActivityResult调用的活动?开发指南建议将以下内容作为init过程的一部分:

Intent checkIntent = new Intent();
checkIntent.setAction(TextToSpeech.Engine.ACTION_CHECK_TTS_DATA);
startActivityForResult(checkIntent, MY_DATA_CHECK_CODE);

粘贴的片段中没有任何内容可以解决这个问题。