Skip to content

Instantly share code, notes, and snippets.

@freakinbook
Last active September 14, 2020 14:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save freakinbook/ba3a45c225ecef1c6fb49d03961538d6 to your computer and use it in GitHub Desktop.
Save freakinbook/ba3a45c225ecef1c6fb49d03961538d6 to your computer and use it in GitHub Desktop.
an android button with transparent background and round ripple
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/colorAccent_alpha26">
<item>
<selector>
<item android:state_pressed="false">
<shape
android:shape="oval">
<size android:height="56dp"
android:width="56dp"/>
<solid android:color="@android:color/transparent" />
</shape>
</item>
<item android:state_pressed="true">
<shape
android:shape="oval">
<size android:height="56dp"
android:width="56dp"/>
<solid android:color="@color/colorPrimary"/>
</shape>
</item>
</selector>
</item>
</ripple>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment