Skip to content

Instantly share code, notes, and snippets.

@hamakn
Created April 6, 2015 02:41
Show Gist options
  • Star 88 You must be signed in to star a gist
  • Fork 20 You must be signed in to fork a gist
  • Save hamakn/8939eb68a920a6d7a498 to your computer and use it in GitHub Desktop.
Save hamakn/8939eb68a920a6d7a498 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);
}
@arab-ware
Copy link

How you found these identifiers? Plz if you can share.

You can read the android open source project , it contains the java & xml files of the whole system

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment