TextView上面有两个ListView

时间:2014-02-23 22:23:24

标签: android xml listview layout textview

我想在我的两个ListView上面有一个TextView。这是我的xml代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:baselineAligned="false"
    android:orientation="horizontal"
    android:layout_height="match_parent" 
    android:layout_width="match_parent">


<TextView 
    android:id="@+id/statusBar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Test" />

<LinearLayout
    android:layout_weight="1" 
    android:layout_height="match_parent" 
    android:layout_width="match_parent"
    >

    <ListView
        android:id="@+id/leftView" 
        android:layout_height="match_parent" 
        android:layout_width="match_parent">
    </ListView>

</LinearLayout>


<LinearLayout 
    android:layout_weight="1" 
    android:layout_height="match_parent" 
    android:layout_width="match_parent">

    <ListView
        android:id="@+id/rightView" 
        android:layout_height="match_parent" 
        android:layout_width="match_parent">
    </ListView>

</LinearLayout>

</LinearLayout>

在添加TextView之前,一切都运行良好。现在只有TextView可见,并且不再显示两个ListView。

编辑:我希望ListViews仍然彼此相邻(一个左边,另一个右边)。

1 个答案:

答案 0 :(得分:2)

LinearLayout的方向更改为垂直

android:orientation="vertical"

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


<TextView 
android:id="@+id/statusBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Test" />



<LinearLayout 
android:orientation="horizontal"
android:layout_height="match_parent" 
android:layout_width="match_parent">

<ListView
    android:layout_weight="1" 
    android:id="@+id/rightView" 
    android:layout_height="match_parent" 
    android:layout_width="0dip">
</ListView>

 <ListView
     android:layout_weight="1" 
    android:id="@+id/leftView" 
    android:layout_height="match_parent" 
    android:layout_width="0dip">
</ListView>

</LinearLayout>

</LinearLayout>