设置您的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);

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