android get screen width and height

79

how to get width android -

Display display = getWindowManager().getDefaultDisplay();
Point size = new Point();
display.getSize(size);
int width = size.x;
int height = size.y;

Comments

Submit
0 Comments