这是我的定制涟漪
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="?android:colorControlHighlight">
<item android:drawable="@color/white" />
</ripple>
如何使其无边界?
解决方法:
根据RippleDrawable documentation,波纹将被遮盖其子层的复合物.
在这种情况下,您的绘图将被涟漪中唯一的项目掩盖.
要有一个没有掩码的波纹,你可以像这样定义你的波纹:
<ripple android:color="?android:colorControlHighlight" />