Skip to content

Instantly share code, notes, and snippets.

@ohmrefresh
Created October 16, 2014 08:09
Show Gist options
  • Save ohmrefresh/ddd8e2e9f662e6cbf33e to your computer and use it in GitHub Desktop.
Save ohmrefresh/ddd8e2e9f662e6cbf33e to your computer and use it in GitHub Desktop.
Drawable Backgroud Android [exclude Left Border]
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
<shape
android:shape="rectangle">
<stroke android:width="1dp" android:color="#FF000000" />
<solid android:color="#FFFFFF" />
</shape>
</item>
<item android:top="1dp" android:bottom="1dp" android:left="1dp">
<shape
android:shape="rectangle">
<stroke android:width="1dp" android:color="#FFFFFF" />
<solid android:color="#00000000" />
</shape>
</item>
</layer-list>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment