Jump to Navigation

Me on Twitter

  • @CyrilGRV thx je viens d'installer 9 years 21 weeks ago
  • Hello @CyrilGRV il t'en reste une ? 9 years 22 weeks ago
  • Hands on #android5 today. Colorful GUI, fluid animations, some strange ergonomics and... my app #SwitchDataSwitch broken :-( 9 years 22 weeks ago
  • RT @jeanhelou: Your developers aren't slow https://t.co/gfPXzqlQCM 9 years 22 weeks ago
  • #PayPal terms of use updated again... 8 pages of small characters... Any digest around ? 9 years 22 weeks ago
  • Web fundamentals by #Google - Great digest of most of #web20 issues & solutions https://t.co/xT3u0JMcRc 9 years 23 weeks ago
  • #FirefoxDeveloperEdition : Got to try this "WebIDE" http://t.co/92JwCporGr 9 years 23 weeks ago
  • "Great products win". No... Can't be... http://t.co/lvadzWKLjA 9 years 25 weeks ago
  • SPDX License List - standardized licenses identifiers. Very useful for #nodejs #maven #ivy ... https://t.co/RxnDgfZTGH 9 years 27 weeks ago
  • @dgfip_officiel Mon smartphone devient fou avec 3 QRCodes côte à côte... http://t.co/SZsaecUXig 9 years 27 weeks ago

Notification API

android Tweaking Android Notifications

For SwitchDataSwitch, I wanted to provide users with a 1-click solution to enable and disable data traffic (2G/3G/...).
I chose the notification bar since it is a very accessible place, visible almost all the time and that can be expanded without stopping the running activity :

Expanding the notification bar 
The notification bar is usually presented in its reduced form (here the dark bar at the top of the screen with the smallest icons) but can be expanded by sliding it downwards.

Unfortunately, Android's Notification API is really made for instant notifications, not persistent ones, and that implies several inconveniences :

  • when creating a notification, the developer has to put an icon in the reduced notification bar, taking some precious space
  • by default an 'event timestamp' is shown next to the expanded content of the notification, which means nothing for a permanent service
  • there is no programmatic way to know if a notification is currently displayed or not

This article describes a way to create a notification that :

  • doesn't show up in the reduced notification bar
  • doesn't have a timestamp in the expanded notification bar
...
Syndicate content