有什么方法可以使用下载管理器设置 PendingIntent 吗?还是 DownloadManager.Request?我正在工具栏中向用户发送有关下载的通知:
request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
请求是这样初始化的:
DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url));
我需要它,以便当用户单击此通知时,他们会被带到活动或下载文件的位置。