OnItemClickListener doesn't work with ListView item containing button

后端 未结 8 1780
广开言路
广开言路 2020-12-01 17:33

I have ListView with custom Adapter which supplies View to ListView in this way:

   public View getView(i         


        
8条回答
  •  渐次进展
    2020-12-01 18:17

    Add following line to your listView

    android:choiceMode="singleChoice"
    

    or make sure to set following lines to your layout text fields

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

提交回复
热议问题