how to change navigation drawer text color in android code example
Example 1: android navigation drawer menu item color
Add this line to navigationview in xml
app:itemTextColor="your color"
Example 2: change activity main drawer items text color android
<android.support.design.widget.NavigationView
app:menu="@menu/drawer_view" <!-- add this line for items' text color -->
app:itemTextColor="@color/colorWhite"> <!-- add this line for items' icons color -->