Skip to content

Instantly share code, notes, and snippets.

@pacificregmi
Last active September 28, 2015 03:50
Show Gist options
  • Save pacificregmi/dcb4e823730e825ecba0 to your computer and use it in GitHub Desktop.
Save pacificregmi/dcb4e823730e825ecba0 to your computer and use it in GitHub Desktop.
Ripple Effect in Button - button_ripple_effect.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#fff"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:text="Click the below buttons to see ripple effect" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/ripple_effect"
android:padding="16dp"
android:text="Click Me" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:background="@drawable/ripple_effect"
android:padding="16dp"
android:text="Click Me" />
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment