Have you tried the app: itemTextAppearance? for example use this
app:itemTextAppearance="@style/NavDrawerTextStyle"="@style/NavDrawerTextStyle"
After you create, edit your style.xml and declare your style:
<style name="NavDrawerTextStyle"> <item name="android:textSize">20dp</item> <item name="android:textAlignment">something</item> </style>
source share