Questions tagged [android-download-manager]

A system service that handles long-running HTTP downloads in Android

From the API page:

The download manager is a system service that handles long-running HTTP downloads. Clients may request that a URI be downloaded to a particular destination file. The download manager will conduct the download in the background, taking care of HTTP interactions and retrying downloads after failures or across connectivity changes and system reboots. Instances of this class should be obtained through getSystemService(String) by passing DOWNLOAD_SERVICE. Apps that request downloads through this API should register a broadcast receiver for ACTION_NOTIFICATION_CLICKED to appropriately handle when the user clicks on a running download in a notification or from the downloads UI. Note that the application must have the INTERNET permission to use this class.

Useful links

994 questions
-3
votes
2 answers

Not able to get large Android App downloaded from Google-Play

I am developing an Android App (or thought I was) that includes plant descriptions and photographs for 1,200 plants. This data caused the App to be around 250 Meg. When I got to releasing the App I discovered that the App had to be broken into two…
-3
votes
2 answers

downloading multiple files using downloadmanager class in android?

i want to download multiple files using downloadmanager class in android i have 100-200 image file but when i try to download the files app crashes but the download starts? how can i fix this,my code for downloading the files is: public void…
Pramod Yadav
  • 2,316
  • 2
  • 23
  • 36
-5
votes
1 answer

Intent Action for Download Completion not visible in AndroidManifest.xml

I am trying to register a broadcastreceiver which listens for "android.intent.action.DOWNLOAD_COMPLETE". But it is not visible in the AndroidManifest.xml. Please help
-7
votes
1 answer

download file by clicking on the list view Items

I want to download a file(MP4) by clicking on the list view Items Please give guidance on this!
Dphi Mrp
  • 21
  • 1
  • 1
1 2 3
66
67