Skip to content

Instantly share code, notes, and snippets.

@Gnzlt
Created August 16, 2018 14:07
Show Gist options
  • Save Gnzlt/80c7473d4c12da6724a7bdb30f27bcfc to your computer and use it in GitHub Desktop.
Save Gnzlt/80c7473d4c12da6724a7bdb30f27bcfc to your computer and use it in GitHub Desktop.
Android Transparent Rounded Ripple
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="?android:colorControlHighlight">
<item android:id="@android:id/mask">
<shape>
<solid android:color="@android:color/white"/>
<corners android:radius="12dp"/>
</shape>
</item>
<item>
<shape>
<solid android:color="@android:color/transparent"/>
<corners android:radius="12dp"/>
</shape>
</item>
</ripple>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment