Android開發點點滴滴——一些基礎的但有用的知識(2)

來源:互聯網
上載者:User

標籤:android   des   style   blog   http   color   

1.onItemLongClick和onItemClick事件截取

當需要同時獲得一個listview的條目長按事件(onItemLongClick)和點擊事件(onItemClick)時,只需要在onItemLongClick事件觸發函數中,return true即可。


2.自訂CheckBox樣式

在布局檔案中,增加一個屬性 android:button,話不多說,直接上代碼

  <CheckBox                        android:id="@+id/xxx"                        android:layout_width="wrap_content"                        android:layout_height="wrap_content"                        android:layout_marginRight="5dp"                        android:button="@drawable/checkbox_selector"                        android:text="xxx"                        />
checkbox_selector.xml

<?xml version="1.0" encoding="utf-8"?><selector xmlns:android="http://schemas.android.com/apk/res/android" >    <item android:state_checked="true"                android:drawable="@drawable/checkbox_selected_selector"/>    <item android:state_checked="false"        android:drawable="@drawable/checkbox_blank_selector"/></selector>
checkbox_selected_selector.xml

<?xml version="1.0" encoding="utf-8"?><selector xmlns:android="http://schemas.android.com/apk/res/android" >    <item android:state_pressed="true"                android:drawable="@drawable/checkbox_ya"/>    <item android:state_pressed="false"        android:drawable="@drawable/checkbox_yz"/></selector>
checkbox_blank_selector.xml

<?xml version="1.0" encoding="utf-8"?><selector xmlns:android="http://schemas.android.com/apk/res/android" >    <item android:state_pressed="true"                android:drawable="@drawable/checkbox_wa"/>    <item android:state_pressed="false"        android:drawable="@drawable/checkbox_wz"/></selector>


3.ListView的Item中有button或checkBox時焦點問題

當自訂ListView時,每個Item上除了文字以為還有Button組件或其他也可以點擊的組件時(一般就是button和checkbox),當點擊這個item時可能沒有反應,這是因為焦點被button組件獲得了,那麼點擊item時,其實是相當於點擊了button組件。

解決方案:在item的根布局中加入 

android:descendantFocusability="blocksDescendants"


還有方法就是在button組件中加入

android:focusable="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.