I know that it is not recommended to channge NavigationView item height.
But I need to decrease it a littl in order all items fit without scrolling.
I tried to create a style:
<style name="NavigationDrawerStyle">
<item name="android:textSize">16sp</item>
<item name="android:listPreferredItemHeight">30dp</item>
<item name="android:listPreferredItemHeightLarge">30dp</item>
<item name="android:listPreferredItemHeightSmall">30dp</item>
</style>
And in layout add:
app:theme="@style/NavigationDrawerStyle"
But it changes only font size and doesn't affect item height.