我对CardView透明度和card_elevation有一些麻烦.尝试使用CardView透明的结果是:

没有透明度:

我想要得到的是这样的:

这是我的xml:
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@mipmap/eifell"
android:padding="10dp"
tools:context=".MainActivity">
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="5dp"
android:background="@android:color/transparent">
android:layout_width="match_parent"
android:layout_height="wrap_content">
android:id="@+id/newsCardView"
android:layout_width="match_parent"
android:layout_height="175dp"
card_view:cardBackgroundColor="#602B608A"
card_view:cardElevation="5dp">
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/transparent">
本文探讨了在Android中如何设置CardView的透明度和阴影(elevation)。作者遇到问题,透明设置并未如预期工作。XML布局代码显示了尝试使用的属性,包括cardBackgroundColor和cardElevation。目标是创建具有透明背景和明显阴影的CardView。
1310

被折叠的 条评论
为什么被折叠?



