更改卡的背景(Android cardView)

时间:2016-06-29 13:36:14

标签: android android-layout android-cardview

我很难在Android(cardView)中更改卡片的背景颜色。

我在XML中做到了这一点:

<android.support.v7.widget.CardView
        android:id="@+id/card_view"
        android:layout_width="fill_parent"
        android:layout_height="120dp"
        android:layout_margin="5dp"
        android:layout_gravity="bottom"
        card_view:cardCornerRadius="2dp"
        card_view:contentPadding="10dp"
        card_view:cardBackgroundColor="#2600e622">

        <RelativeLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent">

但它没有用。我一直默认为白色底色。

我不知道从哪里开始。 有什么想法吗?

另外 - 我想将卡片放在屏幕中央,卡片最终位于屏幕中央但位于屏幕顶部。 我是否可以了解如何将卡片放在屏幕中央?

感谢。

4 个答案:

答案 0 :(得分:5)

这应该有效。

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    android:id="@+id/card_view"
    android:layout_width="match_parent"
    android:layout_height="120dp"
    android:layout_margin="5dp"
    android:layout_gravity="center"
    card_view:cardCornerRadius="2dp"
    card_view:contentPadding="10dp"
    card_view:cardBackgroundColor="#00490b">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        // add more views here

    </RelativeLayout>
</android.support.v7.widget.CardView>

答案 1 :(得分:1)

我使用此代码以编程方式设置:

card.setCardBackgroundColor(Color.WHITE);

或者在XML中,您可以使用以下代码:

card_view:cardBackgroundColor="@android:color/white"

答案 2 :(得分:1)

如果你的colors.xml中有这种颜色,例如:

card_name.setCardBackgroundColor(getResources().getColor(R.color.ambar400));

在课堂上使用:

{{1}}

答案 3 :(得分:0)

如果他是您的cardview的根布局,请将颜色设置为相对布局背景:

<RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:colorBackground="#2600e622">