Jump to Navigation

Me on Twitter

  • @alexlewando bon courage pour la fin ;-) #forgecamp 11 years 47 weeks ago
  • After spending the morning on android signing keys, I see green robots everywhere! Now it's becoming serious..! 11 years 47 weeks ago
  • @alexlewando Tu es dans quelle équipe ? 11 years 47 weeks ago
  • favorable user feedback is really the best reward http://t.co/1BF1IGUF 11 years 48 weeks ago
  • 1st #android app, 2nd release and so many hours for such a simple thing : https://t.co/OH0Wb4H6. Now back to #dataconnexions ! 11 years 48 weeks ago
  • quand je fais une mise en prod http://t.co/aZ66rUtG http://t.co/69Dh79sx #lesjoiesducode 11 years 48 weeks ago
  • You know that you got a good password when you cannot recover it yourself 11 years 49 weeks ago
  • Checking out tutorials @DataStax http://t.co/QOHSIUjj while waiting for yesterday @pcmanus slides or video... 11 years 49 weeks ago
  • @pcmanus hello peut-on avoir les slides d'hier ? 11 years 49 weeks ago
  • Very nice talk about #cassandra by @pcmanus . Makes it easy to understand the product pros and cons 11 years 49 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