Android selector背景選取器的使用詳解

來源:互聯網
上載者:User

在開發應用中,很多情況下要設計listview或button控制項的背景,下面總結一下android的selector的用法:
1.在drawable中配置Android的selector。
將如下的XML檔案儲存成你自己命名的.xml檔案(比如item_bg.xml),並將該檔案放置在drawable檔案中,在系統使用時根據ListView中的清單項目的狀態來使用相應的背景圖片。

複製代碼 代碼如下:<?xml version="1.0" encoding="utf-8" ?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- 預設時的背景圖片-->
<item android:drawable="@drawable/pic1" />
<!-- 沒有焦點時的背景圖片-->
<item android:state_window_focused="false" android:drawable="@drawable/pic1" />
<!-- 非觸摸模式下獲得焦點並單擊時的背景圖片-->
<item android:state_focused="true" android:state_pressed="true"
android:drawable="@drawable/pic2" />
<!-- 觸摸模式下單擊時的背景圖片-->
<item android:state_focused="false" android:state_pressed="true"
android:drawable="@drawable/pic3" />
<!--選中時的圖片背景-->
<item android:state_selected="true" android:drawable="@drawable/pic4" />
<!--獲得焦點時的圖片背景-->
<item android:state_focused="true" android:drawable="@drawable/pic5" />
</selector>

2.使用上面的設定檔:
第一種方法是在listview設定檔中配置,代碼如下:android:listSelector="@drawable/item_bg"
第二種方法是在listview的item中添加屬性,代碼如下:android:background=“@drawable/item_bg"
第三種方法是在java代碼中設定,代碼如下:Drawable drawable =getResources().getDrawable(R.drawable.item_bg);
ListView.setSelector(drawable);
上面的設定方法顯示效果有時候為黑,所以需要在設定檔上加上如下代碼:android:cacheColorHint="@android:color/transparent" 使其背景是透明的。
同樣,Button也有一些背景效果,如下為屬性解釋:
android:state_selected是設定選中時的效果
android:state_focused是設定獲得焦點的效果
android:state_pressed是設定點擊的效果
android:state_enabled是設定是否響應事件
下面是一個selector用來設定button中的文字狀態,代碼如下:複製代碼 代碼如下:<?xmlversion="1.0" encoding="utf-8"?>
<selectorxmlns:android="http://schemas.android.com/apk/res/android">
<itemandroid:state_selected="true" android:color="#FFF" />
<itemandroid:state_focused="true" android:color="#FFF" />
<itemandroid:state_pressed="true" android:color="#FFF" />
<itemandroid:color="#000" />
</selector>

相關文章

聯繫我們

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