gpt4 book ai didi

android - TTS 错误 : leaked ServiceConnection android. speech.tts.TextToSpeech

转载 作者:IT老高 更新时间:2023-10-28 23:02:27 31 4
gpt4 key购买 nike

解决方案

看来你必须在onActivityResult中调用super方法

super.onActivityResult(requestCode, resultCode, data);

当我按下 Activity 上的后退按钮时,我从 TTS 收到此错误。显然这是因为我没有调用 shutdown() 但我是,请参阅下面的 onDestroy()。我制作了一个 Activity 扩展的抽象 TtsActivity 类。我在所有子类中调用 super.onDestroy()。

12-05 18:04:05.268: ERROR/ActivityThread(30240): Activity com.mysite.myapp.ActivitySelectItGame has leaked ServiceConnection android.speech.tts.TextToSpeech$1@43e9b4a0 that was originally bound here
12-05 18:04:05.268: ERROR/ActivityThread(30240): android.app.ServiceConnectionLeaked: Activity com.mysite.myapp.ActivitySelectItGame has leaked ServiceConnection android.speech.tts.TextToSpeech$1@43e9b4a0 that was originally bound here
12-05 18:04:05.268: ERROR/ActivityThread(30240): at android.app.ActivityThread$PackageInfo$ServiceDispatcher.<init>(ActivityThread.java:1121)
12-05 18:04:05.268: ERROR/ActivityThread(30240): at android.app.ActivityThread$PackageInfo.getServiceDispatcher(ActivityThread.java:1016)
12-05 18:04:05.268: ERROR/ActivityThread(30240): at android.app.ContextImpl.bindService(ContextImpl.java:863)
12-05 18:04:05.268: ERROR/ActivityThread(30240): at android.content.ContextWrapper.bindService(ContextWrapper.java:347)
12-05 18:04:05.268: ERROR/ActivityThread(30240): at android.speech.tts.TextToSpeech.initTts(TextToSpeech.java:467)
12-05 18:04:05.268: ERROR/ActivityThread(30240): at android.speech.tts.TextToSpeech.<init>(TextToSpeech.java:433)
12-05 18:04:05.268: ERROR/ActivityThread(30240): at com.mysite.android.library.activity.ActivityTTS.onActivityResult(ActivityTTS.java:98)
12-05 18:04:05.268: ERROR/ActivityThread(30240): at com.mysite.myapp.ActivityGame.onActivityResult(ActivityGame.java:445)
12-05 18:04:05.268: ERROR/ActivityThread(30240): at android.app.Activity.dispatchActivityResult(Activity.java:3890)
12-05 18:04:05.268: ERROR/ActivityThread(30240): at android.app.ActivityThread.deliverResults(ActivityThread.java:3511)
12-05 18:04:05.268: ERROR/ActivityThread(30240): at android.app.ActivityThread.handleSendResult(ActivityThread.java:3557)
12-05 18:04:05.268: ERROR/ActivityThread(30240): at android.app.ActivityThread.access$2800(ActivityThread.java:125)
12-05 18:04:05.268: ERROR/ActivityThread(30240): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2063)
12-05 18:04:05.268: ERROR/ActivityThread(30240): at android.os.Handler.dispatchMessage(Handler.java:99)
12-05 18:04:05.268: ERROR/ActivityThread(30240): at android.os.Looper.loop(Looper.java:123)
12-05 18:04:05.268: ERROR/ActivityThread(30240): at android.app.ActivityThread.main(ActivityThread.java:4627)
12-05 18:04:05.268: ERROR/ActivityThread(30240): at java.lang.reflect.Method.invokeNative(Native Method)
12-05 18:04:05.268: ERROR/ActivityThread(30240): at java.lang.reflect.Method.invoke(Method.java:521)
12-05 18:04:05.268: ERROR/ActivityThread(30240): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
12-05 18:04:05.268: ERROR/ActivityThread(30240): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
12-05 18:04:05.268: ERROR/ActivityThread(30240): at dalvik.system.NativeStart.main(Native Method)

我的类(class)正在扩展的 Activity

public abstract class ActivityTTS extends Activity implements OnInitListener {
//TEXT TO SPEECH SERVICE
public static final int CHECK_TTS_AVAILABILITY = 101;
private static final String TAG = "ActivityTTS";
private TextToSpeech mTts; //Text to speech library

//MESSAGES
private String NO_TTS_ANDROID_MARKET_REDIRECT =
"'SpeechSynthesis Data Installer' is not installed on your system, you are being redirected to" +
" the installer package. You may also be able to install it my going to the 'Home Screen' then " +
"(Menu -> Settings -> Voice Input & output -> Text-to-speech settings)";
private String NO_TTS_AVAILABLE =
"'SpeechSynthesis Data Installer' is not available on your system, " +
"you may have to install it manually yourself. You may also be able to install it my going to the 'Home Screen' " +
"then (Menu -> Settings -> Voice Input & output -> Text-to-speech settings)";


@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Log.d(TAG, "onCreate() called in ActivityTTS");

try { //A weird error was occurring on some phones with the TTS, hence the try catch
//TTS Service
Intent checkIntent = new Intent();
checkIntent.setAction(TextToSpeech.Engine.ACTION_CHECK_TTS_DATA);
startActivityForResult(checkIntent, CHECK_TTS_AVAILABILITY);
} catch (Exception e) {
Toast.makeText(this, NO_TTS_AVAILABLE, Toast.LENGTH_LONG).show();
finish();
}

}






