I want to add style the Menu Items inside Navigation Drawer but I am unable to do so. I have looked up for some answers but couldn't done it.
Can anyone help, I would be grateful.
I am using the following theme Theme.AppCompat.Light.DarkActionBar
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<group android:id="@+id/group1" android:checkableBehavior="single">
<item android:title="Book Now!">
<menu>
<item android:title="item 1"
android:id="@+id/item1"
android:icon="@drawable/ic_menu_gallery"/>
<item android:title="item 2"
android:id="@+id/item2"
android:icon="@drawable/ic_menu_gallery"/>
<item android:title="item 3"
android:id="@+id/item3"
android:icon="@drawable/ic_menu_gallery"/>
<item android:title="item 4"
android:id="@+id/item4"
android:icon="@drawable/ic_menu_gallery"/>
<item android:title="item 5"
android:id="@+id/item5"
android:icon="@drawable/ic_menu_gallery"/>
</menu>
</item>
</group>
</menu>
Step 1: Create Selector for change font color
Step 2: Apply selector to navigation view by app:itemTextColor property
Try to use new Android Design pattern navigation drawer which is very smooth and easy to manage. Check below link :
http://www.android4devs.com/2014/12/how-to-make-material-design-navigation-drawer.html