summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/com/android/providers/downloads/DownloadNotifier.java4
-rw-r--r--src/com/android/providers/downloads/DownloadService.java1
2 files changed, 5 insertions, 0 deletions
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();