Android 自定义ListView单击事件失效
生活随笔
收集整理的這篇文章主要介紹了
Android 自定义ListView单击事件失效
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
? 因為自帶的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"><LinearLayoutandroid:layout_width="fill_parent"android:layout_height="wrap_content" android:padding="5dp"><ImageViewandroid:id="@+id/imageView"android:layout_width="wrap_content"android:layout_height="wrap_content"app:srcCompat="@drawable/message_oc" /><TextViewandroid:id="@+id/textTitle"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="title"android:textSize="25dp"android:layout_marginLeft="15dp"/><TextViewandroid:id="@+id/textDate"android:layout_width="match_parent"android:layout_height="wrap_content"android:gravity="right"android:text="date" /></LinearLayout><LinearLayoutandroid:layout_width="fill_parent"android:layout_height="wrap_content"><TextViewandroid: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 屬性來覆蓋子類控件,而直接獲取焦點。
?
轉載于:https://www.cnblogs.com/tangchun/p/9367144.html
總結
以上是生活随笔為你收集整理的Android 自定义ListView单击事件失效的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: android measure的时候报空
- 下一篇: AHOI2009 中国象棋