Hello!
I'm writing app for android device, which is simple download manager.
I want to download 2/3 files simultaneously, but I'm really confused
how to do it.

I don't want use async task because it could be killed and I want to
run download in background.
So I think I should use IntentService, but I can run only one
IntentService at time.
I have two ideas, how to do it, but I don't know which one to choose.
First is to run intentservice inside AsyncTask and second is to run
thread inside intentservice.
But either ways I don't know how to inform IntentService about new
file to download, while another download is already running.
Or maybe I should use traditional 'implement Runnable'?

Thanks for any help :)

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to