PendingIntent和DownloadManager

时间:2012-06-14 22:12:11

标签: android android-pendingintent android-download-manager notificationmanager

有没有办法在下载管理器中设置PendingIntent?还是DownloadManager.Request?我正在工具栏中向用户发送有关下载的通知:

request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);

请求初始化为:

DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url));

我需要它,以便当用户点击此通知时,他们会被带到活动或文件被下载的位置。

1 个答案:

答案 0 :(得分:1)

我认为您的问题已在question中得到解答。

也就是说,请注意ACTION_NOTIFICATION_CLICKEDACTION_DOWNLOAD_COMPLETE行为。

如果您需要更多控制权,可以使用自己的通知,在下载完成后使用PendingIntent更新通知。