pb_gift_game_bottom_stroke.xml 505 B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android" >
  3. <!-- 3圆角,白色背景绿边按钮 -->
  4. <!-- 圆角 -->
  5. <corners
  6. android:bottomLeftRadius="5dp"
  7. android:bottomRightRadius="5dp"/><!-- 设置圆角半径 -->
  8. <!-- 填充 -->
  9. <solid
  10. android:color="@android:color/white"/><!-- 填充的颜色 -->
  11. <!-- 描边 -->
  12. <stroke
  13. android:width="1dp"
  14. android:color="#CCCCCC"/>
  15. </shape>