我在Android中为CardView设置了随机颜色。
Random rnd = new Random();
int color = Color.argb(255, rnd.nextInt(256), rnd.nextInt(256), rnd.nextInt(256));
holder.cardView.setBackgroundColor(color);
如何在运行时以编程方式获取Cardview背景色?
答案 0 :(得分:2)
您可以简单地初始化CardView并设置ID:
作为.xml文件中res / layout的示例:
<android.support.v7.widget.CardView
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/CardView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardElevation="10dp"
app:cardCornerRadius="4dp"
app:cardBackgroundColor="@color/cardview_dark_background"
android:background="@color/cardview_dark_background">
,然后在“活动/片段”中将其初始化,这样:
CardView cardView = (CardView) findViewById(R.id.CardView);
cardView.getCardBackgroundColor();
请注意,此方法返回ColorStateList
而不是单一颜色值
因此要获取单一颜色值,只需调用:
int backgroundColor = cardView.getCardBackgroundColor().getDefaultColor();