您好,登錄后才能下訂單哦!
在Android中,為Button設置自定義背景可以通過創建一個XML文件來實現
res/drawable
目錄下創建一個名為custom_button_background.xml
的新文件。custom_button_background.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"/>
<corners android:radius="4dp"/>
</shape>
</item>
<item>
<!-- Default button color -->
<shape>
<solid android:color="@android:color/holo_blue_dark"/>
<corners android:radius="4dp"/>
</shape>
</item>
</selector>
這個XML文件定義了一個按鈕的背景,當按鈕被按下時,背景顏色會變為holo_blue_light
,而默認情況下,背景顏色為holo_blue_dark
。同時,按鈕的四個角都有4dp的圓角。
activity_main.xml
)中,將Button的android:background
屬性設置為@drawable/custom_button_background
: android:id="@+id/my_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click me!"
android:background="@drawable/custom_button_background"/>
現在,您的Button將使用自定義背景。您可以根據需要修改custom_button_background.xml
文件中的顏色和圓角大小。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。