Skip to content

Instantly share code, notes, and snippets.

@valentincognito
Created June 22, 2018 02:16
Show Gist options
  • Save valentincognito/41a9910c5da42108171303c3b86dea13 to your computer and use it in GitHub Desktop.
Save valentincognito/41a9910c5da42108171303c3b86dea13 to your computer and use it in GitHub Desktop.
Get the screen dimension at runtime
DisplayMetrics displayMetrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(displayMetrics);
int height = displayMetrics.heightPixels;
int width = displayMetrics.widthPixels;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment