Skip to content

Instantly share code, notes, and snippets.

@john-lorrenz
Created November 19, 2019 00:44
Show Gist options
  • Save john-lorrenz/051cff8afef1c730a239a9498740df6e to your computer and use it in GitHub Desktop.
Save john-lorrenz/051cff8afef1c730a239a9498740df6e to your computer and use it in GitHub Desktop.
Basic Drawable Template - with background and border
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<!-- background color -->
<solid android:color="@android:color/darker_gray"/>
<!-- border color and width -->
<stroke android:width="10dp"
android:color="@android:color/white"/>
<!-- The radius makes the corners rounded -->
<corners android:radius="500dp"/>
</shape>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment