Jump to Navigation

Me on Twitter

  • SimpleDateFormat 'Z' pattern (RFC822) does not match XSD timezone (ISO8601). There's only a ':' differing and that makes a BIG difference ! 12 years 8 weeks ago
  • RT @vogella: I donate money to Ubuntu for...being amazing http://t.co/ESHrRbbh 12 years 8 weeks ago
  • @louistouzet Android : optimisation des performances 1 - Fluidité de l'interface via @objetdirect http://t.co/ZDkvA867 12 years 8 weeks ago
  • Another cup of #scala : it looks like #java. Enhanced. 12 years 8 weeks ago
  • Really fun game : @BadPiggies ! 12 years 8 weeks ago
  • Mailing from phone : so one can write a mail sms-style! 12 years 8 weeks ago
  • Second cup of #Scala : looks like mathematics 12 years 9 weeks ago
  • @CedN :-) 12 years 10 weeks ago
  • @mathieudulac "The class is designed to be self-contained" "You should have at least one year programming experience." https://t.co/cWBn2m0g 12 years 10 weeks ago
  • @CedN Ayé. 1er devoir terminé. Et toi ? 12 years 10 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