如何在Android的CardView中正确实现带有渐变背景的波纹效果?

问题描述 投票:0回答:1

我正在尝试在我的 Android 应用程序中创建一个 CardView,它具有渐变背景,并且在单击时还包含波纹效果。我已经定义了一个渐变可绘制对象并将其设置为 CardView 的背景,但我不确定如何在此渐变之上添加波纹效果。

Gradient Drawable (gradient_background.xml):

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape android:shape="rectangle">
            <gradient
                android:startColor="@color/gradient_start"
                android:endColor="@color/gradient_end"
                android:angle="45"/>
        </shape>
    </item>
</layer-list>

CardView Layout:

<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="@dimen/_8sdp"
    app:cardBackgroundColor="@color/white"
    app:cardCornerRadius="@dimen/_12sdp"
    app:cardElevation="@dimen/_12sdp"
    android:background="@drawable/ripple_background">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:orientation="vertical"
        android:padding="@dimen/_12sdp">

        <TextView
            android:id="@+id/chapter_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginBottom="@dimen/_8sdp"
            android:fontFamily="@font/oswald_bold"
            android:text="Chapter Name"
            android:textColor="@color/text_color"
            android:textSize="@dimen/_18ssp"
            android:textShadowColor="@color/text_shadow"
            android:textShadowRadius="@dimen/_2sdp" />

        <TextView
            android:id="@+id/chapter_completed"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:fontFamily="@font/oswald_medium"
            android:text="Completed"
            android:textColor="@color/text_color"
            android:textSize="@dimen/_14ssp" />
    </LinearLayout>
</androidx.cardview.widget.CardView>

我想添加一个覆盖渐变背景的波纹效果,以便单击CardView时可以看到波纹效果。我怎样才能正确地结合这两个元素?

我尝试将波纹可绘制直接设置为CardView的背景,但它似乎没有正确覆盖渐变。

android xml gradient cardview ripple
1个回答
0
投票

因此,如果您只想添加涟漪效果,那么您只需在

CardView
中添加这两行即可。

        android:foreground="?android:attr/selectableItemBackground"
        android:clickable="true"

单击时,这将为您的

cardView
添加涟漪效果。

© www.soinside.com 2019 - 2024. All rights reserved.