How to create a custom list in Android?

How to design a Listview of this type in which selctor should only be focused on list not the list icon

+3
source share
1 answer

Many online tutorials for this:

In this particular case, I assume that next to the icon is RelativeLayoutwith three TextViewsand using a custom background. This drawable will determine different background colors using a selector depending on the state android:state_selectedand / or android:state_pressed.

+5
source

All Articles