我需要一个屏幕,屏幕底部有一个图像。图像本身是固定的(来自资源)。它非常大,并且按比例缩小到每个设备的宽度。我尝试使用 simple 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
屏幕保持在屏幕底部,而不管设备的大小如何?