Created
August 9, 2017 09:04
-
-
Save kebbbnnn/61a9090175f4dafe92f4467d9476c3c9 to your computer and use it in GitHub Desktop.
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
DisplayMetrics displayMetrics = new DisplayMetrics(); | |
getWindowManager().getDefaultDisplay().getMetrics(displayMetrics); | |
int height = displayMetrics.heightPixels; | |
int height75Percent = height - (height * 0.75f); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment