Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android navigation bar overlay

For my application I have to draw a bitmap on top of the Navigation bar on the bottom of the android screen. I am curious to know if the WindowManager.LayoutParams.TYPE_SYSTEM_OVERLAY can be used to overlay the navigation bar?

like image 279
sash Avatar asked Oct 21 '22 15:10

sash


1 Answers

Use the WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS should work :)

like image 199
xXJJJasonMokXx Avatar answered Oct 23 '22 09:10

xXJJJasonMokXx