如何为导航抽屉的每个项目添加框架或分隔线?

时间:2019-06-15 09:22:32

标签: android layout styles navigation-drawer frame

我想自定义导航抽屉项,例如this

我的导航视图是这样的;

<android.support.design.widget.NavigationView
            android:id="@+id/nav_view"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="start"
            android:background="@color/colorPrimary"
            android:fitsSystemWindows="true"
            app:headerLayout="@layout/nav_header_main"
            app:itemIconTint="@color/colorWhite"
            app:itemTextColor="@color/colorWhite"
            app:menu="@menu/activity_main_drawer" />

项目类似于this

我只是想知道如何添加框架或分隔线?我需要为导航抽屉设置自定义布局还是什么?如果您需要更多信息,请告诉我。 请帮我谢谢..

1 个答案:

答案 0 :(得分:0)

创建一个自定义边框可绘制对象。

 <android.support.design.widget.NavigationView
    android:id="@+id/nav_view"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    **app:itemBackground="@drawable/customer_border"**
    android:layout_gravity="start">

</android.support.design.widget.NavigationView>

内部导航菜单