Search code examples
androidandroid-imageviewtextviewmaterial-design

How to set a ripple effect on textview or imageview on Android?


I want to set a ripple effect on textview and imageview in Android Studio. How can I do it?


Solution

  • Ref : http://developer.android.com/training/material/animations.html,

    http://wiki.workassis.com/category/android/android-xml/

    <TextView
    .
    .
    android:background="?attr/selectableItemBackgroundBorderless"
    android:clickable="true"
    />
    
    <ImageView
    .
    .
    .
    android:background="?attr/selectableItemBackgroundBorderless"
    android:clickable="true"
    />