OnItemCLickListener not working in listview

前端 未结 24 1936
悲&欢浪女
悲&欢浪女 2020-11-22 11:21

Activity class code:

conversationList = (ListView)findViewById(android.R.id.list);
ConversationArrayAdapter conversationArrayAdapter=new  Conver         


        
24条回答
  •  无人及你
    2020-11-22 11:50

    Even I was having the same problem, I am having checkbox, did the following to masker itemClickListener work,

    Added the following properties to the checkbox,

    android:focusable="false"
    android:focusableInTouchMode="false"
    android:clickable="false"
    

    and ItemClickListner started working.

    For detailed example you can go through the link,

    http://knowledge-cess.com/android-itemclicklistner-with-checkbox-or-radiobutton/

    Hope it helps Cheers!!

提交回复
热议问题