Created
December 19, 2016 20:09
-
-
Save kostovtd/4eff0a1381cf31b3d465e5dbc72c3c2f 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
Display display = getWindowManager().getDefaultDisplay(); | |
View view = findViewById(R.id.YOUR_VIEW_ID); | |
view.measure(display.getWidth(), display.getHeight()); | |
view.getMeasuredWidth(); // view width | |
view.getMeasuredHeight(); //view height |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment