1.9patch图
2.按钮自定义
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<!--尺寸-->
<size android:height="20dp" android:width="310dp"/>
<!--背景颜色【单色】填充-->
<solid android:color="#f00"/>
<!--圆角-->
<corners android:radius="50dp"/>
<!--边框-->
<stroke android:color="#09f" android:width="2dp" android:dashGap="2dp" android:dashWidth="15dp"/>
<!--背景颜色【渐变色】填充-->
<gradient android:startColor="#5f913f" android:centerColor="#7575ab" android:endColor="#cc1212" android:angle="45"/>
</shape>
3.自定义按钮状态
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!--选择状态变化-->
<!--点击状态-->
<item android:drawable="@drawable/b2" android:state_pressed="true"/>
<!--普通状态-->
<item android:drawable="@drawable/b3"/>
</selector>