我的cardview带有圆角,并且里面有imageview。我要设置背景色:
cv.setBackgroundColor(Color.RED)
但是在这种情况下,角不是圆的 enter image description here
我尝试了
cv.setCardBackgroundColor(Color.RED)
但是在这种情况下,我根本看不到红色(带有任何边距和填充值)
答案 0 :(得分:1)
您需要创建一个Drawable
并将其设置为CardView
的背景。
让我们说这是一个名为CardViewBackground
的可绘制对象
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="@android:color/holo_dark_red"/>
<corners android:radius="10dp">
</shape>
</item>
</selector>
然后在我的CardView
中可以做到
<CardView....
android:background="@drawable/CardViewBackground"
/>