Skip to content

Instantly share code, notes, and snippets.

@john-lorrenz
Last active November 17, 2019 16:40
Show Gist options
  • Save john-lorrenz/d86ab332c0a6ccc8d17b61ecfec11101 to your computer and use it in GitHub Desktop.
Save john-lorrenz/d86ab332c0a6ccc8d17b61ecfec11101 to your computer and use it in GitHub Desktop.
Circular button with custom icon
<?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>
<ImageButton
android:id="@+id/imageButton"
android:layout_width="60dp"
android:layout_height="60dp"
android:background="@drawable/circle"
app:srcCompat="[CUSTOM ICON]" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment