Android点击按钮后改变颜色
Posted 前路漫漫,迷途而行
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android点击按钮后改变颜色相关的知识,希望对你有一定的参考价值。
1、在res文件夹下新建一个文件夹drawable
2、在drawable文件夹下面建立一个xml文件:button_selector.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:drawable="@drawable/normal" android:state_pressed="false"/> <item android:drawable="@drawable/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/login_button_selector" />
以上是关于Android点击按钮后改变颜色的主要内容,如果未能解决你的问题,请参考以下文章