Created
August 11, 2017 03:45
-
-
Save jungletian/07920594cbf97a6f4a18f41afad0848d to your computer and use it in GitHub Desktop.
the height of status bar
This file contains 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
public static int getStatusBarHeight(Context context) { | |
int statusBarHeight = 0; | |
int resourceId = context.getResources().getIdentifier("status_bar_height", "dimen", "android"); | |
if (resourceId > 0) { | |
statusBarHeight = context.getResources().getDimensionPixelSize(resourceId); | |
} | |
return statusBarHeight; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment