1

假设我有一个垂直方向的布局,顶部有一个按钮,中间有一个列表视图,底部有一个按钮:

------
BUTTON
LISTVIEW
LISTVIEW
LISTVIEW
------

我想让整个布局可滚动,以便在向下滚动时能够看到完整列表:

------
LISTVIEW
LISTVIEW
LISTVIEW
BUTTON
------
4

5 回答 5

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>
于 2013-07-31T08:08:05.550 回答
0
  1. 向 ListView 添加一个 Button 作为页眉和一个 Button 作为页脚。

  2. 为 ListView 编写一个自定义的 Adapter,返回 0 处的 Button 视图和 getView() 中的最后一个位置。

于 2013-07-31T08:04:58.477 回答
0

您可以在 ListView 的标题中添加一个按钮,在 ListView 的底部添加一个按钮

于 2013-07-31T08:01:58.250 回答
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>

第二个选项是当您希望这两个按钮在列表视图滚动时滚动。为此,您应该将Buttons 作为页眉和页脚添加到列表视图中:

mListView.addHeader(myFirstButton);
mListView.addFooter(mySecondButton);

在这两种情况下,这都应该为您解决问题。

于 2013-07-31T08:06:46.617 回答
0

你应该使用android:layout_height="wrap_content"

于 2013-07-31T08:20:52.620 回答