Skip to content

Instantly share code, notes, and snippets.

@davidllorca
Created August 15, 2015 12:25
Show Gist options
  • Save davidllorca/f76ade98958fd3cc0702 to your computer and use it in GitHub Desktop.
Save davidllorca/f76ade98958fd3cc0702 to your computer and use it in GitHub Desktop.
Get display size in Android
Display display = ((WindowManager) getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay();
int width = display.getWidth();
int height = display.getHeight();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment