Skip to content

Instantly share code, notes, and snippets.

@ikew0ng
Created September 29, 2013 09:58
Show Gist options
  • Save ikew0ng/6751104 to your computer and use it in GitHub Desktop.
Save ikew0ng/6751104 to your computer and use it in GitHub Desktop.
获得ActionBar高度
/**
* Get actionbar height
*/
public static int getActionBarHeight(Context context) {
TypedValue typedValue = new TypedValue();
if (context.getTheme().resolveAttribute(android.R.attr.actionBarSize, typedValue, true)) {
return typedValue.complexToDimensionPixelSize(typedValue.data, context.getResources()
.getDisplayMetrics());
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment