[android-developers] Re: Problem with service unbind

2010-12-11 Thread Rutton
I will watch out. But can you tell me, what the BIND_DEBUG_UNBIND flag actually does? I hoped that it produces some more logcat output on when such actions occur. But I haven't seen that in the logs. Cheers, Rutton. -- You received this message because you are subscribed to the Google Groups "An

Re: [android-developers] Re: Problem with service unbind

2010-12-11 Thread Dianne Hackborn
Then you have already unbound it. Try putting a breakpoint in each of the places you bindService() and unbindService(), and see what is going on as you run your app. You can look at the LocalServiceBinding API demo for an example of using bindService()/unbindService(); though this doesn't do it a

[android-developers] Re: Problem with service unbind

2010-12-11 Thread Rutton
Well, I have just the private ServiceConnection conn = new ServiceConnection() { } as a member. That should be only one service connection in my understanding. Some logging also delivered 12-11 18:06:10.580: DEBUG/test(32585): startMoveListener: serviceconnection=de.somebody.test.