Android 手機衛士--事件傳遞&響應規則,android衛士--傳遞

來源:互聯網
上載者:User

Android 手機衛士--事件傳遞&響應規則,android衛士--傳遞

問題的提出:

本文地址:http://www.cnblogs.com/wuyudong/p/5911187.html ,轉載請註明源地址。

前面的文章實現了點擊SettingItemView條目的時候,相應的TextView文字改變,但是選擇自訂控制項SettingItemView中的checkbox的時候,則相應的TextView文字沒有改變

這裡需要瞭解事件傳遞過程

SettingActivity對應布局檔案的跟布局擷取點擊事件,此事件傳遞給SettingItemView

1.點擊在SettingItemView非CheckBox地區,事件就由SettingItemView去做響應
2.點擊在SettingItemView中CheckBox地區,事件就由SettingItemView傳遞給CheckBox,由CheckBox去做響應

CheckBox響應當前的點擊事件,則SettingItemView就不能再去響應此事件,不能調用onClick方法,去改變狀態

解決此問題的方案為:不讓checkBox響應點擊事件即可

        <!--          android:clickable="false"            android:focusable="false"            android:focusableInTouchMode="false"            讓當前的 CheckBox不能被點擊,即不能響應事件   -->        <CheckBox            android:id="@+id/cb_box"            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:layout_alignParentRight="true"            android:layout_centerVertical="true"            android:clickable="false"            android:focusable="false"            android:focusableInTouchMode="false" />

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.