summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMattias Östergren <mattias.ostergren@sonyericsson.com>2010-03-05 09:44:15 +0100
committerJohan Redestig <johan.redestig@sonyericsson.com>2010-03-05 09:44:15 +0100
commitb0fbe297c50df5dcfb81721fd6079dd7125f88e0 (patch)
treed361f944f43c293cdf136ba64063709c13836517 /tests
parent7bb2581e6f404da0edba9ebb81b0d0593715eb40 (diff)
downloadframeworks_base-b0fbe297c50df5dcfb81721fd6079dd7125f88e0.zip
frameworks_base-b0fbe297c50df5dcfb81721fd6079dd7125f88e0.tar.gz
frameworks_base-b0fbe297c50df5dcfb81721fd6079dd7125f88e0.tar.bz2
Updated RGB LED test cases
The test cases for turning on the RGB LED with persistent light was corrected. The color for blinking was updated to blue. And finally an option for turning off the lights was added.
Diffstat (limited to 'tests')
-rw-r--r--tests/StatusBar/src/com/android/statusbartest/NotificationTestList.java22
1 files changed, 20 insertions, 2 deletions
diff --git a/tests/StatusBar/src/com/android/statusbartest/NotificationTestList.java b/tests/StatusBar/src/com/android/statusbartest/NotificationTestList.java
index f2ddd0f..4fd7e65 100644
--- a/tests/StatusBar/src/com/android/statusbartest/NotificationTestList.java
+++ b/tests/StatusBar/src/com/android/statusbartest/NotificationTestList.java
@@ -165,6 +165,8 @@ public class NotificationTestList extends TestActivity
Notification n = new Notification();
n.flags |= Notification.FLAG_SHOW_LIGHTS;
n.ledARGB = 0xff0000ff;
+ n.ledOnMS = 1;
+ n.ledOffMS = 0;
mNM.notify(1, n);
}
},
@@ -175,6 +177,8 @@ public class NotificationTestList extends TestActivity
Notification n = new Notification();
n.flags |= Notification.FLAG_SHOW_LIGHTS;
n.ledARGB = 0xffff0000;
+ n.ledOnMS = 1;
+ n.ledOffMS = 0;
mNM.notify(1, n);
}
},
@@ -185,6 +189,20 @@ public class NotificationTestList extends TestActivity
Notification n = new Notification();
n.flags |= Notification.FLAG_SHOW_LIGHTS;
n.ledARGB = 0xffffff00;
+ n.ledOnMS = 1;
+ n.ledOffMS = 0;
+ mNM.notify(1, n);
+ }
+ },
+
+ new Test("Lights off") {
+ public void run()
+ {
+ Notification n = new Notification();
+ n.flags |= Notification.FLAG_SHOW_LIGHTS;
+ n.ledARGB = 0x00000000;
+ n.ledOnMS = 0;
+ n.ledOffMS = 0;
mNM.notify(1, n);
}
},
@@ -194,7 +212,7 @@ public class NotificationTestList extends TestActivity
{
Notification n = new Notification();
n.flags |= Notification.FLAG_SHOW_LIGHTS;
- n.ledARGB = 0xffffff00;
+ n.ledARGB = 0xff0000ff;
n.ledOnMS = 1300;
n.ledOffMS = 1300;
mNM.notify(1, n);
@@ -206,7 +224,7 @@ public class NotificationTestList extends TestActivity
{
Notification n = new Notification();
n.flags |= Notification.FLAG_SHOW_LIGHTS;
- n.ledARGB = 0xffffff00;
+ n.ledARGB = 0xff0000ff;
n.ledOnMS = 300;
n.ledOffMS = 300;
mNM.notify(1, n);