diff options
author | Conley Owens <cco3@android.com> | 2011-07-01 07:56:15 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2011-07-01 07:56:15 -0700 |
commit | 08c34c27b6a0153a58950ce7c541700a71bc0ed7 (patch) | |
tree | b2b18d065649e61248dc4c816ead4e124885362d /location | |
parent | 73f0a3a6bde168524a5f3c7ac31ba372174940e7 (diff) | |
parent | e0009bb0b700dcfeba3ff77f8c33113499674432 (diff) | |
download | frameworks_base-08c34c27b6a0153a58950ce7c541700a71bc0ed7.zip frameworks_base-08c34c27b6a0153a58950ce7c541700a71bc0ed7.tar.gz frameworks_base-08c34c27b6a0153a58950ce7c541700a71bc0ed7.tar.bz2 |
am e0009bb0: am 98395483: am 9f2cbf14: am e06749e1: Merge "Add FLAG_AUTO_CANCEL flag for multiple supl notifications."
* commit 'e0009bb0b700dcfeba3ff77f8c33113499674432':
Add FLAG_AUTO_CANCEL flag for multiple supl notifications.
Diffstat (limited to 'location')
-rwxr-xr-x | location/java/com/android/internal/location/GpsNetInitiatedHandler.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/location/java/com/android/internal/location/GpsNetInitiatedHandler.java b/location/java/com/android/internal/location/GpsNetInitiatedHandler.java index ffc3346..29dec63 100755 --- a/location/java/com/android/internal/location/GpsNetInitiatedHandler.java +++ b/location/java/com/android/internal/location/GpsNetInitiatedHandler.java @@ -205,7 +205,7 @@ public class GpsNetInitiatedHandler { mNiNotification.defaults &= ~Notification.DEFAULT_SOUND; } - mNiNotification.flags = Notification.FLAG_ONGOING_EVENT; + mNiNotification.flags = Notification.FLAG_ONGOING_EVENT | Notification.FLAG_AUTO_CANCEL; mNiNotification.tickerText = getNotifTicker(notif, mContext); // if not to popup dialog immediately, pending intent will open the dialog |