Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Status Bar Notification - Any way to make Notification pup-up (toast) over status bar?

I am wondering if there is a way to make the notification pop-up above the status bar, like a traditional toast message, when first received. As it functions by default, when a notification is received, the notification Ticker is shown IN the status bar and hides the other notification icons (if any are present) temporarily until the notification ticker is done being displayed. Then, the notification icon is added normally to the horizontal list of icons awaiting user interaction. I want the initial reception ticker to just rise above the status bar, then add the icon with the rest of them.

Any ideas?

like image 662
Mick0311 Avatar asked Dec 04 '25 23:12

Mick0311


1 Answers

This is not possible using the Notification system, except perhaps via a custom build of Android which you modify to have this capability.

That being said, you are welcome to display a Toast in addition to, or instead of, displaying a Notification.

like image 81
CommonsWare Avatar answered Dec 07 '25 16:12

CommonsWare