导航抽屉中的自定义列表视图

时间:2015-09-21 16:34:59

标签: android android-listview navigation-drawer android-navigation-drawer android-navigationview

如何在导航抽屉中自定义ListView,例如in the 2nd picture here。{/ p>

1 个答案:

答案 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>