ListView onClickListener() does not work after adding RadioButton

后端 未结 2 866
耶瑟儿~
耶瑟儿~ 2020-12-31 08:10

I have a ListView (my_list.xml):

 

        
2条回答
  •  执念已碎
    2020-12-31 08:59

    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:

    
    

提交回复
热议问题