How to programmatically determine the height of the bottom panel with touch buttons (see. Figure)
The fact is that the panel on the emulator overlaps my view. Found how to programmatically determine the presence of this panel, but with a programmatic definition of its height problems :)
if(!ViewConfiguration.get((Context)this).hasPermanentMenuKey()) { // панель присутствует } else { // панель отсутствует } What is the name of this panel? How to determine its height?

match_parentand this will solve your problem in a simple and clear way - pavlofff 10:49 pm