Skip to content

Instantly share code, notes, and snippets.

@rygelouv
Created December 23, 2015 17:29
Show Gist options
  • Save rygelouv/fad8d7a74168a7d7c232 to your computer and use it in GitHub Desktop.
Save rygelouv/fad8d7a74168a7d7c232 to your computer and use it in GitHub Desktop.
A drawable xml file to get a circle background on a view on Android.
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval" >
<gradient
android:startColor="@color/background"
android:endColor="@color/background"
android:angle="270"/>
</shape>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment