最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Android Button按鈕點(diǎn)擊背景和文字變化操作

 更新時間:2020年08月22日 08:35:24   作者:yuxuehandong  
這篇文章主要介紹了Android Button按鈕點(diǎn)擊背景和文字變化操作,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧

Android 原生的按鈕點(diǎn)擊狀態(tài)是有變化的,但是如果是自己加了一個.png格式的圖片為背景色,按鈕點(diǎn)擊就不會有任何效果,為了達(dá)到點(diǎn)擊按鈕有一閃的效果,我們就需要準(zhǔn)備兩張圖進(jìn)行切換, 而且文字也要變色,老規(guī)矩廢話不多說直接上代碼:

按鈕背景圖片放在 drawable/background_button.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

 <item android:drawable="@drawable/bg_press" android:state_pressed="true"/>
 <item android:drawable="@drawable/bg_normal" android:state_enabled="true"/>
 <item android:drawable="@drawable/bg_normal"/>
</selector>

準(zhǔn)備兩張圖片一張為bg_press.png, 一張為 bg_normal.png。

在需要變化的按鈕中設(shè)置:

   <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_centerVertical="true"
    android:layout_marginRight="50dp"
    android:focusable="false"
    android:gravity="center"
    android:textSize="24px"
    android:text="@string/str_tethering_modify"
    android:background="@drawable/background_button" />

這有背景色變化就解決完了,下面到按鈕上的文字了,現(xiàn)在點(diǎn)擊按鈕按鈕上的文字是沒有變化的,為了達(dá)到按鈕文字顏色的變化我們再新建一個xml文件。

按鈕顏色變化 drawable/button_color.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

 <item android:state_pressed="true" android:color="#975508"/>
 <item android:state_focused="false" android:state_pressed="false" android:color="#E5960E"/>
 <item android:state_focused="true" android:color="#975508"/>
 <item android:state_focused="false" android:color="#E5960E"/>

</selector>

加入到我們的按鈕textColor中

   <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_centerVertical="true"
    android:layout_marginRight="50dp"
    android:focusable="false"
    android:gravity="center"
    android:textSize="24px"
    android:textColor="@drawable/button_color"
    android:text="@string/str_tethering_modify"
    android:background="@drawable/background_button" />

這樣直接使用背景和文字就都有點(diǎn)擊效果啦,但是如果有這樣一個需求,在某些條件下需要再設(shè)置按鈕文字的顏色button.setTextColor(color),這樣設(shè)置完后,發(fā)現(xiàn)我們按鈕上文字點(diǎn)擊又沒有變化了,我之前試著直接 button.setTextColor(R.drawable.button_color);發(fā)現(xiàn)這樣是沒有任何用處的。這樣就需要使用 ColorStateList 來解決,顧名思義,就是定義顏色的狀態(tài)列表,通過監(jiān)聽按鈕不同狀態(tài)來設(shè)置不同的顏色,

老規(guī)矩,廢話不多說了,直接貼代碼:

 /**
  * 按鈕點(diǎn)擊顏色變化
  */
 private ColorStateList colorStateList;
 colorStateList = (ColorStateList)getResources().getColorStateList(R.drawable.button_color);
 if(xxx){
  button.setTextColor(Color.White);
 }else{
  button.setTextColor(colorStateList);
 }

這樣就完美解決了按鈕點(diǎn)擊狀態(tài)的變化啦。

補(bǔ)充知識:android studio設(shè)置按鈕和背景融為一體也就是按鈕去除陰影

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_send"
android:onClick="sendMessage"
style="?android:attr/borderlessButtonStyle" />

以上這篇Android Button按鈕點(diǎn)擊背景和文字變化操作就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持腳本之家。

相關(guān)文章

最新評論

武平县| 家居| 嘉鱼县| 筠连县| 清水县| 淮阳县| 郴州市| 司法| 阿图什市| 循化| 江达县| 德惠市| 滦南县| 定日县| 威宁| 萨迦县| 凤山县| 白水县| 汝城县| 乌兰浩特市| 和田市| 宣恩县| 徐闻县| 禹州市| 泸西县| 广丰县| 杂多县| 福泉市| 永吉县| 南岸区| 根河市| 乐业县| 东乌珠穆沁旗| 称多县| 尤溪县| 拉孜县| 鄂托克旗| 凤山县| 昭苏县| 瑞昌市| 涿州市|