效果预览:

xml实现:strategy_bt2.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<solid android:color="@color/orange" />
<corners
android:bottomLeftRadius="3dp"
android:bottomRightRadius="3dp"
android:topLeftRadius="3dp"
android:topRightRadius="3dp" />
</shape>
颜色设置color.xml中:<color name="orange">#FD9000</color>
使用:
<Button
android:layout_marginTop="10dp"
android:id="@+id/btn_buy"
android:layout_width="50dp"
android:layout_height="30dp"
android:background="@drawable/strategy_bt"
android:padding="0dp"
android:text="购买"
android:gravity="center"
android:textColor="#ffffff"
android:textSize="10sp" />