Private Sub ListView1_Exit(ByVal Cancel As MSForms.ReturnBoolean)
For Each itm In ListView1.ListItems
itm.Selected = False
Next itm
End Sub
'设置下面属性
ListView1.HideSelection = True
lz你的listitem里面是不是有checkbox?因为checkbox点击事件的优先级高于item,所以你的item不能点击,在checkbox里面添加android:focusable="false"试试。