Android中ListView的item点击没有反应的解决方法

来源:爱站网时间:2019-12-17编辑:网友分享
在开发过程中,经常需要使用listview来继承baseadapter,这可以使用需求进行编写,感兴趣的话就随爱站技术频道小编一起来了解Android中ListView的item点击没有反应的解决方法吧!

在开发过程中,经常需要使用listview来继承baseadapter,这可以使用需求进行编写,感兴趣的话就随爱站技术频道小编一起来了解Android中ListView的item点击没有反应的解决方法吧!

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

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

属性的值有三种:

 beforeDescendants:viewgroup会优先其子类控件而获取到焦点
 afterDescendants:viewgroup只有当其子类控件不需要获取焦点时才获取焦点
 blocksDescendants:viewgroup会覆盖子类控件而直接获得焦点
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="50dp"
 android:orientation="horizontal"
 android:descendantFocusability="blocksDescendants"><!--添加这个属性--> 
 <ImageView
  android:id="@+id/img_head"
  android:layout_width="50dp"
  android:layout_height="50dp"
  android:src="@drawable/dog2"
  android:scaleType="centerCrop"
  android:layout_marginRight="5dp"/>
 <TextView
  android:layout_width="0dp"
  android:layout_weight="1"
  android:layout_height="wrap_content"
  android:layout_gravity="center_vertical"
  android:id="@+id/tv_name"/>
 <TextView
  android:layout_width="0dp"
  android:layout_weight="1"
  android:layout_height="wrap_content"
  android:layout_gravity="center_vertical"
  android:id="@+id/tv_age"/>
 <Button
  android:id="@+id/btn_delete"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_gravity="right"
  android:text="删除"
  android:textColor="#ffffff"
  android:background="#ff0000"
  />
</LinearLayout>

效果图:

这里写图片描述

上文便是爱站技术频道小编为了各位朋友整理的Android中ListView的item点击没有反应的解决方法,期待上文的内容可以为各位朋友带来帮助。

上一篇:详解AsyncTask类实例介绍

下一篇:Android Studio常用快捷键功能说明

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载