My concern is how to fit image using android:scaleType=\"fitXY\" into image using Glide.
android:scaleType=\"fitXY\"
My ImageView is
ImageView
<
On Glide v4 you have to create a RequestOptions object, like this:
RequestOptions options = new RequestOptions(); options.centerCrop(); Glide.with(fragment) .load(url) .apply(options) .into(imageView);
More info