我有一个CardView,其中包含RecyclerView。当用户单击RecyclerView项目时,我尝试在整个CardView(或整个RecyclerView)上产生波纹效果,但是波纹效果仅应用于该项目。
<android.support.v7.widget.CardView
android:id="@+id/cardview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:foreground="?attr/selectableItemBackground">
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/list"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintBottom_toTopOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="parent"/>
</android.support.constraint.ConstraintLayout>
</android.support.v7.widget.CardView>
答案 0 :(得分:1)
将以下属性添加到您的CardView
。
<android.support.v7.widget.CardView
...
android:clickable="true"
android:focusable="true"
android:background="?android:selectableItemBackground"/>
运行您的应用。应该可以。