Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8351761
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T08:44:39+00:00 2026-06-09T08:44:39+00:00

My app uses text-to-speech after a voice recognition command. I had it working earlier

  • 0

My app uses text-to-speech after a voice recognition command. I had it working earlier with no errors but now it gives me a service connection leaked error and will not start the activity. I have included my LogCat and Java file where the error is located.

08-06 08:54:50.090: E/ActivityThread(2871): android.app.ServiceConnectionLeaked: Activity com.example.com.proto1.menu has leaked ServiceConnection android.speech.tts.TextToSpeech$1@408b10d8 that was originally bound here
08-06 08:54:50.090: E/ActivityThread(2871):     at android.app.LoadedApk$ServiceDispatcher.<init>(LoadedApk.java:932)
08-06 08:54:50.090: E/ActivityThread(2871):     at android.app.LoadedApk.getServiceDispatcher(LoadedApk.java:827)
08-06 08:54:50.090: E/ActivityThread(2871):     at android.app.ContextImpl.bindService(ContextImpl.java:1109)
08-06 08:54:50.090: E/ActivityThread(2871):     at android.content.ContextWrapper.bindService(ContextWrapper.java:370)
08-06 08:54:50.090: E/ActivityThread(2871):     at android.speech.tts.TextToSpeech.initTts(TextToSpeech.java:517)
08-06 08:54:50.090: E/ActivityThread(2871):     at android.speech.tts.TextToSpeech.<init>(TextToSpeech.java:483)
08-06 08:54:50.090: E/ActivityThread(2871):     at com.example.com.proto1.menu.onActivityResult(menu.java:250)
08-06 08:54:50.090: E/ActivityThread(2871):     at android.app.Activity.dispatchActivityResult(Activity.java:4581)
08-06 08:54:50.090: E/ActivityThread(2871):     at android.app.ActivityThread.deliverResults(ActivityThread.java:2817)
08-06 08:54:50.090: E/ActivityThread(2871):     at android.app.ActivityThread.handleSendResult(ActivityThread.java:2864)
08-06 08:54:50.090: E/ActivityThread(2871):     at android.app.ActivityThread.access$1000(ActivityThread.java:122)
08-06 08:54:50.090: E/ActivityThread(2871):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1057)
08-06 08:54:50.090: E/ActivityThread(2871):     at android.os.Handler.dispatchMessage(Handler.java:99)
08-06 08:54:50.090: E/ActivityThread(2871):     at android.os.Looper.loop(Looper.java:132)
08-06 08:54:50.090: E/ActivityThread(2871):     at android.app.ActivityThread.main(ActivityThread.java:4126)
08-06 08:54:50.090: E/ActivityThread(2871):     at java.lang.reflect.Method.invokeNative(Native Method)
08-06 08:54:50.090: E/ActivityThread(2871):     at java.lang.reflect.Method.invoke(Method.java:491)
08-06 08:54:50.090: E/ActivityThread(2871):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:844)
08-06 08:54:50.090: E/ActivityThread(2871):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:602)
08-06 08:54:50.090: E/ActivityThread(2871):     at dalvik.system.NativeStart.main(Native Method)



package com.example.com.proto1;

import android.app.Activity;
import android.content.Intent;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.speech.RecognizerIntent;
import android.view.View.OnClickListener;
import android.widget.ArrayAdapter;
import android.widget.EditText;
import android.widget.ListView;
import android.widget.Toast;
import android.speech.tts.TextToSpeech;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale;

