我一直在尝试将按钮纯色与其边框颜色相匹配,同时还添加了涟漪效果。我有一个匹配的边框和纯色(没有波纹)但是当我添加波纹时,它似乎添加了自己的边框稍微更暗。下面是样式和drawable,
可绘制-V21 / my_btn.xml
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:color="#ff0000"
tools:ignore="NewApi">
<item>
<shape
android:shape="rectangle">
<corners
android:radius="2dp" />
<stroke
android:width="1dp"
android:color="#ff0000" />
<solid
android:color="#ffffff" />
</shape>
</item>
</ripple>
styles.xml
<style name="Border_Button">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:textColor">#000000</item>
<item name="android:textSize">14sp</item>
<item name="android:textAllCaps">true</item>
<item name="android:layout_marginLeft">16dp</item>
<item name="android:layout_marginRight">16dp</item>
<item name="android:background">@drawable/my_btn</item>
</style>
和layout.xml
<Button
style="@style/Border_Button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#000000"
android:text="Click" />
有没有人知道如何用波纹覆盖这种边框颜色,或者是否有其他方法可以实现这一点(仅限XML)?