0
NavigationViewでアイテムの色を変更したいと思います。しかし、タイトルがある各項目を変更したいだけです。例えば、これは私のnav_menuNavigationViewで色を変更する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>
の一部である私は、グレー色のグループのグループとタイトル2のタイトル1を載せていきたいと思います。 おかげ
このリンクを確認することができます[こちら](http://stackoverflow.com/questions/30594025/how-to-customize-item-background-and-item-text-color-inside-navigationview)はサンプルコードです –