@Override
protected void onStart() {
super.onStart();


}






@Override
protected void onStop() {
super.onStop();
}



/**
* Add a custom audio file for a particular
* audio element.
*
* @param text
* @param filename
*/
protected void addSpeech(String text, String filename ) {
mTts.addSpeech(text, filename);
}



/**
* For TTS
*/
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
try {
//Log.d(TAG, "TTS Response: "+requestCode);
if (requestCode == CHECK_TTS_AVAILABILITY) {
if (resultCode == TextToSpeech.Engine.CHECK_VOICE_DATA_PASS) {

// success, create the TTS instance
this.mTts = new TextToSpeech(this, this);

} else {
// missing data, install it
Toast.makeText(this, NO_TTS_ANDROID_MARKET_REDIRECT, Toast.LENGTH_LONG).show();

PackageManager pm = getPackageManager();
Intent installIntent = new Intent();
installIntent.setAction(TextToSpeech.Engine.ACTION_INSTALL_TTS_DATA);
ResolveInfo resolveInfo = pm.resolveActivity( installIntent, PackageManager.MATCH_DEFAULT_ONLY );

if( resolveInfo == null ) {
// Not able to find the activity which should be started for this intent
Toast.makeText(this, NO_TTS_AVAILABLE, Toast.LENGTH_LONG).show();
} else {
startActivity( installIntent );
}

finish();
}
}
}catch (Exception e) {
Log.e(TAG, "Unable to access service");
finish();
}

}




/**
* Loads when the TTS is ready
*/
@Override
public void onInit(int status) {
mTts.setLanguage(Locale.getDefault());
}


/**
* Speak text
*/
protected void speak(String text) {
try{
mTts.stop(); //Stop speaking
mTts.speak(text, TextToSpeech.QUEUE_FLUSH, null);
}
catch(Exception e) {
Log.e(TAG, "TTS Failed - cannot say: "+text );
}
}


/**
* Speak a pre-recorded word
*/
protected void speak(String text, File filename) {
try{
mTts.stop(); //Stop speaking
mTts.addSpeech(text, filename.toString());
mTts.speak(text, TextToSpeech.QUEUE_FLUSH, null);
}
catch(Exception e) {
Log.e(TAG, "TTS Failed - cannot say: "+text );
}
}


@Override
protected void onDestroy() {
super.onDestroy();

//Close the Text to Speech Library
if(mTts != null) {

mTts.stop();
mTts.shutdown();
Log.d(TAG, "TTS Destroyed");
}
}

public void setLanguage(Locale audioLocale) {
mTts.setLanguage(audioLocale);
}
}

这是与ActivityGame中的 Activity 相关的代码

public abstract class ActivityGame extends ActivityTTS {

...

protected void speak() {
if (Logging.INFO) Log.i(TAG, "Speaking");

if(this.mVoicePreference) {
String word = mBoundService.getCurrentWord().getSpelling();


if(WordRecordingHelper.recordingExists(word)) {

try{
File f = new File(Constants.SDCARD_RECORDINGS+WordRecordingHelper.formatRecordedWord(word));
super.addSpeech(word, f.getAbsolutePath());
} catch (Exception e) {
if(Logging.WARN) Log.w(TAG, "An error occurred while trying to use addSpeech()", e);
}
}


//play the audio
super.speak(word);
}
}



@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
...

}



@Override
protected void onDestroy() {
super.onDestroy();

....
}


}

这里是ActivitySelectItGame,它根本不引用TTS,只是扩展了ActivityGame

public class ActivitySelectItGame extends ActivityGame {
...
}

但是我从一个完全不相关的 Activity 中遇到了完全相同的问题,扩展了 ActivityTTS。

最佳答案

@Override
protected void onDestroy() {


//Close the Text to Speech Library
if(mTts != null) {

mTts.stop();
mTts.shutdown();
Log.d(TAG, "TTS Destroyed");
}
super.onDestroy();
}

我认为问题是您在 Activity 被破坏后关闭 mTts。尝试使用我发布的代码。让我知道这是否可行

关于android - TTS 错误 : leaked ServiceConnection android. speech.tts.TextToSpeech,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4242401/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com