在创建recyclerview时如何解决此问题?

问题描述 投票:0回答:1

我正在尝试使用Recyclerview创建Cardview +GridLayout但是Android Studio告诉我一个错误,我需要知道这里有什么问题A picture showing the error,代码:

<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView 
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="120dp"
android:layout_height="190dp"
xmlns:cardview="http://schemas.android.com/apk/res-auto"
android:layout_margin="5dp"
cardview:cardcornerRadius="4dp">
<LinearLayout
  android:orientation="vertical"
  android:layout_width="match_parent"
  android:layout_height="match_parent">
<ImageView
  android:id="@+id/book_img_id"
  android:layout_width="match_parent"
  android:layout_height="160dp"
  android:scaleType="centerCrop"
  android:background="#2d2d2d"/>
<TextView
  android:id="@+id/book_title_id"
  android:textColor="#2d2d2d"
  android:textSize="13sp"
  android:gravity="center"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:text="سكر"/>
</LinearLayout>
</androidx.cardview.widget.CardView>
xml android-studio android-recyclerview encoding android-cardview
1个回答
0
投票

使用app:cardCornerRadius="4dp"代替cardview:cardCornerRadius="4dp"

cardCornerRadius属性在应用程序下

尝试类似的代码:

<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="120dp"
    android:layout_height="190dp"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    app:cardCornerRadius="4dp">
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <ImageView
            android:layout_width="match_parent"
            android:layout_height="160dp"
            android:src="@mipmap/ic_launcher_round"/>
        <TextView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center"
            android:text="Android"/>
    </LinearLayout>
</androidx.cardview.widget.CardView>

希望对您有帮助

© www.soinside.com 2019 - 2024. All rights reserved.