Android 自訂ListView單擊事件失效

來源:互聯網
上載者:User

標籤:lis   span   roi   type   app   控制項   android   sim   ima   

   因為內建的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 自訂ListView單擊事件失效

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.