ExpandableListview中 解决ImageButton冲突的问题。



http://stackoverflow.com/questions/11818278/android-expandable-list-view-doesnt-have-reaction-to-click-it-doesnt-expan



只需要 在代码中 调用setFocusable(false) 方法, 只要在XML中设置 false 为什么不行,这个需要继续调查。

ibDeleteRcipe.setFocusable(false);
 
 
第二种 解决方式:在Item布局中 添加android:descendantFocusability="blocksDescendants" 
见 http://mylifewithandroid.blogspot.com/2011/08/focus-problems-with-list-rows-and.html


你可能感兴趣的:(ExpandableListview中 解决ImageButton冲突的问题。)