I have a ListView
(my_list.xml):
add this code to your RadioButton XML code:
android:focusable="false"
android:focusableInTouchMode="false"
Another keyword to solve this problem is TouchDelegate.
Edit:
https://stackoverflow.com/a/5528945/1285331
Set the following properties to your RadioButton:
android:focusable="false"
android:focusableInTouchMode="false"
and in your OnItemClickListener, you need to set the radio button's checked flag by code.
Set you ListView as below:
<ListView
android:id="@+id/my_list"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />