一、水波紋點(diǎn)擊效果,包含2個(gè)文件
文件:style_btn_click.xml
...
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
? ? android:color="@color/mainLight5">
? ? <item android:drawable="@color/white" />
</ripple>
...
使用方法:
<Button?
????android:layout_width="wrap_content"
? ? android:layout_height="wrap_content"
? ? android:background="@drawable/style_btn_click"? />
二、普通點(diǎn)擊變色樣式
style_normal_btn_click.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
?????<!--點(diǎn)擊背景-->
?????<item android:state_pressed="true">
?????????<shape>
?????????????<!--色值-->
?????????????<solid android:color="@color/click1" />
?????????????<!--圓角-->
?????????????<corners android:radius="1dp" />
? ? ? ? ? </shape>
?????????</item>
?????????<!--默認(rèn)背景-->
?????????<item>
?????????????<shape>
?????????????????<solid android:color="@color/white" />
?????????????????<corners android:radius="1dp" />
? ? ? ? ? ? ?</shape>
?????????</item>
</selector>
使用方法:
``
<Button??????
????android:layout_width="wrap_content"?? ?
????android:layout_height="wrap_content"?? ?
????android:background="@drawable/style_normal_btn_click?"? />
```
或者可以使用工具類(lèi)樣式工具類(lèi)