Last active
November 17, 2019 16:40
-
-
Save john-lorrenz/d86ab332c0a6ccc8d17b61ecfec11101 to your computer and use it in GitHub Desktop.
Circular button with custom icon
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 android:shape="oval" | |
xmlns:android="http://schemas.android.com/apk/res/android"> | |
<!-- border color and width --> | |
<stroke android:width="0.5dp" android:color="@android:color/darker_gray"/> | |
<!-- background color --> | |
<solid android:color="@android:color/white"/> | |
</shape> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment