I am using notification to let the user now that the service is still running. Now I would like to use the highlight to remind the user. (because it's freaky)
The notification works fine, but the notification indicator does nothing. Other applications work fine with notification highlighting (gtalk, facebook).
this is more or less sample code for notifications with the addition of these flags:
notification.ledARGB = 0xff00ff00; notification.ledOnMS = 100; notification.ledOffMS = 100; notification.flags |= Notification.FLAG_SHOW_LIGHTS; notification.flags |= Notification.FLAG_NO_CLEAR + Notification.FLAG_ONGOING_EVENT; mNotificationManager.notify(NOTIFICATION_ID, notification);
and
notification.defaults |= Notification.DEFAULT_LIGHTS;
doesn't work either.
I am debugging a Galaxy Nexus with Android 4.0, but the goal of the application is Android 2.3.3.
EDIT: Could this be a resolution issue? If so, which one? I looked through everything and did not find a suitable resolution for reporting notifications.
source share