listview OnItemClick listener not work in fragment

后端 未结 4 873
予麋鹿
予麋鹿 2020-12-18 07:51

I used listview in fragment but I used list onItemClick listener not working. My code below and how to perfect solution.

 public class StoreProf         


        
4条回答
  •  -上瘾入骨i
    2020-12-18 08:33

    Add these properties in your custom xml file

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

    for your TextView and ImageButton.

提交回复
热议问题