This is the code i have written to get the navigation drawer using 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" />
` and the menu i used to inflate is this where the color of the icon is blue in color.
but after inflating to the NavigationView It comes with different color as this
Please help me solving it.