Can't click on items in ListView with custom adapter

前端 未结 5 2202
梦谈多话
梦谈多话 2020-12-17 09:42

I am trying to write an application which takes items from a database and populates rows within a ListView. I can\'t click on the items after tapping on the rows and the dpa

5条回答
  •  再見小時候
    2020-12-17 10:26

    Usually this happens because the items in your listview are in focus. Try adding

    android:descendantFocusability="blocksDescendants"
    

    in your custom listview row

    
    

提交回复
热议问题