如何将方形图像视图正确缩放为矩形图像视图?

时间:2012-12-23 08:22:45

标签: android

我在尝试将方形图像(大约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>

1 个答案:

答案 0 :(得分: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手册