溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Android怎么開發(fā)Button實(shí)現(xiàn)selector選擇器

發(fā)布時(shí)間:2022-06-13 11:49:41 來(lái)源:億速云 閱讀:166 作者:zzz 欄目:開發(fā)技術(shù)

這篇文章主要介紹了Android怎么開發(fā)Button實(shí)現(xiàn)selector選擇器的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡(jiǎn)單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇Android怎么開發(fā)Button實(shí)現(xiàn)selector選擇器文章都會(huì)有所收獲,下面我們一起來(lái)看看吧。

實(shí)踐過程

先按創(chuàng)建兩個(gè)shape背景
btn_selector_shape1.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <!-- 圓角 -->
    <corners android:radius="5dp" />
    <!--填充顏色-->
    <solid android:color="#00ff00" />
</shape>

btn_selector_shape2.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <!--圓角-->
    <corners android:radius="5dp" />
    <!--填充顏色-->
    <solid android:color="#0000ff" />
</shape>

接著我們?cè)凇緍es-drawable】右鍵創(chuàng)建個(gè)Drawable Resource File ,彈出框?qū)懳募麆?chuàng)建文件,設(shè)置默認(rèn)【Root element】為selector。

btn_selector0.xml

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

布局中引用

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/white"
    tools:context=".TextActivity">
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="160dp"
        android:background="@drawable/btn_selector0"
        android:text="按下變色"
        android:textColor="@color/white" />
</RelativeLayout>

我們運(yùn)行下看看

Android怎么開發(fā)Button實(shí)現(xiàn)selector選擇器

但是

我們回憶下,剛才是不是創(chuàng)建了三個(gè)文件,按鈕少的情況下還好,自定義的按鈕一多,這么多文件非常不容易管理,所以我們要用另外一種寫法,將所有內(nèi)容放到一個(gè)文件中。

我們?cè)趧偛诺腷tn.selector0.xml中修改:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <!--這是第一種方式,利用drwable引用文件-->
    <!--<item android:drawable="@drawable/btn_selector_shape1" android:state_pressed="true" />-->
    <!--<item android:drawable="@drawable/btn_selector_shape2" android:state_pressed="false" />-->
    <!--第二種方式如下-->
    <item android:state_pressed="false">
        <shape android:shape="rectangle">
            <!-- 圓角 -->
            <corners android:radius="5dp" />
            <!--填充顏色為白色-->
            <solid android:color="#0000ff" />
        </shape>
    </item>
    <!--單擊時(shí)是一個(gè)帶圓角,白色背景,綠色邊框的矩形-->
    <item android:state_pressed="true">
        <shape android:shape="rectangle">
            <!--圓角-->
            <corners android:radius="5dp" />
            <!--填充顏色為白色-->
            <solid android:color="#00ff00" />
        </shape>
    </item>
</selector>

我們運(yùn)行起來(lái)看看,哎,效果很正確啊

Selector的屬性不止這兩個(gè)哦:

  • state_focused 布爾值,是否獲得焦點(diǎn)

  • state_window_focused 布爾值,是否獲得窗口焦點(diǎn)

  • state_enabled 布爾值,控件是否可用

  • state_checkable 布爾值,控件可否被勾選

  • state_checked 布爾值,控件是否被勾選

  • state_selected 布爾值,控件是否被選擇,針對(duì)有滾輪的情況

  • state_pressed 布爾值,控件是否被按下

  • state_active 布爾值,控件是否處于活動(dòng)狀態(tài)

  • state_singlestate_firststate_middle很少使用,知道就行

關(guān)于“Android怎么開發(fā)Button實(shí)現(xiàn)selector選擇器”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“Android怎么開發(fā)Button實(shí)現(xiàn)selector選擇器”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI