欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

Android自定义ListView单击事件失效的解决方法

时间:2021-01-06 11:21:53|栏目:Android代码|点击:

因为自带的listView不能满足项目需求,通过实现自己的Adapter去继承ArrayAdapter 来实现自定义ListView的Item项目。

出现点击ListView的每一项都不会执行setOnItemClickListener 里面的onItemClick 方法。

原因是item里面存在一些子控件,默认点击获取的焦点跑去子控件去了,点击失效。

解决办法:

在item的根目录加入android:descendantFocusability="blocksDescendants"

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical"
  android:descendantFocusability="blocksDescendants">

  <LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" android:padding="5dp">


    <ImageView
      android:id="@+id/imageView"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      app:srcCompat="@drawable/message_oc" />

    <TextView
      android:id="@+id/textTitle"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="title"
      android:textSize="25dp"
      android:layout_marginLeft="15dp"/>

    <TextView
      android:id="@+id/textDate"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:gravity="right"
      android:text="date" />
  </LinearLayout>

  <LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">

    <TextView
      android:id="@+id/textMessage"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:ems="10"
      android:inputType="textMultiLine"
      android:text="message"
      android:textSize="20dp"/>
  </LinearLayout>

</LinearLayout>

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

属性的值有三种:

  •         beforeDescendants:viewgroup会优先其子类控件而获取到焦点
  •         afterDescendants:viewgroup只有当其子类控件不需要获取焦点时才获取焦点
  •         blocksDescendants:viewgroup会覆盖子类控件而直接获得焦点

我们使用blocksDescendants 属性来覆盖子类控件,而直接获取焦点。

上一篇:Android 删除指定包名的App实例代码

栏    目:Android代码

下一篇:Android中屏幕密度和图片大小的关系详解

本文标题:Android自定义ListView单击事件失效的解决方法

本文地址:http://www.codeinn.net/misctech/41250.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有