我正在尝试在导航抽屉中实现'Expandable Listview',如下图所示。共有4组,每组有很多孩子。我的问题是,可扩展列表视图的高度是“短”。如何使用带有4组数据的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。
答案 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个项目。