android 关于美化按钮的小技巧

时间:2021-01-05 02:40:28

通过创建xml文件来实现

1.创建按钮背景white.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<corners android:radius="5dp"/>
<solid android:color="@color/white"/>

</shape>

2.再创建按钮被按下的背景grey.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<corners android:radius="5dp"/>
<solid android:color="@color/grey"/>

</shape>

3.再创建最后一个btn_bg.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

<item android:drawable="@drawable/grey" android:state_pressed="true"/>
<item android:drawable="@drawable/white"/>

</selector>
android 关于美化按钮的小技巧

以上就是通过用btn_bg.xml做为背景的效果(颜色是通过创建color.xml,然后引用的)