gpt4 book ai didi

android - Recyclerview 中不存在涟漪效应?

转载 作者:行者123 更新时间:2023-11-29 16:30:34 25 4
gpt4 key购买 nike

我无法让我的回收站 View 项目在单击时具有“涟漪效应”,如下所示:

enter image description here

我在 Stackoverflow 上发现了很多类似的问题,但我没有找到任何有帮助的问题。

这是我的整个布局:

<androidx.constraintlayout.widget.ConstraintLayout 
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/start_root_view"
android:clickable="true"
android:focusable="true"
android:foreground="?android:attr/selectableItemBackground">

<androidx.cardview.widget.CardView
android:id="@+id/topContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
app:cardBackgroundColor="@color/colorAccent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:cardCornerRadius="24dp">

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<androidx.cardview.widget.CardView
android:id="@+id/image_card"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
app:cardCornerRadius="32dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent">

<ImageView
android:id="@+id/user_image"
android:layout_width="64dp"
android:layout_height="64dp" />

</androidx.cardview.widget.CardView>

<TextView
android:id="@+id/welcome_message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:text="Welcome back!"
android:textSize="24sp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toEndOf="@id/image_card"
app:layout_constraintBottom_toTopOf="@id/username_display"/>

<TextView
android:id="@+id/username_display"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginBottom="8dp"
android:text="username"
android:textSize="16sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toEndOf="@id/image_card"
app:layout_constraintTop_toBottomOf="@id/welcome_message"/>

</androidx.constraintlayout.widget.ConstraintLayout>

</androidx.cardview.widget.CardView>

<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerview_questions"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/topContainer"
android:scrollbars="vertical"
android:scrollbarStyle="outsideInset" />

<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/button_add_question"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="24dp"
android:layout_marginBottom="24dp"
android:clickable="true"
app:backgroundTint="@color/colorAccentDark"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:srcCompat="@drawable/plus" />

</androidx.constraintlayout.widget.ConstraintLayout>

我还应该说明,我已经从我的 Activity 代码中向我的 Recyclerview 添加了 ItemTouchHelper 和 RecyclerView.ItemDecoration。

我不明白为什么效果不起作用。有什么建议吗?

最佳答案

如果您希望您的 recyclerview 行具有链式 react ,您应该在您的 recyclerviews 行布局文件中使用 selectableItemBackground 属性。

该属性应设置为正在使用点击事件的 View 。

关于android - Recyclerview 中不存在涟漪效应?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56194613/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com