This should be simple but I can't get it to work.  My application is
triggering a notification. I want that notification to make s aound,
vibrate, and turn on the LED.  It all works but the LED.

My code does something similar to the following:

Notification X = new Notification(...);
X |= Notification.DEFAULT_SOUND;
X |= Notification.DEFAULT_VIBRATE;
X |= Notification.DEFAULT_LIGHTS;

I also tried the following in lieu of setting the default:

X.flags |= Notification.FLAG_SHOW_LIGHTS;
X.ledOnMS = 1;
X.lefOffMS = 0;

None of this is working to get the LED to flash.  Am I missing something
totally obvious?

-- 
Jake Colman -- Android Tinkerer

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to