码迷,mamicode.com
首页 > 移动开发 > 详细

android listview和button,ImageButton等有事件的控件的总结

时间:2014-05-25 23:24:31      阅读:393      评论:0      收藏:0      [点我收藏+]

标签:des   android   style   class   blog   c   

1
2
3
4
public ImageButton(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    setFocusable(true);
}

 

  在listview中(或者ExpandableListview),item的view会被进行特殊的处理,通过convertview可以减少解析xml文件,提高效率。但是如果你自己解析一次,然后用变量保存,那么只有最后一个view才能正常显示,说明了每一个item的view都是不同的实例,这样就注定了每一个view事实上是可以添加按钮之类的单独响应事件的。

 

  有这么几种方法避免Button或者ImageButton抢夺整个item的焦点

  

  1. Button设置focusable=false,ImageButton要通过代码设置ib.setFocusable(false),这是因为源码的bug
1
2
3
4
public ImageButton(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    setFocusable(true);
}

 

  2. 在item的layout的根viewgroup中设置android:descendantFocusability="blocksDescendants",这个属性也会使其他的view能响应焦点

 

  但是在实际开发过程中,我发现如果是ExpandableLisview的BaseExpandableListAdapter中的isChildSelectable方法覆写之后得返回true,否则也不能响应ItemClick

1
2
3
4
@Override
public boolean isChildSelectable(int groupPosition, int childPosition) {
    return true;
}

 

 

android listview和button,ImageButton等有事件的控件的总结,布布扣,bubuko.com

android listview和button,ImageButton等有事件的控件的总结

标签:des   android   style   class   blog   c   

原文地址:http://www.cnblogs.com/Mr-Nobody/p/3750210.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!