Expandable Listview inside Navigation Drawer not reach bottom of system bar

旧街凉风 提交于 2019-12-06 01:52:54

Set background color to ExpandableListView as well

<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"/>

I think your expandable list is match_parent but it has no background and only 4 items.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!