我想在我的recyclerview中添加一个可绘制对象,以覆盖整个卡片视图,但是将其分别设置到每张卡片上,我想要一个背景 PS:请参阅图片进一步澄清
我在cardview和recyclerview中添加了背景,但没有任何改变
这是我的回收站视图
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/harampak"
android:orientation="vertical"
tools:context=".MainActivity">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:text="Suplications/Dua"
android:textAlignment="center"
android:textColor="@color/green"
android:textSize="25sp"
android:textStyle="bold" />
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="4dp"
android:layout_marginEnd="4dp"
android:scrollbars="vertical">
</android.support.v7.widget.RecyclerView>
卡片项目
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/tools"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<android.support.v7.widget.CardView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:cardCornerRadius="4dp"
app:cardElevation="1dp"
app:cardMaxElevation="1dp"
app:cardUseCompatPadding="true"
card_view:cardPreventCornerOverlap="false">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/tit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="4dp"
android:padding="4dp"
android:text="After Rainfall"
android:textColor="@color/green"
android:textSize="25sp" />
</RelativeLayout>
</android.support.v7.widget.CardView>
答案 0 :(得分:0)
如果您试图在每个RecyclerView项目中设置不同的背景图像。然后,您需要在RecyclerVeiw适配器中做两件事。
像这样:
public int[] images = { R.drawable.image, R.drawable.image2, R.drawable.image3, R.drawable.image4 };
@Override
public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {
holder.cardView.setBackgroundResource(images[position % 4]);
}
public class LectureViewHolder extends RecyclerView.ViewHolder {
public CardView cardView;
cardView = itemView.findViewById(R.id.card_view);
}
,它们将在完整的图像阵列后重复出现。