假如listview的item中有Button,ImageButton,CheckBox等会强制获取焦点的view 此时,listview的item无法获取焦点,从而无法被点击 解决方法:给item的根布局增加以下属性 android:descendantFocusability="blocksDescendants" 设置之后,Button获取焦点,item中其他控件也可以获取焦点