要设置android MaterialCardView的背景颜色,可以在xml布局文件中使用app:cardBackgroundColor
属性来指定颜色值,如下所示:
<com.google.android.material.card.MaterialCardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardBackgroundColor="@color/colorPrimary"
app:cardElevation="4dp">
<!-- Card content here -->
</com.google.android.material.card.MaterialCardView>
在上面的示例中,app:cardBackgroundColor
属性被设置为@color/colorPrimary
,这个值指定了卡片视图的背景颜色为colorPrimary颜色。您可以使用颜色资源或直接指定颜色值来设置背景颜色。