取消正在进行的下载不会删除通知

Cancelling ongoing download does not remove notification

我正在使用 Android DownloadManager,并且可以取消正在进行的下载。此调用还从我测试的所有设备上的通知栏中删除了下载进度,但来自 Nexus 5(运行 Android 5.0.1)。行为是下载被取消但通知没有,并且在请求取消时卡在完成百分比。

下面是我如何设置请求对象来显示通知

DownloadManager.Request.setNotificationVisibility(Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);

这是我调用后看到的相关日志消息输出

DownloadManager.remove(downloadId);

01-12 13:37:41.205      746-746/? V/NotificationService﹕ pkg=com.android.providers.downloads canInterrupt=false intercept=true
01-12 13:37:41.385   21155-7714/? W/DownloadManager﹕ [5020] Stop requested with status CANCELED: download canceled
01-12 13:37:41.385   21155-7714/? D/DownloadManager﹕ [5020] Finished with status CANCELED

为了解决这个问题,我不得不调用 DownloadManager#remove() 两次。