要設置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顏色。您可以使用顏色資源或直接指定顏色值來設置背景顏色。