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