gpt4 book ai didi

android - CardView 上的透明背景 - Android

转载 作者:IT老高 更新时间:2023-10-28 13:18:59 40 4
gpt4 key购买 nike

我想在 CardView 上做透明背景。我知道背景颜色,但我的布局上有图像。

你知道怎么做吗?或者可以用作cardview但我会设置透明背景的东西?

问候

最佳答案

设置您的 CardView 以使用 cardBackgroundColor 属性来移除颜色,并使用 cardElevation 属性来移除阴影。例如:

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

有关受支持属性的完整列表,请参见此处:https://developer.android.com/reference/android/support/v7/widget/CardView.html

如果您使用的是较旧的 API,则需要在 CardView 上调用这两个函数:

myCardView.setCardBackgroundColor(Color.TRANSPARENT);
myCardView.setCardElevation(0);

关于android - CardView 上的透明背景 - Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28629549/

40 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com