Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save kuraydev/0050b38f19461ed61b2f to your computer and use it in GitHub Desktop.

Select an option

Save kuraydev/0050b38f19461ed61b2f to your computer and use it in GitHub Desktop.
In RecyclerView, using setImageResource, sometimes does not fit full scale an image, so this is the solution ! :) Raw
holder.imageView.setImageResource(R.drawable.deadpool);
holder.imageView.setScaleType(ImageView.ScaleType.FIT_XY);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment