沿RelativeLayout底部对齐未知高度图像

时间:2012-12-27 20:14:01

标签: android image layout

我需要一个屏幕,屏幕底部放置一个图像。图像本身是固定的(来自资源)。它非常大,缩小到每个设备的宽度。我尝试使用简单的layout_alignParentBottom,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/LayoutLoading"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@color/startup" >

    <ImageView
        android:id="@+id/ImageView01"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:scaleType="fitCenter"
        android:src="@drawable/loading" />

</RelativeLayout>

是的,这不起作用。除非我指定图像的确切高度(代替wrap_content),否则ImageView未在底部对齐。这很可能是因为实际图像高于屏幕尺寸,并且只有在缩小到屏幕宽度后才变得“更短”。

所以,问题是如何让ImageView保持在屏幕的底部而不管设备的大小?

1 个答案:

答案 0 :(得分:4)

以xml android:adjustViewBounds="true"

添加到您的imageview