I want to change the color of the items on NavigationView. But, only wanna change each item which there are title. For example this is a part of my nav_menu
<?xml version="1.0" encoding="utf-8"?>
<group android:checkableBehavior="single">
<item
android:id="@+id/configuration_section"
android:title="Title 1 of the group">
<menu>
<item
android:id="@+id/itemOfGroup1"
android:icon="@drawable/ic_map"
android:title="@string/string1"/>
</menu>
</item>
<item android:title="Title 2 of the group">
<menu>
<item
android:id="@+id/itemOfGroup1"
android:icon="@drawable/ic_action"
android:tint="@color/blue"
android:title="@string/string2"/>
</menu>
</item>
I want to put title 1 of the group and title 2 of the group in Grey color. Thanks