DownloadManager

来源:互联网 发布:淘宝刷买家秀平台 编辑:程序博客网 时间:2024/05/18 01:43
DownloadManager downloadManager = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);
DownloadManager.Request request = new DownloadManager.Request(
Uri.parse("http://down.360safe.com/360mobilemgr/360box_web.apk"));
request.allowScanningByMediaScanner();
request.setTitle("Hello world!");
request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
request.setAllowedOverRoaming(true);
long downloadId = downloadManager.enqueue(request);


http://www.trinea.cn/android/android-downloadmanager/
0 0
原创粉丝点击