您好,登錄后才能下訂單哦!
要在Android中實現Button控件的點擊變色,你可以使用選擇器(selector)來改變按鈕的背景顏色。以下是一個簡單的示例:
res/drawable
目錄下創建一個名為button_selector.xml
的文件,然后添加以下內容:<?xml version="1.0" encoding="utf-8"?><selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true">
<!-- Color when button is pressed -->
<shape>
<solid android:color="@android:color/holo_blue_light" />
</shape>
</item>
<item>
<!-- Default button color -->
<shape>
<solid android:color="@android:color/holo_green_light" />
</shape>
</item>
</selector>
這里我們定義了兩種顏色:當按鈕被按下時的顏色(holo_blue_light
)和默認顏色(holo_green_light
)。
activity_main.xml
)中添加一個Button控件,并將其背景設置為我們剛剛創建的選擇器: android:id="@+id/my_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click me!"
android:background="@drawable/button_selector" />
現在,當你運行應用并點擊按鈕時,它的背景顏色會根據按下和松開的狀態發生變化。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。