Skip to content

Instantly share code, notes, and snippets.

@akuafif
Last active December 10, 2015 22:16
Show Gist options
  • Save akuafif/dc2c2053ef5cb5925a1d to your computer and use it in GitHub Desktop.
Save akuafif/dc2c2053ef5cb5925a1d to your computer and use it in GitHub Desktop.
[Java/Android] Get Screen Width and Height (DisplayMetrics)
DisplayMetrics metrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(metrics);
// With Picasso
Picasso .with(this)
.load(pictureURI)
.resize(metrics.widthPixels, metrics.heightPixels)
.centerCrop()
.into(imageView);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment