只针对5.0及以上程序
预览还能看,发布看不见了
android水波纹效果,效果如下图:
首先建一个shape,我们命名为test.xml在drawable里
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#8cc476" />
<corners android:radius="0dp" />
</shape>
然后我们再建一个ripple
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="#FF21272B">
<item android:drawable="@drawable/test" />
</ripple>
最后,我们只要给对应的view设置background就可以了。
这里面有2个颜色,可自行配置。