[android-developers] Re: Binder Thread issue.

2009-06-24 Thread Mark Murphy
Gavin wrote: OK. thanks for your suggestion. I will modify my design. It is Binder Thread that I want to know. Is there any negative impact? I do not know what a Binder Thread is in this context. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy _The Busy

[android-developers] Re: Binder Thread issue.

2009-06-23 Thread Mike Hearn
They're used by the framework itself, ignore them. On Jun 23, 6:59 am, Gavin fjm...@gmail.com wrote:      My app have a service and it will create a thread every 5 mins. The thread will connect internet to download some data, and then exit. That's not the right design. Instead look into the

[android-developers] Re: Binder Thread issue.

2009-06-23 Thread Gavin
Thanks mike. But I don't agree with you . If I stop the service through stopSelf(), the service will not be waked up by alarm manager. It will not repeatly download data every 5 mins. On Jun 23, 7:57 pm, Mike Hearn mh.in.engl...@gmail.com wrote: They're used by the framework itself, ignore

[android-developers] Re: Binder Thread issue.

2009-06-23 Thread Mark Murphy
Gavin wrote: Thanks mike. But I don't agree with you . If I stop the service through stopSelf(), the service will not be waked up by alarm manager. It will not repeatly download data every 5 mins. Sure it will! Or, more accurately, your BroadcastReceiver that you register in the manifest for

[android-developers] Re: Binder Thread issue.

2009-06-23 Thread Gavin
OK. thanks for your suggestion. I will modify my design. It is Binder Thread that I want to know. Is there any negative impact? On Jun 24, 10:06 am, Mark Murphy mmur...@commonsware.com wrote: Gavin wrote: Thanks mike. But I don't agree with you . If I stop the service through stopSelf(),