[android-developers] Re: Resume activity while download

2012-02-08 Thread dnkoutso
You could start a service that uses your AsyncTask to do the job and reports the results to all the binders. I assume you want the download to continue even if the user leaves your Activity right? -- You received this message because you are subscribed to the Google Groups "Android Developers"

[android-developers] Re: Resume activity while download

2012-02-01 Thread Ed Harned
This open source project supports a general purpose multi-threading service: http://coopsoft.com/ar/AndroidArticle.html Ed On Jan 31, 10:21 am, TreKing wrote: > On Tue, Jan 31, 2012 at 9:10 AM, ColletJb wrote: > > How could I handle the progress updates with a separated service ? > > With AIDL

Re: [android-developers] Re: Resume activity while download

2012-01-31 Thread TreKing
On Tue, Jan 31, 2012 at 9:10 AM, ColletJb wrote: > How could I handle the progress updates with a separated service ? > With AIDL ? > Check the Service documentation page. There is a "LocalService" example.

[android-developers] Re: Resume activity while download

2012-01-31 Thread ColletJb
With my current implementation, I use AsyncTask. It supports progress updates and many other things. How could I handle the progress updates with a separated service ? With AIDL ? Thanks for your help On 31 jan, 15:59, TreKing wrote: > On Tue, Jan 31, 2012 at 8:01 AM, ColletJb wrote: > > Can a