答案 0 :(得分:1)
在drawable文件夹中创建button_background.xml并粘贴此代码
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item >
<shape android:shape="rectangle" >
<padding android:left="10dip" android:right="10dip" android:top="5dip" android:bottom="5dip"/>
<corners android:bottomRightRadius="5dp" android:bottomLeftRadius="5dp"
android:topLeftRadius="5dp" android:topRightRadius="5dp"/>
<solid
android:color="#f5f5f5"/>
<stroke android:width="2dp" android:color="#42A5F5"/>
</shape>
</item>