我在XML文件中添加了以下按钮:
<Button
style="@style/RoundedButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:background="@drawable/rounded_button"
android:text="Say Hi" />
以下是rounded_button
背景的样子:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@android:color/transparent" />
<corners android:radius="50dp" />
<stroke
android:width="1dp"
android:color="#FFF" />
</shape>
以下是RoundedButton
样式:
<style name="RoundedButton" parent="Base.Widget.AppCompat.Button">
<item name="android:textColor">#FFF</item>
<item name="android:background">@color/md_blue_700</item>
</style>
以下是输出:
如您所见,整个布局的背景为蓝色。但由于某种原因,按钮的两端都有不同的蓝色。为什么是这样?如何让它真正透明,只显示背景?