轉(zhuǎn)自Keegan小鋼
shape只能定義單一的形狀,而實(shí)際應(yīng)用中舞箍,很多地方比如按鈕、Tab皆疹、ListItem等都是不同狀態(tài)有不同的展示形狀疏橄。舉個(gè)例子,一個(gè)按鈕的背景略就,默認(rèn)時(shí)是一個(gè)形狀捎迫,按下時(shí)是一個(gè)形狀,不可操作時(shí)又是另一個(gè)形狀表牢。有時(shí)候窄绒,不同狀態(tài)下改變的不只是背景、圖片等崔兴,文字顏色也會(huì)相應(yīng)改變彰导。而要處理這些不同狀態(tài)下展示什么的問題,就要用selector來(lái)實(shí)現(xiàn)了敲茄。
selector標(biāo)簽位谋,可以添加一個(gè)或多個(gè)item子標(biāo)簽,而相應(yīng)的狀態(tài)是在item標(biāo)簽中定義的堰燎。
定義的xml文件可以作為兩種資源使用:drawable和color掏父。作為drawable資源使用時(shí),一般和shape一樣放于drawable目錄下秆剪。作為color資源使用時(shí)赊淑,則放于color目錄下。
那么仅讽,看看都有哪些狀態(tài)可以設(shè)置呢:
- android:state_enabled: 設(shè)置觸摸或點(diǎn)擊事件是否可用狀態(tài)膏燃,一般只在false時(shí)設(shè)置該屬性,表示不可用狀態(tài)
- android:state_pressed: 設(shè)置是否按壓狀態(tài)何什,一般在true時(shí)設(shè)置該屬性组哩,表示已按壓狀態(tài),默認(rèn)為false
- android:state_selected: 設(shè)置是否選中狀態(tài),true表示已選中伶贰,false表示未選中
- android:state_checked: 設(shè)置是否勾選狀態(tài)蛛砰,主要用于CheckBox和RadioButton,true表示已被勾選黍衙,false表示未被勾選
- android:state_checkable: 設(shè)置勾選是否可用狀態(tài)泥畅,類似state_enabled,只是state_enabled會(huì)影響觸摸或點(diǎn)擊事件琅翻,而state_checkable影響勾選事件
- android:state_focused: 設(shè)置是否獲得焦點(diǎn)狀態(tài)位仁,true表示獲得焦點(diǎn),默認(rèn)為false方椎,表示未獲得焦點(diǎn)
- android:state_window_focused: 設(shè)置當(dāng)前窗口是否獲得焦點(diǎn)狀態(tài)聂抢,true表示獲得焦點(diǎn),false表示未獲得焦點(diǎn)棠众,例如拉下通知欄或彈出對(duì)話框時(shí)琳疏,當(dāng)前界面就會(huì)失去焦點(diǎn);另外闸拿,ListView的ListItem獲得焦點(diǎn)時(shí)也會(huì)觸發(fā)true狀態(tài)空盼,可以理解為當(dāng)前窗口就是ListItem本身
- android:state_activated: 設(shè)置是否被激活狀態(tài),true表示被激活新荤,false表示未激活揽趾,API Level 11及以上才支持,可通過代碼調(diào)用控件的setActivated(boolean)方法設(shè)置是否激活該控件
- android:state_hovered: 設(shè)置是否鼠標(biāo)在上面滑動(dòng)的狀態(tài)苛骨,true表示鼠標(biāo)在上面滑動(dòng)篱瞎,默認(rèn)為false,API Level 14及以上才支持
接下來(lái)智袭,看看示例代碼奔缠,以下是bg_btn_selector.xml的代碼掠抬,用于按鈕的背景:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- 當(dāng)前窗口失去焦點(diǎn)時(shí) -->
<item android:drawable="@drawable/bg_btn_lost_window_focused"
android:state_window_focused="false" />
<!-- 不可用時(shí) -->
<item android:drawable="@drawable/bg_btn_disable" android:state_enabled="false" />
<!-- 按壓時(shí) -->
<item android:drawable="@drawable/bg_btn_pressed" android:state_pressed="true" />
<!-- 被選中時(shí) -->
<item android:drawable="@drawable/bg_btn_selected" android:state_selected="true" />
<!-- 被激活時(shí) -->
<item android:drawable="@drawable/bg_btn_activated" android:state_activated="true" />
<!-- 默認(rèn)時(shí) -->
<item android:drawable="@drawable/bg_btn_normal" />
</selector>
而下面則是text_btn_selector.xml的代碼吼野,用于按鈕的文本顏色:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- 當(dāng)前窗口失去焦點(diǎn)時(shí) -->
<item android:color="@android:color/black" android:state_window_focused="false" />
<!-- 不可用時(shí) -->
<item android:color="@android:color/background_light" android:state_enabled="false" />
<!-- 按壓時(shí) -->
<item android:color="@android:color/holo_blue_light" android:state_pressed="true" />
<!-- 被選中時(shí) -->
<item android:color="@android:color/holo_green_dark" android:state_selected="true" />
<!-- 被激活時(shí) -->
<item android:color="@android:color/holo_green_light" android:state_activated="true" />
<!-- 默認(rèn)時(shí) -->
<item android:color="@android:color/white" />
</selector>
最后,則是在控件中的引用:
<Button
android:id="@+id/btn_default"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:background="@drawable/bg_btn_selector"
android:text="默認(rèn)按鈕"
android:textColor="@color/text_btn_selector" />
那么两波,在使用過程中瞳步,有幾點(diǎn)還是需要注意和了解的:
- selector作為drawable資源時(shí),item指定android:drawable屬性腰奋,并放于drawable目錄下单起;
- selector作為color資源時(shí),item指定android:color屬性劣坊,并放于color目錄下嘀倒;
- color資源也可以放于drawable目錄,引用時(shí)則用@drawable來(lái)引用,但不推薦這么做测蘑,drawable資源和color資源最好還是分開灌危;
- android:drawable屬性除了引用@drawable資源,也可以引用@color顏色值碳胳;但android:color只能引用@color勇蝙;
- item是從上往下匹配的,如果匹配到一個(gè)item那它就將采用這個(gè)item挨约,而不是采用最佳匹配的規(guī)則味混;所以設(shè)置默認(rèn)的狀態(tài),一定要寫在最后诫惭,如果寫在前面翁锡,則后面所有的item都不會(huì)起作用了。
另外贝攒,selector標(biāo)簽下有兩個(gè)比較有用的屬性要說一下盗誊,添加了下面兩個(gè)屬性之后,則會(huì)在狀態(tài)改變時(shí)出現(xiàn)淡入淡出效果隘弊,但必須在API Level 11及以上才支持:
- android:enterFadeDuration 狀態(tài)改變時(shí)哈踱,新狀態(tài)展示時(shí)的淡入時(shí)間,以毫秒為單位
- android:exitFadeDuration 狀態(tài)改變時(shí)梨熙,舊狀態(tài)消失時(shí)的淡出時(shí)間开镣,以毫秒為單位
最后,關(guān)于ListView的ListItem樣式咽扇,有兩種設(shè)置方式邪财,一種是在ListView標(biāo)簽里設(shè)置android:listSelector屬性,另一種是在ListItem的布局layout里設(shè)置android:background质欲。但是树埠,這兩種設(shè)置的結(jié)果卻有著不同。同時(shí)嘶伟,使用ListView時(shí)也有些其他需要注意的地方怎憋,總結(jié)如下:
- android:listSelector設(shè)置的ListItem默認(rèn)背景是透明的,不管你在selector里怎么設(shè)置都無(wú)法改變它的背景九昧。所以绊袋,如果想改ListItem的默認(rèn)背景,只能通過第二種方式铸鹰,在ListItem的布局layout里設(shè)置android:background癌别。
- 當(dāng)觸摸點(diǎn)擊ListItem時(shí),第一種設(shè)置方式下蹋笼,state_pressed展姐、state_focused和state_window_focused設(shè)為true時(shí)都會(huì)觸發(fā)躁垛,而第二種設(shè)置方式下,只有state_pressed會(huì)觸發(fā)圾笨。
- 當(dāng)ListItem里有Button或CheckBox之類的控件時(shí)缤苫,會(huì)搶占ListItem本身的焦點(diǎn),導(dǎo)致ListItem本身的觸摸點(diǎn)擊事件會(huì)無(wú)效墅拭。那么活玲,要解決此問題,有三種解決方案:
- 將Button或CheckBox換成TextView或ImageView之類的控件
- 設(shè)置Button或CheckBox之類的控件設(shè)置focusable屬性false
- 設(shè)置ListItem的根布局屬性android:descendantFocusability="blocksDescendants"
第三種是最方便谍婉,也是推薦的方式舒憾,它會(huì)將ListItem根布局下的所有子控件都設(shè)置為不能獲取焦點(diǎn)。android:descendantFocusability屬性的值有三種穗熬,其中镀迂,ViewGroup是指設(shè)置該屬性的View,本例中就是ListItem的根布局:
- beforeDescendants:ViewGroup會(huì)優(yōu)先其子類控件而獲取到焦點(diǎn)
- afterDescendants:ViewGroup只有當(dāng)其子類控件不需要獲取焦點(diǎn)時(shí)才獲取焦點(diǎn)
- blocksDescendants:ViewGroup會(huì)覆蓋子類控件而直接獲得焦點(diǎn)