listview OnItemClick listener not work in fragment

后端 未结 4 875
予麋鹿
予麋鹿 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条回答
  •  粉色の甜心
    2020-12-18 08:38

    Add this

    android:descendantFocusability="blocksDescendants"
    

    to the RelativeLayout in listItem.xml.

    I guess ImageButton takes focus when you click on list row.

    Edit:

    Consider using a ViewHolder pattern

    Reference:

    http://developer.android.com/training/improving-layouts/smooth-scrolling.html

提交回复
热议问题