1. android:focusable=false
2.在根节点root添加android:descendantFocusability=”blocksDescendants”
原因是在listview的touch源码判断如果有子控件并且子控件有获取焦点的能力 listview就不对事件做处理。
1. android:focusable=false
2.在根节点root添加android:descendantFocusability=”blocksDescendants”
原因是在listview的touch源码判断如果有子控件并且子控件有获取焦点的能力 listview就不对事件做处理。