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

第 131 章 下载管理

目录

131.1. 从 URL 下来文件
131.2. 安装 APK
131.3. 下载后接收广播通知

131.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);