Created
August 24, 2020 22:15
-
-
Save CodeBoy722/54ac9d9e79af4c7d9122b33c80d439d0 to your computer and use it in GitHub Desktop.
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"?> | |
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> | |
<item> | |
<shape android:shape="oval" android:thickness="5dp" | |
android:useLevel="false"> | |
<size android:height="100dp" android:width="100dp"/> | |
<solid android:color="#ff91a4"/> | |
<stroke android:color="#FFFFFF" android:width="2dp"/> | |
<padding android:right="10dp" android:left="10dp" android:bottom="10dp" android:top="10dp"/> | |
</shape> | |
</item> | |
<!-- replace with your own check image--> | |
<item android:gravity="center"> | |
<bitmap android:src="@drawable/ic_tick" | |
android:gravity="center"> | |
</bitmap> | |
</item> | |
</layer-list> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment