我不知道为什么我的卡在我的API 21和19仿真器上显得灰色。我以前用CardViews构建了RecyclerViews,它们是白色的。我不会在任何地方改变背景颜色。它在我的API 26模拟器上显得正常。
这是我的卡片布局:
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="vertical">
<TextView
android:id="@+id/text_view_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="8dp"
android:layout_marginTop="8dp"
android:text="Name"
android:textColor="@android:color/black"
android:textSize="20sp" />
<ImageView
android:id="@+id/image_view_upload"
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_below="@+id/text_view_name" />
</RelativeLayout>
这是我的适配器类:
public class ImageAdapter extends RecyclerView.Adapter<ImageAdapter.ImageViewHolder> {
private Context mContext;
private List<Upload> mUploads;
public ImageAdapter(Context context, List<Upload> uploads) {
mContext = context;
mUploads = uploads;
}
@Override
public ImageViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View v = LayoutInflater.from(mContext).inflate(R.layout.image_item, parent, false);
return new ImageViewHolder(v);
}
@Override
public void onBindViewHolder(ImageViewHolder holder, int position) {
Upload upload = mUploads.get(position);
holder.textViewName.setText(upload.getName());
Picasso.with(mContext)
.load(upload.getImageUrl())
.fit()
.centerCrop()
.into(holder.imageView);
}
@Override
public int getItemCount() {
return mUploads.size();
}
class ImageViewHolder extends RecyclerView.ViewHolder {
TextView textViewName;
ImageView imageView;
ImageViewHolder(View itemView) {
super(itemView);
textViewName = itemView.findViewById(R.id.text_view_name);
imageView = itemView.findViewById(R.id.image_view_upload);
}
}
}
我从Firebase存储中加载这些图像。如您所见,我没有在任何地方更改背景颜色。
有什么想法吗?
答案 0 :(得分:5)
我相信您将错误的上下文传递给适配器以使您的布局膨胀。尝试传递活动或片段上下文,而不是传递 applicationConetxt 。 ApplicationContext 不适用您定义的主题。
OR
如果你不想这样做。你需要改变你的carview的背景颜色 像这样:
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:card="http://schemas.android.com/apk/res-auto"
card:cardBackgroundColor="@color/colorPrimary"
android:layout_margin="8dp">
</android.support.v7.widget.CardView>
答案 1 :(得分:1)
我不确定为什么它在api 21上显示为灰色。
但是如果你想要白色背景,那么你可以像这样设置背景颜色。
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:background="#FFFFFF">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="vertical"
android:background="#FFFFFF">
<TextView
android:id="@+id/text_view_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="8dp"
android:layout_marginTop="8dp"
android:text="Name"
android:textColor="@android:color/black"
android:textSize="20sp" />
<ImageView
android:id="@+id/image_view_upload"
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_below="@+id/text_view_name" />
</RelativeLayout>
另请注意,只有api 21支持cardview。
答案 2 :(得分:-1)
正如您在此链接中看到的那样
android support(cardView, RecyclerView)library in older versions with target kitkat
您的CardView仅在API级别26之前兼容,这就是我要求您发布Gradle依赖项的原因
您可以尝试更改最低API级别并查看是否有任何更改