我在可绘制位置使用了以下 xml
button_square_shape.xml
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android" >
<corners android:radius="8dp" />
<gradient
android:angle="45"
android:startColor="#FFFF0000"
android:endColor="#80FF00FF" />
<padding
android:left="2dp"
android:top="2dp"
android:right="2dp"
android:bottom="2dp" />
<solid
android:color="#848482" />
</shape>
我正在使用上面的 xml 并尝试更改下面的按钮
<Button
android:id="@+id/CopperChimneyFriendsButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/button_square_shape"
android:paddingBottom="13dp"
android:paddingLeft="13dp"
android:paddingRight="13dp"
android:paddingTop="13dp"
android:text="Friends"
android:textColor="@android:color/white" />
我正在尝试使按钮显示如下图所示。像边框一样的按钮.....我如何更改 button_square_shape.xml 中的代码以实现我的目标::
谢谢,