Guest User

Untitled

a guest
Jan 19th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. Display display = getWindowManager().getDefaultDisplay();
  2. Point size = new Point();
  3.  
  4. try {
  5. display.getSize(size);
  6. width = size.x;
  7. height = size.y;
  8. } catch (NoSuchMethodError e) {
  9. width = display.getWidth();
  10. height = display.getHeight();
  11. }
Add Comment
Please, Sign In to add comment