如何在android.support.design.widget.NavigationView中设置相同颜色的图标?

时间:2015-12-22 06:11:02

标签: android menu navigation-drawer android-navigationview

这是我为使用android.support.design.widget.NavigationView`获取导航抽屉而编写的代码

<include layout="@layout/app_bar_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

<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:fitsSystemWindows="true"
    android:elevation="16dp"
    app:menu="@menu/activity_main_drawer" />

` 我用来充气的菜单是this,其中图标的颜色是蓝色。

但是在向导航视图充气后,它会带有不同的颜色this

请帮我解决。

1 个答案:

答案 0 :(得分:1)

首先使用更新的支持库版本“v7:23.1.1”

 <android.support.design.widget.NavigationView
    android:id="@+id/navigation_view"
    android:layout_height="match_parent"
    android:layout_width="wrap_content"
    android:textAlignment="2"
    android:fitsSystemWindows="true"
    android:layout_gravity="start"
    android:textAppearance="?attr/menu"
    app:headerLayout="@layout/header"
    android:elevation="10dp"
    app:itemIconTint="#FF00E5FF"
    app:menu="@menu/drawer_view"
    />

itemIconTint设置图标的颜色,如果您不想设置颜色,请使用

app:itemIconTint =“#00000000”