I haven't found any info about that. Is it somehow possible listen for downloadmanager request status changes? I queue few files for download and I display it in list with download state. I receive broadcast only on DownloadManager.ACTION_DOWNLOAD_COMPLETE but I would like to receive some notification or set some listener so I will be able to track download request changes. I want display state - added to queue, downloading, downloaded...
Only way which I see is query downloadmanager and check every request about state, but I need to do it in listadapter getview method and it will be not very efficient.