我有一个带有按钮的ListView。当我用比屏幕大小允许的内容更多的内容填充列表,以便滚动条出现时,Button不是可滚动区域的一部分。也就是说,按钮消失了。如何使Button部分成为可滚动区域?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ListView android:id="@+id/ListView" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_above="@+id/AddButton" />
<Button android:id="@+id/AddButton" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="@string/add_title" />
</RelativeLayout>
答案 0 :(得分:2)
将其作为footer添加到ListView。
答案 1 :(得分:2)
使用addFooterView()添加。这样,当ListView仍然滚动时,它将始终显示在屏幕的底部。