0

我在尝试将方形图像(大约 315dp x 315dp)缩放到应该填充宽度并具有大约 200dp 高度的图像时遇到了一些麻烦。

基本上,我要做的就是在将图像缩放为更矩形的形状时正确地保留图像的纵横比。有任何想法吗?这是我尝试过的:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center" >

    <ImageView
        android:id="@+id/image"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_gravity="center"
        android:adjustViewBounds="true"
        android:scaleType="centerCrop" />

</LinearLayout>
4

1 回答 1

0
It should be like that
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center" >
    <FrameLayout  
        android:layout_width="match_parent"
        android:layout_height="200dp">
    <ImageView
        android:id="@+id/image"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_gravity="center"
        android:adjustViewBounds="true"
        android:scaleType="fitXY" />
    </FrameLayout>

</LinearLayout>

FrameLayout 用于修复图像的大小,如果您需要更多帮助,请阅读 Android UI 手册

于 2012-12-23T08:46:09.307 回答