我需要一个屏幕,屏幕底部放置一个图像。图像本身是固定的(来自资源)。它非常大,缩小到每个设备的宽度。我尝试使用简单的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
保持在屏幕的底部而不管设备的大小?
答案 0 :(得分:4)
以xml android:adjustViewBounds="true"