pb_org_white_shape.xml 486 B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:shape="rectangle" >
  4. <!-- 橙色边框白底圆角矩形 -->
  5. <stroke
  6. android:width="1dip"
  7. android:color="#f28c37" />
  8. <solid android:color="#ffffff" />
  9. <corners
  10. android:bottomLeftRadius="2dip"
  11. android:bottomRightRadius="2dip"
  12. android:topLeftRadius="2dip"
  13. android:topRightRadius="2dip" />
  14. </shape>