android – 在ImageView中拉伸图像

前端之家收集整理的这篇文章主要介绍了android – 在ImageView中拉伸图像前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个 ImageView,其高度和宽度设置为“fill_parent”,相对布局具有相同的值set.Set Image scaleType =“fitXY”

这里的XML布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">


<ImageView
    android:id="@+id/imageView1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:scaleType="fitXY"
    android:src="@drawable/background_image" />


</RelativeLayout>

适合宽度和高度,但图像被拉伸.

解决方法

这就是适合XX应该做的事情.如果您不想裁剪图像,可以尝试使用centerInside;如果要填充所有空间(并裁剪图像),可以尝试使用centerCrop.

Here是一个很好的列表,其中有一些示例可以更好地理解所有scaleTypes.

原文链接:https://www.f2er.com/android/317296.html

猜你在找的Android相关文章