"Activity A" send url and file name to DownloadManager that start download and show progress in notification, when progress notification is clicked open "Activity B" with list of downloads with all downloads in progress and finished.
Sorry my english
DownloadManager
should be aService
because you want it to work in a background and not interact with UI changes such as screen rotation and so on. Implement your own threading inside thisService
as you need. I recommendThreadPoolExecutor
. It will allow you to set the number of threads, so you will be able to switch execution from serial to parallel and so on.Use
startForeground
method call for that. Refer http://developer.android.com/reference/android/app/Service.htmlUse
PendingIntent
for that because notifications run in a system process, not in you application process.PendingIntent
will give you permissions to openActivityB
. Refer: Open application after clicking on NotificationIf you want to show the status of operations in your
ActivityB
you can easilybind
to yourDownloadManager
and update activity UI via callback from progress updates.