diff options
author | Joe Onorato <joeo@android.com> | 2010-05-26 14:31:09 -0400 |
---|---|---|
committer | Joe Onorato <joeo@android.com> | 2010-06-02 14:48:44 -0700 |
commit | 175f79c5a556416817a8f8674b2e0ac3b3cb6e6b (patch) | |
tree | 4d7b980d4810e7ab3d86f8cebfa8083f20627f9b | |
parent | 5ee67ebff2e267c02216911f9bf0fc28196c5361 (diff) | |
download | frameworks_base-175f79c5a556416817a8f8674b2e0ac3b3cb6e6b.zip frameworks_base-175f79c5a556416817a8f8674b2e0ac3b3cb6e6b.tar.gz frameworks_base-175f79c5a556416817a8f8674b2e0ac3b3cb6e6b.tar.bz2 |
In fact, switching an item between ongoing and notifications works.
The test just wasn't testing that.
Change-Id: If1af2a7258d2a3764f845d9862a0a0ff62b1d7ed
-rw-r--r-- | tests/StatusBar/src/com/android/statusbartest/NotificationTestList.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/StatusBar/src/com/android/statusbartest/NotificationTestList.java b/tests/StatusBar/src/com/android/statusbartest/NotificationTestList.java index c30ace3..3602fec 100644 --- a/tests/StatusBar/src/com/android/statusbartest/NotificationTestList.java +++ b/tests/StatusBar/src/com/android/statusbartest/NotificationTestList.java @@ -191,7 +191,7 @@ public class NotificationTestList extends TestActivity R.drawable.icon4, null, System.currentTimeMillis(), "Stress - Latest", "Notify me!!!", null); - n.flags |= Notification.FLAG_ONGOING_EVENT; + //n.flags |= Notification.FLAG_ONGOING_EVENT; mNM.notify(1, n); } } |