Top "Serviceconnection" questions

Activity <App Name> has leaked ServiceConnection <ServiceConnection Name>@438030a8 that was originally bound here

I'm working on my first Android app. I've got three activities in my app, and the user switches back and …

android serviceconnection
Android how do I wait until a service is actually connected?

I have an Activity calling a Service defined in IDownloaderService.aidl: public class Downloader extends Activity { IDownloaderService downloader = null; // ... In …

android binding service serviceconnection
Do I need to call both unbindService and stopService for Android services?

In my Android app, I call both startService and bindService: Intent intent = new Intent(this, MyService.class); ServiceConnection conn = new …

android serviceconnection
MainActivity has leaked ServiceConnection android.speech.SpeechRecognizer$Connection@414ee400 that was originally bound here

In my app I recognize the user saying "exit" or "close" and the app should close. With this code SpeechRecognizer …

android speech-recognition serviceconnection
leaked ServiceConnection Android text-to-speech

I have an app that is using text-to-speech on start up. Everything appears to work perfectly and I have no …

java android text-to-speech serviceconnection