Skip to content

Instantly share code, notes, and snippets.

@nishantkp
Created April 3, 2018 03:00
Show Gist options
  • Save nishantkp/50ebba573169ac6d3763cf30e5de5c73 to your computer and use it in GitHub Desktop.
Save nishantkp/50ebba573169ac6d3763cf30e5de5c73 to your computer and use it in GitHub Desktop.
Use this drawable to generate a border with round corners
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@null" />
<stroke
android:width="1dp"
android:color="@color/colorPrimary" />
<padding
android:bottom="1dp"
android:left="1dp"
android:right="1dp"
android:top="1dp" />
<corners android:radius="8dp" />
</shape>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment