您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
在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进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。