Button按钮点击变颜色

来源:互联网 发布:东方财富 知乎 编辑:程序博客网 时间:2024/04/26 08:01

Button布局,背景设为btn_bg

  <Button         android:layout_width="match_parent"        android:layout_height="wrap_content"        android:text="登陆"        android:onClick="login"        android:background="@drawable/btn_bg"        />

btn_bg的xml

<?xml version="1.0" encoding="utf-8"?><selector xmlns:android="http://schemas.android.com/apk/res/android" >    <item android:state_pressed="true" android:drawable="@drawable/btn1"></item>    <item android:drawable="@drawable/btn2"></item></selector>
0 0
原创粉丝点击