在ImageView Android中使用Glide调整图像大小

我对android中图像的处理有很多疑问,我希望看看你是否可以解决它们.

此时我的图像占用320 dp高,match_parent宽度约占屏幕的60%.
这个载有Glide的图像,1080中的一些图像,我个人.

我试图制作centroCrop和fitXY,但总是使图像变形.我所知道的第一种类型会切割图像,但第二种类型适合大小,但它会使图像变高或变宽.

有没有办法,用Glide插入并看到它是什么?
我可以在ImageView和Glide中使用哪些属性?

<ImageView
        android:id="@+id/img"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:nestedScrollingEnabled="false"
        app:layout_collapseMode="parallax"
        android:scaleType="fitXY"
        app:layout_scrollFlags="scroll|enterAlways" />

解决方法:

必须通过最新版本的Glide 4.x中的RequestOptions访问覆盖.您可以通过apply()添加RequestOptions

Glide
    .with(context)
    .load(path)
    .apply(new RequestOptions().override(600, 200))
    .into(imageViewResizeCenterCrop);
上一篇:4 django系列之HTML通过form标签来同时提交表单内容与上传文件


下一篇:Python Tkinter – 在窗口中均匀调整窗口小部件的大小