Android 中ListView点击Item无响应问题的解决办法

 更新时间:2016年12月20日 09:20:28   作者:huaxaY  
如果listitem里面包括button或者checkbox等控件,默认情况下listitem会失去焦点,导致无法响应item的事件,怎么解决呢?下面小编给大家分享下listview点击item无响应的解决办法

如果listitem里面包括button或者checkbox等控件,默认情况下listitem会失去焦点,导致无法响应item的事件,最常用的解决办法是在listitem的布局文件中设置descendantFocusability属性。

item的布局文件:

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout 
 xmlns:android="http://schemas.android.com/apk/res/android" 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:paddingTop="10dp" 
 android:paddingBottom="10dp" 
 android:paddingLeft="5dp" 
 android:paddingRight="5dp" 
 android:descendantFocusability="blocksDescendants"><!--添加这个属性--> 
 <CheckBox 
 android:id="@+id/history_item_checkbt" 
 android:layout_height="30dp" 
 android:layout_width="wrap_content" 
 android:layout_centerVertical="true" 
 android:layout_alignParentLeft="true" 
 android:checked="false" 
 > 
 </CheckBox> 
 <ImageView 
 android:id="@+id/history_item_image" 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:layout_centerVertical="true" 
 android:layout_toRightOf="@id/history_item_checkbt" 
 android:background="@drawable/item_icon"> 
 </ImageView> 
 <Button 
 android:id="@+id/history_item_edit_bt" 
 android:layout_alignParentRight="true" 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:layout_centerVertical="true" 
 android:text="编辑" 
 android:textColor="#ffffff" 
 android:textSize="14sp" 
 android:background="@drawable/button_bg"> 
 </Button> 
 <TextView 
 android:id="@+id/history_item_time_tv" 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:layout_centerVertical="true" 
 android:textColor="#565C5D" 
 android:textSize="14sp" 
 android:text="10-01 10:20" 
 android:layout_marginRight="5dp" 
 android:layout_toLeftOf="@id/history_item_edit_bt"> 
 </TextView> 
 <TextView 
 android:id="@+id/history_item_title_tv" 
 android:layout_height="wrap_content" 
 android:layout_width="fill_parent" 
 android:layout_centerVertical="true" 
 android:textColor="#565C5D" 
 android:textSize="14sp" 
 android:text="xxxxxxxxXXXXXXXXXXXXXXXX" 
 android:ellipsize="end" 
 android:maxLines="1" 
 android:layout_toRightOf="@id/history_item_image" 
 android:layout_toLeftOf="@id/history_item_time_tv" 
 android:layout_marginLeft="3dp"> 
 </TextView> 
</RelativeLayout> 

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会覆盖子类控件而直接获得焦点

  我们使用的是第三个。

相关文章

  • Android接入支付宝实现支付功能实例

    Android接入支付宝实现支付功能实例

    这篇文章主要介绍了Android接入支付宝实现支付功能实例,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-06-06
  • Android RecyclerView线性布局详解(1)

    Android RecyclerView线性布局详解(1)

    这篇文章主要为大家详细介绍了Android RecyclerView线性布局的相关资料,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-02-02
  • Android实现扫描二维码功能

    Android实现扫描二维码功能

    这篇文章主要为大家详细介绍了Android实现扫描二维码功能,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-02-02
  • Android OKHttp3拦截器的使用方法

    Android OKHttp3拦截器的使用方法

    本篇文章主要介绍了Android OKHttp3拦截器的使用方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-03-03
  • Android屏蔽软键盘自动弹出的解决方案

    Android屏蔽软键盘自动弹出的解决方案

    在编辑框输入内容时会弹出软键盘,而手机屏幕区域有限往往会遮住输入界面,怎么实现这种效果呢?下面小编给大家分享了Android屏蔽软键盘自动弹出的解决方案,需要的朋友参考下吧
    2017-01-01
  • Android 高仿QQ图片选择器

    Android 高仿QQ图片选择器

    这篇文章主要介绍了Android 高仿QQ图片选择器的实现思路,本文介绍的非常详细,具有参考借鉴价值,感兴趣的朋友一起看看吧
    2016-09-09
  • Android中的全局变量与局部变量使用小结

    Android中的全局变量与局部变量使用小结

    这篇文章主要介绍了Android中的全局变量与局部变量使用小结,全局变量顾名思义就是在整个的类中或者可在多个函数中调用的变量,也称为外部变量,局部变量则是特定过程或函数中可以访问的变量,需要的朋友可以参考下
    2015-01-01
  • Android实现app分享文件到微信功能

    Android实现app分享文件到微信功能

    这篇文章主要为大家详细介绍了Android实现app分享文件到微信功能,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2021-05-05
  • APK包名修改 请问如何修改APK包名

    APK包名修改 请问如何修改APK包名

    今天,想在android手机上安装两个相同的应用,本以为可以安装不同版本的,试了几次,均相互覆盖了,于是,只能设法修改apk所对应的包名(package name),需要了解的朋友可以参考下
    2012-12-12
  • Android自定义view利用PathEffect实现动态效果

    Android自定义view利用PathEffect实现动态效果

    这篇文章主要为大家详细介绍了Android自定义view利用PathEffect实现动态效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-05-05

最新评论