我有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"
什麼想法?
我認爲數字2是更好的解決方案。只要我不能合併它們或將它們放在ExpandableListView中,因爲每個都有它自己的信息。 – Alamri 2013-05-02 17:30:04