Android list item single size

Does anyone know the standard size of one list item in android, in dpi or in pixels?

Or maybe there is no standard?

+5
source share
2 answers

Android defines the "preferred size" using

android:minHeight="?android:attr/listPreferredItemHeight" 

Documented here .

+10
source

There is a recommended size for the list item you should use: 48dip . This is recommended in the new Android Development Guides.

+4
source

All Articles