You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android= "http://schemas.android.com/apk/res/android" >
<item android:state_pressed= "false" >
<shape android:shape= "rectangle" >
<!-- 填充的颜色 -->
<solid android:color= "#87CEEB" > </solid>
<!-- 设置按钮的四个角为弧形 -->
<!-- android:radius 弧形的半径 -->
<corners android:radius= "15dip" />
<!-- padding: Button里面的文字与Button边界的间隔 -->
<padding android:bottom= "2dp" android:left= "2dp" android:right= "2dp" android:top= "2dp" />
</shape>
</item>
<item android:state_pressed= "true" >
<shape android:shape= "rectangle" >
<solid android:color= "#4169E1" />
<corners android:radius= "15dip" />
</shape>
</item>
</selector>