I have Implemented a custom ListView by extending LinearLayout for every row. Every row has a small thumbnail, a text and a check box.
ListView
LinearLayout
check box
Set these properties:
android:focusable="false" android:focusableInTouchMode="false"
for your all UI elements in your list_item.xml file.
if this is not resolved in your adapter set:
v.imageView.setFocusable(false); v.imageView.setFocusableInTouchMode(false);