Jump to Navigation

Me on Twitter

  • Now it's getting crazy ! http://t.co/c7xTfxwy5Y #okay #game 8 years 32 weeks ago
  • I am now a Professional #ScrumMaster ! http://t.co/mMGW7utxYH @scrumdotorg 8 years 32 weeks ago
  • @AirDroidTeam pdf, epub When 'download' is clicked, there's a quick loader in kobo's (Aura H2O) status bar then nothing 8 years 38 weeks ago
  • @AirDroidTeam I like airdroid but today I'm disappointed : downloading files does not work from kobo (it works with other apps) 8 years 38 weeks ago
  • @IFTTT What do you mean by "full control" ? Do we have access to the source code of the recipes ? Or fine-tuning the permissions ? 8 years 43 weeks ago
  • @IFTTT is awesome... BUT way too intrusive ! Why all those authorizations just to tweet or get updates from github for instance ? 8 years 43 weeks ago
  • @ParisWeb Impec ;-) 8 years 46 weeks ago
  • @ParisWeb Y a-t-il une vision "agenda" des conférences 2015 (ici sous forme de liste non ordonnée : https://t.co/G8B4QuKlcD) ? 8 years 46 weeks ago
  • @TheBrousse “@ParisAndroidUG Découvrez la e-santé avec le Hackathon @whathealthfr du 12 au 14 Juin à Paris : http://t.co/CRbuys8DgS” 8 years 49 weeks ago
  • @openelec YouTube add-on is broken is there a patch ? http://t.co/npuekUeHX3 8 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