How to Fit ImageView in RecyclerView

Hey,
This code segment provides you to fit your imageVilew full scale in RecyclerView.
   holder.imageView.setImageResource(R.drawable.deadpool);
            holder.imageView.setScaleType(ImageView.ScaleType.FIT_XY);

So simple to use this code segment with setImageResource in “static” segment.
If you have any question, ask me :)

How to extract filename from Uri?

Now, we can extract filename with and without extension :) You will convert your bitmap to uri and get the real path of your file. Now w...