Created
August 17, 2011 18:08
-
-
Save codeswimmer/1152194 to your computer and use it in GitHub Desktop.
Android: Determine Title Bar Height
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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