原因是子View的点击事件抢占了listview的点击事件

解决办法:

1. 子View根布局 设置

android:descendantFocusability="blocksDescendants"

2.子View中 有Button 或者ImageButton之类的设置

android:focusable="false"

3.ListView布局 设置

android:splitMotionEvents="false"

原文地址:https://blog.csdn.net/a458339341/article/details/61925830?utm_source=copy

04-26 09:59