码迷,mamicode.com
首页 > 其他好文 > 详细

Gridview, ListView中的item含有checkbox,setOnItemClickListener方法失效的问题

时间:2016-11-29 23:13:56      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:apt   常见   api   继承   attr   htm   无法   listview   value   

 

1) 设置CheckBoxandroid:clickable="false"  通过外部View的点击改变其状态。

  1.     <CheckBox  
  2.         android:id="@+id/select_tag"  
  3.         android:layout_width="wrap_content"  
  4.         android:layout_height="wrap_content"  
  5.         android:layout_alignRight="@+id/album_item_image"  
  6.         android:layout_alignTop="@+id/album_item_image"  
  7.         android:layout_margin="5dp"  
  8.         android:button="@null"  
  9.         android:clickable="false"  
  10.         android:background="@drawable/picture_selector" /> 

2)外面的View设置 android:descendantFocusability="blocksDescendants"

  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  2.     android:id="@+id/picture_view"  
  3.     android:layout_width="match_parent"  
  4.     android:layout_height="match_parent"  
  5.     android:descendantFocusability="blocksDescendants"  
  6.     android:layout_centerInParent="true">  
  7.   
  8.     <ImageView  
  9.         android:id="@+id/album_item_image"  
  10.         android:layout_width="match_parent"  
  11.         android:layout_height="match_parent"  
  12.         android:scaleType="centerCrop" />  
  13.   
  14.     <CheckBox  
  15.         android:id="@+id/select_tag"  
  16.         android:layout_width="wrap_content"  
  17.         android:layout_height="wrap_content"  
  18.         android:layout_alignRight="@+id/album_item_image"  
  19.         android:layout_alignTop="@+id/album_item_image"  
  20.         android:layout_margin="5dp"  
  21.         android:button="@null"  
  22.         android:clickable="false"  
  23.         android:background="@drawable/picture_selector" />  
  24. </RelativeLayout>

 

    开发中很常见的一个问题,项目中的listview不仅仅是简单的文字,常常需要自己定义listview,自己的Adapter去继承BaseAdapter,在adapter中按照需求进行编写,问题就出现了,可能会发生点击每一个item的时候没有反应,无法获取的焦点。原因多半是由于在你自己定义的Item中存在诸如ImageButton,Button,CheckBox等子控件(也可以说是Button或者Checkable的子类控件),此时这些子控件会将焦点获取到,所以常常当点击item时变化的是子控件,item本身的点击没有响应。

    这时候就可以使用descendantFocusability来解决啦,API描述如下:

android:descendantFocusability

Defines the relationship between the ViewGroup and its descendants when looking for a View to take focus.

Must be one of the following constant values.

技术分享

 

该属性是当一个为view获取焦点时,定义viewGroup和其子控件两者之间的关系。

属性的值有三种:

        beforeDescendants:viewgroup会优先其子类控件而获取到焦点

        afterDescendants:viewgroup只有当其子类控件不需要获取焦点时才获取焦点

        blocksDescendants:viewgroup会覆盖子类控件而直接获得焦点

 

通常我们用到的是第三种,即在Item布局的根布局加上android:descendantFocusability=”blocksDescendants”的属性就好了,至此listview点击的灵异事件告一段落。心得:遇到不会不懂的地方除了网上查询资料之外,也可以多多去尝试每种属性的作用,多阅读官方文档(我始终觉得还是读原文的比翻译的理解的会更好)。

Gridview, ListView中的item含有checkbox,setOnItemClickListener方法失效的问题

标签:apt   常见   api   继承   attr   htm   无法   listview   value   

原文地址:http://www.cnblogs.com/tonny-li/p/6115146.html

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