Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

how to get width android

Display display = getWindowManager().getDefaultDisplay();
Point size = new Point();
display.getSize(size);
int width = size.x;
int height = size.y;
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #width #android
ADD COMMENT
Topic
Name
3+5 =