Home | 简体中文 | 繁体中文 | 杂文 | Github | 知乎专栏 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏

第 22 章 下载管理

目录

22.1. 从 URL 下来文件
22.2. 安装 APK
22.3. 下载后接收广播通知

22.1. 从 URL 下来文件

		
    DownloadManager manager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);
    Uri uri = Uri.parse("https://www.netkiller.cn/linux/images/cover.png");
    DownloadManager.Request request = new DownloadManager.Request(uri);
    request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE);
    long reference = manager.enqueue(request);