Recyclerview项目行背景颜色问题

时间:2017-06-22 13:47:12

标签: android android-recyclerview recyclerview-layout

我正在使用recyclerview列出sql中的项目,我对项目行的背景颜色有问题...我试过更改它并没有任何反应。

这是我的行布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:background="@color/bg_main"
    android:layout_height="wrap_content">

    <android.support.v7.widget.CardView
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

    <LinearLayout
        android:padding="10dp"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <de.hdodenhof.circleimageview.CircleImageView
            android:layout_width="80dp"
            android:layout_height="80dp"
            android:src="@drawable/default_avatar"/>

        <RelativeLayout
            android:padding="10dip"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <LinearLayout
                android:orientation="vertical"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content">

            <TextView
                android:textSize="18sp"
                android:textColor="@color/text_color_black"
                android:id="@+id/opponentsName"
                android:text="Roger Nkosi"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />

            <TextView
                android:layout_marginTop="5dp"
                android:textSize="14sp"
                android:textColor="@color/brownish_gray"
                android:id="@+id/callStatus"
                android:text="Roger Nkosi"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
            </LinearLayout>

            <TextView
                android:id="@+id/dateCallMade"
                android:layout_alignParentRight="true"
                android:text="14:00"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />

        </RelativeLayout>

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

</LinearLayout>

这是我片段的布局

<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/bg_main"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    tools:context=".view.fragments.PrivateVoiceCallsDialogFragment">


   <!-- A RecyclerView with some commonly used attributes -->
   <android.support.v7.widget.RecyclerView
       android:scrollbars="vertical"
       android:id="@+id/voice_recycler_view"
       android:layout_height="match_parent"
       android:layout_width="match_parent" />

</android.support.v4.widget.SwipeRefreshLayout>

* bg_main是一个简单的白色,有或没有它,行项很暗......

2 个答案:

答案 0 :(得分:0)

在您的cardView组件中使用cardBackgroundColor属性,它将执行所需的操作。

答案 1 :(得分:0)

我认为CardView与您的父线性层重叠,因此您无法看到颜色。在CardView上使用cardBackgroundColor属性或更改其子linearLayout的背景颜色