Android 点击按钮(Button)后改变颜色
Posted 彬sir哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 点击按钮(Button)后改变颜色相关的知识,希望对你有一定的参考价值。
selector:选择器
1、在res文件下新建一个文件夹drawable
2、在drawable文件夹下面建立一个xml文件:button_selector.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/clr_normal" android:state_pressed="false"/>
<item android:drawable="@drawable/clr_pressed" android:state_pressed="true"/>
</selector>
3、在value文件夹下的string.xml文件里添加normal(未选中)和pressed(选中)的样式
<drawable name="clr_normal">#ff6501</drawable>
<drawable name="clr_pressed">#a44100</drawable>
4、在布局中通过background调用button_selector.xml的样式
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/button_selector"
android:text="登录"/>
测试结束如下:
以上是关于Android 点击按钮(Button)后改变颜色的主要内容,如果未能解决你的问题,请参考以下文章