2

我有一个文字转语音应用程序,它运行良好。事情是我必须把它放在一个标签中,标签工作正常。但是当我将 tts 放在选项卡中时,它不再起作用了。我已经更改了类名、布局以查看和打包,当然除了变量之外,其他所有内容都不可更改。布局还行。不幸的是,我真的必须把它放在一个标签里。但最糟糕的是它没有显示任何错误。即使尝试捕捉也无法捕捉到任何东西。所以我认为这是一种逻辑错误,它吸收了我脑海中的所有逻辑。哈哈。我检查了调用此活动的主要活动,并显示它们是干净的。所以,这里是代码:

package leytocz.add.andriod;

import java.util.Locale;
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;
import android.widget.EditText;

public class nptab extends Activity implements TextToSpeech.OnInitListener{

    private TextToSpeech tts;
    private Button btnSpeak;
    private EditText txtText;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.nptab);
        tts=new TextToSpeech(this,this);
        btnSpeak=(Button) findViewById(R.id.btnSpeak);
        txtText=(EditText) findViewById(R.id.txtText);

        btnSpeak.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View arg0) {
                speakOut();
            }
        });
    }
@Override
public void onInit(int status) {
    if (status==TextToSpeech.SUCCESS) {
        int result=tts.setLanguage(Locale.US);
        if (result==TextToSpeech.LANG_MISSING_DATA
                || result==TextToSpeech.LANG_NOT_SUPPORTED) {
            Log.e("TTS","This Language is not supported");
        } else {
            btnSpeak.setEnabled(true);
            speakOut();
        }
    } else {
        Log.e("TTS", "Initialization Failed!");
    }
}
private void speakOut() {
    String text=txtText.getText().toString();
    tts.speak(text,TextToSpeech.QUEUE_FLUSH, null);
}
}
4

2 回答 2

2

正确的。

static TextToSpeech mTTS;

创建():

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

活动结果:

    if (requestCode == MY_DATA_CHECK_CODE && !mTTSInitialized) 
    {
        if (resultCode == TextToSpeech.Engine.CHECK_VOICE_DATA_PASS) 
        {
            // success, create the TTS instance
            mTTS = new TextToSpeech(this, (OnInitListener) this);
            if (mTTS!=null)
                mTTSInitialized = true;
        } 
        else 
        {
            // missing data, install it
            Intent installIntent = new Intent();
            installIntent.setAction(
                TextToSpeech.Engine.ACTION_INSTALL_TTS_DATA);
            startActivity(installIntent);
        }
    }

吸气剂:

public static TextToSpeech getmTTS() {
    return mTTS;
}

所有这些都放置在 TabHost 本身中。

于 2012-08-08T09:36:38.843 回答
0

不需要在您的活动中编写这么多代码,只需单独编写这一行,我也遇到了这个问题,最后我得到了这个解决方案。

换这个

tts=new TextToSpeech(this,this); --this is your code

你这样变

tts=new TextToSpeech(getParent(),this);

它对我来说非常有用

于 2014-03-10T13:38:47.323 回答