Skip to content

Instantly share code, notes, and snippets.

@mstefanko
Created March 28, 2011 13:15
Show Gist options
  • Save mstefanko/890424 to your computer and use it in GitHub Desktop.
Save mstefanko/890424 to your computer and use it in GitHub Desktop.
calculates android screen size
Display display;
display = ((WindowManager)getSystemService(WINDOW_SERVICE)).getDefaultDisplay();
int height = display.getHeight();
int width = display.getWidth();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment