From 175f79c5a556416817a8f8674b2e0ac3b3cb6e6b Mon Sep 17 00:00:00 2001 From: Joe Onorato Date: Wed, 26 May 2010 14:31:09 -0400 Subject: [PATCH] In fact, switching an item between ongoing and notifications works. The test just wasn't testing that. Change-Id: If1af2a7258d2a3764f845d9862a0a0ff62b1d7ed --- .../src/com/android/statusbartest/NotificationTestList.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/StatusBar/src/com/android/statusbartest/NotificationTestList.java b/tests/StatusBar/src/com/android/statusbartest/NotificationTestList.java index c30ace309f553..3602fecfd84e2 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); } }