@SuppressWarnings("unused")
public class menu extends Activity implements TextToSpeech.OnInitListener,
        OnClickListener {

    // defined
    TextToSpeech mTts;
    public static final int VOICE_RECOGNITION_REQUEST_CODE = 1234;

    // remember to include a listview on the xml or the voice recognition code
    // will not work
    public ListView mList;
    // TTS object
    Button speakButton, infoButton, voiceButton, talkButton;

    // TTS object
    public TextToSpeech myTTS;
    // status check code
    public int MY_DATA_CHECK_CODE = 0;

    @Override
    protected void onCreate(Bundle aboutmenu) {
        super.onCreate(aboutmenu);
        setContentView(R.layout.mainx);

        SpeakingAndroid speak = new SpeakingAndroid();

        VoiceRecognition voiceinput = new VoiceRecognition();

        // get a reference to the button element listed in the XML layout
        speakButton = (Button) findViewById(R.id.btn_speak);
        infoButton = (Button) findViewById(R.id.aboutbutton);
        voiceButton = (Button) findViewById(R.id.voicebutton);
        talkButton = (Button) findViewById(R.id.talk);

        // listen for clicks
        infoButton.setOnClickListener(this);
        speakButton.setOnClickListener(this);
        talkButton.setOnClickListener(this);

        // check for TTS data
        Intent checkTTSIntent = new Intent();
        checkTTSIntent.setAction(TextToSpeech.Engine.ACTION_CHECK_TTS_DATA);
        startActivityForResult(checkTTSIntent, MY_DATA_CHECK_CODE);

        // calling method
        voiceinputbuttons();

        // Check to see if a recognition activity is present
        // if running on AVD virtual device it will give this message. The mic
        // required only works on an actual android device//
        PackageManager pm = getPackageManager();
        List<ResolveInfo> activities = pm.queryIntentActivities(new Intent(
                RecognizerIntent.ACTION_RECOGNIZE_SPEECH), 0);
        if (activities.size() != 0) {
            voiceButton.setOnClickListener(this);
        } else {
            voiceButton.setEnabled(false);
            voiceButton.setText("Recognizer not present");
        }

    }

    // setup TTS
    public void onInit(int initStatus) {

        // check for successful instantiation

        // returns a fail statement if speech doesn't work
        if (initStatus == TextToSpeech.SUCCESS) {
            if (myTTS.isLanguageAvailable(Locale.US) == TextToSpeech.LANG_AVAILABLE)
                myTTS.setLanguage(Locale.US);
        } else if (initStatus == TextToSpeech.ERROR) {
            Toast.makeText(this, "Sorry! Text To Speech failed...",
                    Toast.LENGTH_LONG).show();
        }
    }

    public void informationmenu() {
        speakWords("information screen");
        startActivity(new Intent("android.intent.action.INFOSCREEN"));
    }

    public void voicemenu() {
        speakWords("voice recognition menu");
        startActivity(new Intent("android.intent.action.RECOGNITIONMENU"));
    }

    public void mainmenu() {
        speakWords("main menu");
        startActivity(new Intent("android.intent.action.MENU"));
    }

    // creating method
    public void voiceinputbuttons() {
        speakButton = (Button) findViewById(R.id.btn_speak);
        mList = (ListView) findViewById(R.id.list);
    }

    // respond to button clicks
    public void onClick(View v) {
        switch (v.getId()) {

        // use switch case so each button does a different thing
        // accurately(similar to an if statement)
        case R.id.btn_speak:
            String words1 = speakButton.getText().toString();

            // speakwords(xxxx); is the piece of code that actually calls the
            // text to speech
            speakWords(words1);
            Intent voiceIntent = new Intent("ANDROID_NET");
            startActivity(voiceIntent);
            break;
        case R.id.aboutbutton:
            String words2 = infoButton.getText().toString();
            speakWords(words2);
            Intent infoIntent = new Intent("android.intent.action.INFOSCREEN");
            startActivity(infoIntent);
            break;
        case R.id.voicebutton:
            speakWords("Speak Now");
            startVoiceRecognitionActivity(); // call for voice recognition
                                                // activity
            break;
        case R.id.talk:
            speakWords("This is the main menu.");
            break;
        }
    }

    // speak the user text
    // setting up the speakWords code
    public void speakWords(String speech) {

        // speak straight away
        myTTS.speak(speech, TextToSpeech.QUEUE_FLUSH, null);
    }

    /**
     * Fire an intent to start the speech recognition activity.
     */
    public void startVoiceRecognitionActivity() {
        Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
        intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
                RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
        intent.putExtra(RecognizerIntent.EXTRA_PROMPT,
                "Speech recognition demo");
        startActivityForResult(intent, VOICE_RECOGNITION_REQUEST_CODE);
    }

    /**
     * Handle the results from the recognition activity.
     */
    @Override
    public void onActivityResult(int requestCode, int resultCode, Intent data) {
        if (requestCode == VOICE_RECOGNITION_REQUEST_CODE
                && resultCode == RESULT_OK) {
            // Fill the list view with the strings the recognizer thought it
            // could have heard
            ArrayList<String> matches = data
                    .getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
            mList.setAdapter(new ArrayAdapter<String>(this,
                    android.R.layout.simple_list_item_1, matches));
            // matches is the result of voice input. It is a list of what the
            // user possibly said.
            // Using an if statement for the keyword you want to use allows the
            // use of any activity if keywords match
            // it is possible to set up multiple keywords to use the same
            // activity so more than one word will allow the user
            // to use the activity (makes it so the user doesn't have to
            // memorize words from a list)
            // to use an activity from the voice input information simply use
            // the following format;
            // if (matches.contains("keyword here") { startActivity(new
            // Intent("name.of.manifest.ACTIVITY")

            if (matches.contains("information")) {
                informationmenu();
            }
            if (matches.contains("info screen")) {
                informationmenu();
            }
            if (matches.contains("info")) {
                informationmenu();
            }
            if (matches.contains("about")) {
                informationmenu();
            }

            if (matches.contains("home")) {
                mainmenu();
            }
            if (matches.contains("menu")) {
                mainmenu();
            }
            if (matches.contains("home screen")) {
                mainmenu();
            }
            if (matches.contains("speak")) {
                startActivity(new Intent("android.intent.action.SPEAK"));
            }
            if (matches.contains("close")) {
                finish();
            }
            if (matches.contains("stop")) {
                finish();
            }
            if (matches.contains("finish")) {
                finish();
            }
            if (matches.contains("voice")) {
                voicemenu();
            }
            if (matches.contains("recognition")) {
                voicemenu();
            }
            if (matches.contains("voice recognition")) {
                voicemenu();
            }

        }

        // still in the onActivityResult: This is for the text to speech part

        if (requestCode == MY_DATA_CHECK_CODE) {
            if (resultCode == TextToSpeech.Engine.CHECK_VOICE_DATA_PASS) {
                // the user has the necessary data - create the TTS
                myTTS = new TextToSpeech(this, this);
            } else {
                // no data - install it now
                Intent installTTSIntent = new Intent();
                installTTSIntent
                        .setAction(TextToSpeech.Engine.ACTION_INSTALL_TTS_DATA);
                startActivity(installTTSIntent);
            }
        }

        super.onActivityResult(requestCode, resultCode, data);

    }

}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T08:44:43+00:00Added an answer on June 9, 2026 at 8:44 am

    In onDestroy() method of the Activity shutdown the TTS service using

    ttsObj.shutdown();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am working on a sports app that uses GPS and OpenEars text-to-speech. The
I have an app that uses text to speech to inform the user every
I have been working on my first app for some time now, but it
I am currently writing an Android app that, among other things, uses text information
My app uses a WebView widget to load ads from Google AdManager. AdManager gives
My current iPhone app uses UIKit. Now I want some small effects in the
I'm working on an app that uses a certain webapp's API. The API requiers
Unusual problem here: I have an app that uses a text file which contains
My app uses a StringBuilder to assemble paragraphs of text which are then displayed
I have written a personal web app that uses charCodeAt() to convert text that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.