停止/关闭失败:未绑定到TTS引擎

时间:2014-08-21 12:47:40

标签: android text-to-speech

我有一个使用TTS的android活动但是当我退出它时会在Logcat中出现泄露的服务连接错误。在泄露的服务错误之上,我得到一个声明:

stop failed: not bound to TTS engine
shutdown failed: not bound to TTS engine

我的onStop和onDestroy看起来像这样: 编辑代码:

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

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

当用户按下按钮时触发TTS(TTS确实正常,我只是想修复服务连接错误)

if (v == speakButton && ttscrashprotect == 1) {   
    String text = inputText.getText().toString();
    if (text != null && text.length() > 0) {
        tts.speak(text, TextToSpeech.QUEUE_ADD, null);
    }

这是我的onActivityResult

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

TTS工作正常,我可以看到在logcat中调用引擎,但出于某种原因,tts.stop()tts.shutdown()并未绑定到同一引擎。

EDIT2:看起来我连接到TTS引擎和服务的时间超过一次。每次我希望TTS在活动中说出的文本然后另一个连接到TTS引擎和TTS服务。

文本更改时的我的TTS代码如下所示:

if (v==nextButton && progressL1<100) {
    Video.setVisibility(View.INVISIBLE); //hide the video view

    progressL1= progressL1 + 10;
    //increase progress by 10 and then load the new files
    //load the TTS text data from Asset folder progressL1 txt file
    Advanced.this.loadDataFromAsset(progressL1);
    //try some tts stuff here
    Intent checkIntent = new Intent();
    checkIntent.setAction(TextToSpeech.Engine.ACTION_CHECK_TTS_DATA);
    startActivityForResult(checkIntent, MY_DATA_CHECK_CODE);

TTS是从上面的v == speakButton代码触发的。

1 个答案:

答案 0 :(得分:2)

请勿拨打tts.shutdown()两次,只需onDestroy()即可。

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

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