ListPreferredItemHeightSmall not working on api 16

I use the code below and it works fine on api 23, but not on another device on api 16 (Jelly Bean).

Style:

<style name="NavigationViewStyle"> <item name="android:textSize">20sp</item> <!-- menu item text size--> <item name="android:listPreferredItemHeightSmall">40dp</item><!-- menu item height--> </style> 

And then apply this style to NavigationView with app:theme

 <android.support.design.widget.NavigationView ... ... app:theme="@style/NavigationViewStyle" ... ... </android.support.design.widget.NavigationView> 
+1
android android-styles navigation-drawer navigationview
source share
1 answer

You should use "android:listPreferredItemHeightSmall" without the "android" nameSpace for older versions.

+6
source share

All Articles