pb_org_gray_shape.xml 522 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="#6355DC" />
  8. <solid android:color="#00a9aba9" />
  9. <corners
  10. android:bottomLeftRadius="@dimen/px20dp"
  11. android:bottomRightRadius="@dimen/px20dp"
  12. android:topLeftRadius="@dimen/px20dp"
  13. android:topRightRadius="@dimen/px20dp" />
  14. </shape>