While it is easy to put buttons into status bar notification (and get it working) in ICS, the displayed buttons seem unable to get focus or click in earlier versions of android. Is this the case? The focus will get delivered to the whole notification, not the buttons in front of it (I used the RemoteViews.setOnClickPendingIntent(int, PendingIntent) to link the buttons).
While it is easy to put buttons into status bar notification (and get it
Share
No, you can’t have UI elements like this in pre Honeycomb. All you can have is pending intent once your notification entry is tapped as whole and that’s it. if you need, you may show user a chooser (i.e. activity themed as dialog) so user could pick up anything extra needed, but you can’t have it directly in notification area