Supose我有一个垂直布局,顶部有一个按钮,中间有一个列表视图,底部有一个按钮:
------
BUTTON
LISTVIEW
LISTVIEW
LISTVIEW
------
我想让整个布局可滚动,以便在向下滚动时能够看到完整列表:
------
LISTVIEW
LISTVIEW
LISTVIEW
BUTTON
------
答案 0 :(得分:2)
我想我找到了,这里有一个解决方案,而不使用ScrollView
(实际上不需要):
<LinearLayout android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Button android:id="@+id/btn1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"/>
<ListView android:id="@android:id/list1"
android:layout_height="0dip"
android:layout_width="match_parent"
android:layout_weight="1" />
<ListView android:id="@android:id/list2"
android:layout_height="0dip"
android:layout_width="match_parent"
android:layout_weight="1" />
<ListView android:id="@android:id/list3"
android:layout_height="0dip"
android:layout_width="match_parent"
android:layout_weight="1" />
<Button android:id="@+id/btn2"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
答案 1 :(得分:0)
您可以在ListView的标题中添加一个按钮,在ListView的底部添加一个按钮
答案 2 :(得分:0)
将一个Button添加为标题,将一个Button作为页脚添加到ListView。
为ListView编写自定义适配器,返回按钮视图为0,最后位置为getView()。
答案 3 :(得分:0)
我不确定您是否也希望能够滚动按钮,具体取决于您可以尝试两种方式。首先,当列表视图滚动时按钮不会改变它们的位置。在这种情况下,您的xml应如下所示:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<Button
android:id="@+id/top_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true" />
<ListView
android:id="@+id/my_listview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/bottom_button"
android:layout_below="@+id/top_button" />
<Button
android:id="@+id/bottom_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" />
</RelativeLayout>
第二个选项是当您希望滚动列表视图时滚动这两个按钮时。要实现此目的,您应将Button
添加到列表视图中作为页眉和页脚:
mListView.addHeader(myFirstButton);
mListView.addFooter(mySecondButton);
在两种情况下,这应该适合你。
答案 4 :(得分:0)
您应该使用android:layout_height="wrap_content"