[android-developers] Re: Help with Services

2009-05-29 Thread clemsongrad
Sujay, There are two ways I know of doing this: 1. Easy way is to have the service to broadcast the result. 2. A little more complex way is to have an AIDL which is very similar to CORBA and enable the IPC between the service and your app components. This i assume would be more sync in

[android-developers] Re: Help with Services

2009-05-29 Thread Streets Of Boston
Take a look at the API Demoes source code. There is source code for a Service that handles request from an activity and that can do callbacks back to an activity for updates (e.g. progress). On May 29, 1:03 am, Sujay Krishna Suresh sujay.coold...@gmail.com wrote: Hi all,               i'm