Issue
The black navigation bar on the bottom of the screen is not easily removable in Android. It has been part of Android since 3.0 as a replacement for hardware buttons. Here is a picture:
src="https://i.stack.imgur.com/DhCin.png" alt="System Bar">
How can I get the size of the width and the height of this UI element in pixels?
Solution
Try below code:
Resources resources = context.getResources();
int resourceId = resources.getIdentifier("navigation_bar_height", "dimen", "android");
if (resourceId > 0) {
return resources.getDimensionPixelSize(resourceId);
}
return 0;
Answered By - Sanket
Answer Checked By - Candace Johnson (JavaFixing Volunteer)