Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to show toast overlaying status bar?

I know to set the location at which the toast should appear on the screen with setGravity. But when i set toast.setGravity(Gravity.TOP, 0, 0). It still inside the content view. Its possible to show the toast over content view/on status bar?

like image 446
ARM Avatar asked Nov 29 '25 18:11

ARM


1 Answers

It's not possible and you shouldn't even try to do that. You can hide status bar using immersive mode and then you could display toasts wherever you want on screen, since your activity will be fullscreen

like image 98
Anton Avatar answered Dec 01 '25 09:12

Anton