Hello njsokalski,
Welcome to our Microsoft Q&A platform!
I can do for settings things like size, font family, etc.
To change the fontsize of the item's text, try customing a textView style and consuming it for app:itemTextAppearance
property. Here is the sample code, you could refer to it.
<com.google.android.material.navigation.NavigationView
...
app:itemTextColor="#00ff00"
app:itemTextAppearance="@style/CustomTextStyle"/>
<!--styles.xml-->
<style name="CustomTextStyle" parent="android:Widget.TextView">
<item name="android:fontFamily">@font/sans-serif-smallcaps</item>
<item name="android:textSize">20sp</item>
</style>
Best Regards,
Jarvan Zhang
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.