涟漪xml是
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/baseWhite">
<item android:drawable="@color/baseRed" />
</ripple>
文件名为rounded_button_leave_submit.xml(v-21)
按钮xml是
<Button
android:text="Submit"
android:layout_width="match_parent"
android:layout_height="@dimen/edittext_button_height"
android:id="@+id/submitLeave"
android:textSize="@dimen/edittext_text_size"
android:background="@drawable/rounded_button_leave_submit"/>
正如您所看到的,纹波的默认基色是红色。纹波颜色是白色。但是白色不是&#34;清除&#34;白色。它有点是白色和红色的复合色。
这里baseWhite和baseRed只是白色(#ffffff)和红色(#d41217)的十六进制颜色代码。如何清除白色?
感谢您的时间。