描画可能な場所で以下の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のコードを変更するにはどうすればよいですか::
ありがとう、