Search code examples
androidandroid-viewpagerandroid-dialogfragment

Fitting DialogFragment to image size


I have a DialogFragment with a ViewPager that shows some pictures. The problem that there's a weird black stripe on top, and these pictures are deformed.

This is what I currently have, and as you can see, the picture doesn't really look good and there's a weird black stripe on top of the dialog.

enter image description here

This is how it should look, without black stripes and the picture fits the width of the screen.

enter image description here

How could I do this?

Thanks a lot in advance.


Solution

  • You could set the imageview android:scaleType="centerCrop" or perhaps just setting the height of the viewpager and images to wrap_content.