Skip to content

Instantly share code, notes, and snippets.

@codeswimmer
Created August 17, 2011 18:08
Show Gist options
  • Select an option

  • Save codeswimmer/1152194 to your computer and use it in GitHub Desktop.

Select an option

Save codeswimmer/1152194 to your computer and use it in GitHub Desktop.
Android: Determine Title Bar Height
private int determineTitleBarHeight() {
Window window = activity.getWindow();
Rect windowRect = new Rect();
window.getDecorView().getWindowVisibleDisplayFrame(windowRect);
return windowRect.top;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment