Skip to content

Instantly share code, notes, and snippets.

@DuyTang1112
Forked from hamakn/height.java
Created March 17, 2017 05:23
Show Gist options
  • Save DuyTang1112/2b53c0da442db4217b2695894e6742e7 to your computer and use it in GitHub Desktop.
Save DuyTang1112/2b53c0da442db4217b2695894e6742e7 to your computer and use it in GitHub Desktop.
Android: Get height of status, action, navigation bar (pixels)
// status bar height
int statusBarHeight = 0;
int resourceId = getResources().getIdentifier("status_bar_height", "dimen", "android");
if (resourceId > 0) {
statusBarHeight = getResources().getDimensionPixelSize(resourceId);
}
// action bar height
int actionBarHeight = 0;
final TypedArray styledAttributes = getActivity().getTheme().obtainStyledAttributes(
new int[] { android.R.attr.actionBarSize }
);
actionBarHeight = (int) styledAttributes.getDimension(0, 0);
styledAttributes.recycle();
// navigation bar height
int navigationBarHeight = 0;
int resourceId = getResources().getIdentifier("navigation_bar_height", "dimen", "android");
if (resourceId > 0) {
navigationBarHeight = resources.getDimensionPixelSize(resourceId);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment