android-不缩放的ImageView

我有一个显示行的ListView

这是xml:

 ...
  <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="5dp"
        android:layout_weight="1"
        android:background="@color/white"
        android:orientation="vertical" >

        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight=".30">

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:background="@drawable/face"
                android:scaleType="centerCrop" />
        </FrameLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight=".70"
            android:background="@color/white"
            android:padding="4dp" >

            // Other views...

        </LinearLayout>
    </LinearLayout>
    …

并得到以下结果:

这是原始图像

需要的是没有缩放的图像,就像这样:

我正在使用android:ScaleType =“ centerCrop”我在android上测试过:AdjustViewBounds =“ true”和许多其他参数,但从未成功

有想法吗?

提前致谢

解决方法:

将您的图片设置为android:src而不是android:background.

<ImageView
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:src="@drawable/face"
                android:scaleType="centerCrop" />

所有视图均可拍摄背景图像

ImageView的src具有其他功能:

>不同的scaling types
> AdjustViewBounds用于设置边界以匹配图像尺寸
>一些转换,例如alpha设置

您可能会在the docs中找到更多内容.

上一篇:【网络流】费用流(基于Capacity Scaling)


下一篇:android-将图像转换为位图并减小其大小