andriod item内checked的setOnClickListener事件和setOnItemClickListener事件冲突解决办法

1.最外层添加属性
android:descendantFocusability="blocksDescendants"

2.按钮上添加三个属性:
android:focusable="false"
android:checked="false"
android:focusableInTouchMode="false"

你可能感兴趣的:(andriod)