2013-05-02 62 views
0

我有2個ListView和每一個從網站databse獲取信息.... 一切都很好,但我想要的是顯示第一個列表視圖然後在它下面第二個列表視圖沒有設置一個固定的高度..就像用戶應該scrool到第一個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"什麼想法?

回答

0

之前我有同樣的問題。這裏有四種解決方案:

1.爲每個列表視圖提供android:layout_weight = "1",以便他們可以將屏幕減半。

2.在tabview中輸入它們。

3.將兩個列表合併爲一個listview。

4.使用ExpandableListView

+0

我認爲數字2是更好的解決方案。只要我不能合併它們或將它們放在ExpandableListView中,因爲每個都有它自己的信息。 – Alamri 2013-05-02 17:30:04

0

你爲什麼不使用ExpandableListView

Example 1

Example 2

Example 3

+0

因爲每個列表視圖有它自己的信息。 – Alamri 2013-05-02 17:20:38

+0

沒問題,它會處理這個。 – 2013-05-03 05:45:42

+0

你是對的,非常感謝,但我認爲我會去tabview後,因爲我認爲它可以給一個不錯的界面.. – Alamri 2013-05-03 11:21:33

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> 

+0

好吧,我仍然需要滾動它們,並且這兩個listview都顯示在同一屏幕上。 – Alamri 2013-05-02 17:27:49

相關問題