如何通过按比例缩放来裁剪我的ImageView?

时间:2017-08-02 15:44:32

标签: java android xml imageview

我尝试了几件事,但我的图片总是显示为按比例缩小的版本。我希望它占据它可用的全宽度,并在高度方向上渗透图像边界。

            <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:id="@+id/messageImageLayout"
                android:layout_width="match_parent"
                android:layout_height="150dp"
                android:gravity="center_horizontal|center_vertical">

                <ImageView
                    android:id="@+id/messageImage"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:scaleType="fitXY"
                    android:layout_gravity="center_horizontal"
                    android:layout_marginBottom="5dp"
                    android:layout_marginTop="10dp"
                    android:adjustViewBounds="true"
                    android:src="@drawable/test"
                    android:visibility="gone" />

            </LinearLayout>

现在的样子:

enter image description here

我想要的是什么:

enter image description here

1 个答案:

答案 0 :(得分:2)

android:scaleType="fitXY"替换为android:scaleType="centerCrop"而不是