如何在导航抽屉中自定义ListView
,例如in the 2nd picture here。{/ p>
答案 0 :(得分:0)
您可以使用Android设计支持库的 NavigationView (请参阅:Android Developers Blog)。
使用NavigationView,您不必再使用ListView。您只需使用menu.xml
填充抽屉菜单。
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<!-- your content layout -->
<android.support.design.widget.NavigationView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/drawer_header"
app:menu="@menu/drawer"/>
</android.support.v4.widget.DrawerLayout>