rounded_btn.xml 482 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" android:padding="8dp">
  4. <solid android:color="#fff78484" />
  5. <stroke
  6. android:width="1dp"
  7. android:color="#fff78484"
  8. android:angle="-90"/>
  9. <corners
  10. android:bottomRightRadius="5dp"
  11. android:bottomLeftRadius="5dp"
  12. android:topLeftRadius="5dp"
  13. android:topRightRadius="5dp" />
  14. </shape>