Created
November 19, 2019 00:44
-
-
Save john-lorrenz/051cff8afef1c730a239a9498740df6e to your computer and use it in GitHub Desktop.
Basic Drawable Template - with background and border
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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