我有一个包含可变数量项目的列表视图。当几乎没有项目填满整个屏幕时,我希望页脚内的背景一直延伸到屏幕底部的imageview。我怎样才能做到这一点?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/savings_details_activity_layout"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ListView
android:id="@+id/default_list_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fadeScrollbars="true"
android:footerDividersEnabled="false"
android:headerDividersEnabled="false"
android:smoothScrollbar="true"
android:listSelector="@color/transparent" />
<ImageView
android:id="@+id/bottom_bar"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:src="@drawable/action_bar_background"
android:layout_alignParentBottom="true" />
</RelativeLayout>
列出项目
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="60dp"
android:paddingLeft="@dimen/margin_10dp"
android:paddingRight="@dimen/margin_10dp" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="@dimen/margin_10dp"
android:layout_marginRight="@dimen/margin_10dp"
android:layout_toLeftOf="@+id/list_item_value"
android:layout_toRightOf="@+id/header_image"
android:orientation="vertical">
<TextView
android:id="@+id/list_item_header"
style="@style/LargeTextWhiteWithShadow"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:ellipsize="end"
android:singleLine="true"
android:text="header" />
<TextView
android:id="@+id/list_item_sub_header"
style="@style/SmallTextLightBlueWithShadow"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:ellipsize="end"
android:singleLine="true"
android:text="sub header" />
</LinearLayout>
<TextView
android:id="@+id/list_item_value"
style="@style/LargeTextWhiteWithShadow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginRight="@dimen/margin_5dp"
android:layout_alignParentRight="true"
android:ellipsize="end"
android:singleLine="true"
android:text="value"/>
</RelativeLayout>
我有一个listview页脚,它只是一个图像。如果我拉伸listview页脚或列表中的最后一项,我不在乎。
答案 0 :(得分:1)
考虑使用layout_weight。你绝对应该能够使用权重。
更多信息http://developer.android.com/guide/topics/ui/layout-objects.html#linearlayout