1.在imageButton的xml,属性里添加如下属性:
android:focusable="false"
android:focusableInTouchMode="false"
2.在listview item的xml中添加如下属性:
android:descendantFocusability="blocksDescendants"
这样Listview就可以相应点击事件了,要添加ImageButton的Listener需要在Listview的 adapter的Getview中添加