當咱們使用listView嵌套button或者其它clickable控件時會出現listView的onitemClick事件不響應的問題。咱們只須要在item的xml文件中的根佈局中加上一句: android:descendantFocusability="blocksDescendants" 或在Button的佈局中添加 android:focusable="false" 屏蔽item中搶奪focus的控件權限便可解決問題。android