天天看點

android cardview透明,CardView上的透明背景 – Android

設定您的CardView以使用cardBackgroundColor屬性删除顔色和cardElevation屬性以删除陰影。例如:

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">

如果您使用較舊的API,您需要在CardView上調用以下兩個函數:

myCardView.setCardBackgroundColor(Color.TRANSPARENT);

myCardView.setCardElevation(0);