Skip to content

Instantly share code, notes, and snippets.

@lsurvila
lsurvila / drawable-v21.xml
Last active June 12, 2018 13:56
Button with round borders
<ripple
xmlns:android="http://schemas.android.com/apk/res/android"
android:color="?android:attr/colorControlHighlight"
>
<item android:id="@android:id/mask">
<shape android:shape="rectangle">
<solid android:color="#327DDF"/>
<corners android:radius="4dp"/>
</shape>
</item>