两种办法
1.设置里面控件的focusable为false
android:layout_width="match_parent"
android:layout_height="match_parent">
2.设置整个item根布局的descendantFocusability为blocksDescendants
android:layout_width="match_parent"
android:descendantFocusability="blocksDescendants"
android:layout_height="match_parent">
这样item里的button和item的点击事件互不冲突了