如何在 Android 上的 textview 或 imageview 上设置涟漪效果?

问题描述:

我想在 Android Studio 中对 textview 和 imageview 设置涟漪效果.我该怎么做?

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

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"
/>