Reputation: 73
Does anyone know the standard size of a single listview item in android, in dpi or pixels?
Or maybe there isn't a standard?
Upvotes: 5
Views: 4228
Reputation: 6545
Android defines a "preferred size" using,
android:minHeight="?android:attr/listPreferredItemHeight"
Documented here as well.
Upvotes: 10
Reputation: 14517
there is a strongly recommended list view item size, which you should use: 48dip. This is recommended by the new Android Design Guidelines.
Upvotes: 4