向导航抽屉添加两个列表

时间:2014-02-14 07:58:43

标签: android xml

我有一个像这样添加的导航抽屉:

    DrawerLayout myDrawLayout = (DrawerLayout) findViewById(R.id.drawer_layout);

    newList = new ArrayList<String>();
    newList.add("Test1");
            newList.add("Test2:);
    viewLists = (ListView) findViewById(R.id.left_drawer_2);
    viewLists.setAdapter(new ArrayAdapter<String>(this,
            R.layout.drawer_left, newList));

我的xml main.xml定义如下。

 <?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
class="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout 
 android:id="@+id/myBack"
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:orientation="vertical" >

 <RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <Button
        android:id="@+id/find"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:text="Search" />

    <EditText
        android:id="@+id/location"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_toLeftOf="@id/find"
        android:hint="Type a location or an address"
        android:inputType="text" />
 </RelativeLayout>
 <fragment
    android:id="@+id/map"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_weight="20"
    class="com.google.android.gms.maps.SupportMapFragment" />


 </LinearLayout>
 <LinearLayout
    android:id="@+id/drawer_Linearlayout"
    android:layout_width="240dp"
    android:layout_height="match_parent"
    android:layout_gravity="left"
    android:orientation="vertical" >

   <ListView
        android:id="@+id/left_drawer"
        android:layout_width="240dp"
        android:layout_height="match_parent"
        android:layout_gravity="left"
        android:choiceMode="singleChoice"
        android:divider="@android:color/transparent"
        android:dividerHeight="0dp"
        android:background="#111"/>

    <ListView
        android:id="@+id/left_drawer_2"
        android:layout_width="240dp"
        android:layout_height="wrap_content"
        android:layout_gravity="left"
        android:background="#111"
        android:choiceMode="singleChoice"
        android:divider="@android:color/transparent"
        android:dividerHeight="0dp" />
</LinearLayout>

</android.support.v4.widget.DrawerLayout>

正如另一个StackOverflow线程中所提到的,我将两个ListView分组为LinearLayout,因为DrawerLayout但没有填充第二个ListView。

如果有人能告诉我我做错了什么,我会很感激。

1 个答案:

答案 0 :(得分:0)

您的第一个列表视图@+id/left_drawer height是match_parent。请将它设为wrap_content并检查。