Ripple effect over a RecyclerView item containing ImageView

后端 未结 6 1283
自闭症患者
自闭症患者 2020-12-12 22:09

I have a RecyclerView that expands the following grid item :



        
6条回答
  •  不思量自难忘°
    2020-12-12 22:55

    Above answers are correct. but I want to recommend the usage of android:foreground instead as it shows the ripple infront of the imageView.

    On your root view, add the following.

    android:foreground="@drawable/ripple_effect_color_primary"
    android:clickable="true"
    android:focusable="true"
    

    I know it's a pretty late answer to such old thread. But who knows, someone might actually find it useful.

提交回复
热议问题