From b0bb182a1b52b31ccf1ec5e0be82308ebb4857e2 Mon Sep 17 00:00:00 2001 From: Jeff Sharkey Date: Thu, 13 Dec 2012 12:58:18 -0800 Subject: Cancel stale notifications when starting. Bug: 7693834 Change-Id: I5e212be321cccae0f7c76f80049c4e09f0867694 --- src/com/android/providers/downloads/DownloadNotifier.java | 4 ++++ src/com/android/providers/downloads/DownloadService.java | 1 + 2 files changed, 5 insertions(+) diff --git a/src/com/android/providers/downloads/DownloadNotifier.java b/src/com/android/providers/downloads/DownloadNotifier.java index f89d2d02..daae7831 100644 --- a/src/com/android/providers/downloads/DownloadNotifier.java +++ b/src/com/android/providers/downloads/DownloadNotifier.java @@ -72,6 +72,10 @@ public class DownloadNotifier { Context.NOTIFICATION_SERVICE); } + public void cancelAll() { + mNotifManager.cancelAll(); + } + /** * Update {@link NotificationManager} to reflect the given set of * {@link DownloadInfo}, adding, collapsing, and removing as needed. diff --git a/src/com/android/providers/downloads/DownloadService.java b/src/com/android/providers/downloads/DownloadService.java index 5b767a27..b97346b2 100644 --- a/src/com/android/providers/downloads/DownloadService.java +++ b/src/com/android/providers/downloads/DownloadService.java @@ -223,6 +223,7 @@ public class DownloadService extends Service { mMediaScannerConnection = new MediaScannerConnection(); mNotifier = new DownloadNotifier(this); + mNotifier.cancelAll(); mStorageManager = StorageManager.getInstance(getApplicationContext()); updateFromProvider(); -- cgit v1.2.3