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/myC
·
设置您的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);
更多推荐
已为社区贡献7条内容
所有评论(0)