Richten Sie Ihre CardView so ein, dass das cardBackgroundColor
Attribut zum Entfernen von Farbe und das cardElevation
Attribut zum Entfernen des Schlagschattens verwendet wird. Zum Beispiel:
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/myCardView"
android:layout_width="match_parent"
android:layout_height="match_parent"
card_view:cardBackgroundColor="@android:color/transparent"
card_view:cardElevation="0dp">
Eine vollständige Liste der unterstützten Attribute finden Sie hier: https://developer.android.com/reference/android/support/v7/widget/CardView.html
Wenn Sie eine ältere API verwenden, müssen Sie CardView
stattdessen diese beiden Funktionen aufrufen :
myCardView.setCardBackgroundColor(Color.TRANSPARENT);
myCardView.setCardElevation(0);
android:background="@android:color/transparent"