sdk_btn_stroke.xml 414 B

1234567891011121314
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:shape="rectangle">
  4. <corners
  5. android:topLeftRadius="5dp"
  6. android:bottomLeftRadius="5dp"
  7. android:topRightRadius="5dp"
  8. android:bottomRightRadius="5dp" />
  9. <stroke
  10. android:width="0.5dp"
  11. android:color="#d8d8d8" />
  12. </shape>