gpt4 book ai didi

java - Android - CardView 背景始终为灰色

转载 作者:搜寻专家 更新时间:2023-11-01 08:27:09 26 4
gpt4 key购买 nike

我正在尝试以编程方式更改 CardView 颜色。

这是我的卡片 View :

<android.support.v7.widget.CardView
android:id="@+id/createsub_card"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="10dp">

这就是我设置背景颜色的方式:

CardView card = (CardView) findViewById(R.id.createsub_card);
card.setCardBackgroundColor(sub.getColor());

在这种特定情况下,sub.getColor() 返回这种颜色:

<color name="color_black">#000000</color>

应该是一片漆黑。我的 CardView 仍然是这样的:

grey cardView

知道为什么会发生这种情况以及如何解决它吗?

最佳答案

我假设问题是由 sub.getColor() 引起的。首先正确返回Color代码。

你可以试试这个

cardView.setCardBackgroundColor(Color.parseColor("#000000"));

或者

cardView.setCardBackgroundColor(getResources().getColor(R.color.color_black));

关于java - Android - CardView 背景始终为灰色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43781009/

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