I have a ListView that uses a customized adapter, but I can\'t click on the ListView Item ..
Activity for list view ..
package com.adham
I had the same issue with a ListView which contained only a RadioButton:
I used the RadioButton in each row to display the default item selection, to make ListView handle clicks I had to use:
radioButton.setFocusableInTouchMode(false);
radioButton.setFocusable(false);
or in the XML-file:
android:focusable="false"
android:focusableInTouchMode="false"
So it is a focus related issue... With the above modifiers the focus is directed to ListView on click.