[android-developers] Re: Binding a remote service through the application class

2011-09-29 Thread Hera
Let me see if I have understood: I have to create a Bound service by Extending the Binder class, this is a local service. Then, the service must start a normal Thread (new runnnable) to do the work or is better to implement it in another way? On 28 sep, 17:07, Mark Murphy

Re: [android-developers] Re: Binding a remote service through the application class

2011-09-29 Thread Mark Murphy
On Thu, Sep 29, 2011 at 2:28 AM, Hera aide...@gmail.com wrote: Let me see if I have understood: I have to create a Bound service by Extending the Binder class, this is a local service. Then, the service must start a normal Thread (new runnnable) to do the work Correct. There are other patterns

[android-developers] Re: Binding a remote service through the application class

2011-09-28 Thread Hera
Thank you so much, Mark. I am using a bound service in a remote process and I have already solve the comunication between 2 processes (the application shown and the service). I think that my service must be implemented in a separate process because it implements a CPU intensive work and it used

Re: [android-developers] Re: Binding a remote service through the application class

2011-09-28 Thread Mark Murphy
On Wed, Sep 28, 2011 at 11:04 AM, Hera aide...@gmail.com wrote: I think that my service must be implemented in a separate process because it implements a CPU intensive work and it used to block the GUI when I used AsyncTask to refresh the GUI, maybe there is other alternatives. You need a