0

我有 2 个 ListView,每个都从网站数据库中获取信息....一切都很好,但我想要的是显示第一个 listview 然后在它下面显示第二个 listview 而没有设置固定高度.. 就像用户应该滚动到第一个列表视图的末尾,然后显示第二个列表视图而不显示滚动条。这是我所做的:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <ListView
        android:id="@+id/firstlist"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >
    </ListView>

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >

    <ListView
        android:id="@+id/secondlist"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
         >
     </ListView>
    </RelativeLayout>

</LinearLayout>

但是即使我继续滚动屏幕也没有显示两者,只显示一个列表视图(第一个)......除非我给他们固定高度,例如android:layout_height="180dp"有什么想法吗?

4

3 回答 3

0

你能试试这个吗?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<ListView
    android:id="@+id/listView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1" >
</ListView>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="5dp"
    android:background="#C0C0C0" >
</LinearLayout>

<ListView
    android:id="@+id/listView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1" >
</ListView>

于 2013-05-02T06:38:32.173 回答
0

你为什么不使用ExpandableListView

示例 1

示例 2

示例 3

于 2013-05-02T06:23:27.567 回答
0

我以前也有同样的问题。这里有四种解决方案:

1.android:layout_weight = "1"给每个列表视图,以便他们可以将屏幕减半。

2.将它们放在标签视图中。

3.将两个列表合并为一个列表视图。

4.使用ExpandableListView

于 2013-05-02T06:23:41.670 回答