Android: How to use download manager class?

android, download, java, url

Solution

Is it possible to use the android download manager class that i found here

Yes, though that is only available since Android API Level 9 (version 2.3). Here is a sample project demonstrating the use of `DownloadManager`.

Problem

I want to download a binary file from a url. Is it possible to use the Android download manager class that I found here DownloadManager class?

Original source