导航抽屉内的可扩展Listview未到达系统栏的底部

时间:2014-01-03 07:23:10

标签: android expandablelistview navigation-drawer

我正在尝试在导航抽屉中实现'Expandable Listview',如下图所示。共有4组,每组有很多孩子。我的问题是,可扩展列表视图的高度是“”。如何使用带有4组数据的listview,使这个高度到达系统栏的底部,就像普通的导航抽屉一样?

expandable listview

这是我的main_activity.xml:

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<FrameLayout
    android:id="@+id/content_frame"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
</FrameLayout>

<ExpandableListView
    android:id="@+id/left_drawer"
    android:layout_width="240dp"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:choiceMode="singleChoice"
    android:divider="@android:color/black"
    android:dividerHeight="1dp" 
    android:indicatorRight="430dp"/>

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

非常感谢任何帮助。 环境:Windows 7,ADT,Genymotion。

1 个答案:

答案 0 :(得分:1)

将背景颜色设置为ExpandableListView

<ExpandableListView
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:choiceMode="singleChoice"
android:divider="@android:color/black"
android:dividerHeight="1dp" 
android:indicatorRight="430dp"
android:background="#fff"/>

我认为您的可扩展列表是match_parent,但它没有背景,只有4个项目。