Android - 如何按宽度限制图像视图大小并保持比例

时间:2014-01-01 21:46:05

标签: android android-layout

这是我的问题:我正在开发一个RelativeLayout视图,其中包含一个imageview:

<RelativeLayout
    android:layout_width = "match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:background="@drawable/drawable_card_bg">

    ...

    <ImageView
        android:id="@+id/photo"
        android:layout_width="fill_parent" <-- ?
        android:layout_height="wrap_content" <-- ?
        android:scaleType="centerCrop"
        android:src="@drawable/test_img"
        />
</RelativeLayout>

我希望图片视图可以填充RelativeLayout的宽度并保持比例,但上面的代码不起作用。我想知道如何更改代码才能实现此目的?

1 个答案:

答案 0 :(得分:1)

RelativeLayout的宽度更改为fill-parent