Skip to content

Instantly share code, notes, and snippets.

@zaur
Last active August 29, 2015 13:57
Show Gist options
  • Save zaur/9868737 to your computer and use it in GitHub Desktop.
Save zaur/9868737 to your computer and use it in GitHub Desktop.
Drawable with 1dp border at bottom
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="#ff0000" />
</shape>
</item>
<item android:bottom="1dp">
<shape android:shape="rectangle">
<solid android:color="@color/white" />
</shape>
</item>
</layer-list>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment