I am downloading videos from the server using Android DownloadManager
. I want to give a name to each video myself. By default the name of videos downloadfile-6.bin.
String servicestring = Context.DOWNLOAD_SERVICE;
DownloadManager downloadmanager;
downloadmanager = (DownloadManager) getSystemService(servicestring);
Uri uri = Uri.parse(links.get(0));
DownloadManager.Request request = new DownloadManager.Request(uri);
Long reference = downloadmanager.enqueue(request);
Suggestion will be appreciated.