Ripple effect over a RecyclerView item containing ImageView

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

I have a RecyclerView that expands the following grid item :



        
6条回答
  •  感情败类
    2020-12-12 22:39

    Change:

    android:background="?selectableItemBackground"
    

    To:

    android:background="?android:attr/selectableItemBackground"
    

    And add this to your SquareImageView

    android:clickable="false" 
    

提交回复
热议问题