如何设置Android CardView的半透明背景色?

时间:2020-04-08 23:43:54

标签: android android-cardview cardview

我想用argb颜色设置名片视图的backgroundColor。但是结果是这样的:

enter image description here

<androidx.cardview.widget.CardView
        android:id="@+id/infoCard"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="16dp"
        android:layout_marginTop="8dp"
        android:layout_marginEnd="16dp"
        android:layout_marginBottom="8dp"
        app:cardBackgroundColor="#59448AFF"
        app:cardCornerRadius="8dp">

        <com.google.android.material.textview.MaterialTextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginStart="@dimen/space_16dp"
            android:layout_marginTop="@dimen/space_8dp"
            android:layout_marginEnd="@dimen/space_16dp"
            android:layout_marginBottom="@dimen/space_8dp"
            android:lineSpacingExtra="@dimen/space_4dp"
            android:text="This is a sample text"
            android:textColor="@color/secondaryText"
            android:textSize="16sp" />

    </androidx.cardview.widget.CardView>

有人知道如何解决此问题吗?

1 个答案:

答案 0 :(得分:0)

color.xml

中定义它
<color name="semiTransparentColor">#20ffffff</color>

现在以这种方式设置名片视图。

card_view:cardBackgroundColor="@color/semiTransparentColor"

这是透明度的十六进制代码。 link您可以根据需要进行设置。