From 2b6fd0451bfa358052ac9eb061ec1ed595587e9e Mon Sep 17 00:00:00 2001
From: Linjiajia <319408893@qq.com>
Date: 星期二, 04 四月 2023 19:52:32 +0800
Subject: [PATCH] 改bug、

---
 app/src/main/res/layout/item_family_memorabilia.xml |   95 ++++++-----------------------------------------
 1 files changed, 13 insertions(+), 82 deletions(-)

diff --git a/app/src/main/res/layout/item_family_memorabilia.xml b/app/src/main/res/layout/item_family_memorabilia.xml
index 4e6e118..e627610 100644
--- a/app/src/main/res/layout/item_family_memorabilia.xml
+++ b/app/src/main/res/layout/item_family_memorabilia.xml
@@ -1,6 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <layout xmlns:android="http://schemas.android.com/apk/res/android"
-    xmlns:app="http://schemas.android.com/apk/res-auto">
+    xmlns:app="http://schemas.android.com/apk/res-auto"
+    xmlns:tools="http://schemas.android.com/tools">
 
     <data>
         <variable
@@ -15,14 +16,14 @@
         <androidx.cardview.widget.CardView
             android:id="@+id/cardView"
             android:layout_width="match_parent"
-            android:layout_height="40dp"
+            android:layout_height="wrap_content"
             android:layout_margin="@dimen/dp_2"
             app:cardCornerRadius="@dimen/dp_10"
             app:cardBackgroundColor="@color/color_card_pink"
             >
             <LinearLayout
                 android:layout_width="match_parent"
-                android:layout_height="wrap_content"
+                android:layout_height="40dp"
                 android:orientation="vertical"
                 >
                 <RelativeLayout
@@ -154,86 +155,13 @@
                         android:orientation="horizontal"
                         android:layout_marginBottom="@dimen/dp_15"
                         >
-
-                        <LinearLayout
-                            android:layout_width="wrap_content"
+                        <androidx.recyclerview.widget.RecyclerView
+                            android:id="@+id/rv_image"
+                            android:layout_width="match_parent"
                             android:layout_height="wrap_content"
-                            android:orientation="vertical"
-                            android:gravity="center"
-                            >
-                            <ImageView
-                                android:layout_width="@dimen/dp_70"
-                                android:layout_height="@dimen/dp_45"
-                                android:background="@drawable/img_sakura"
-                                android:layout_marginBottom="@dimen/dp_6"
-                                />
-                            <TextView
-                                android:layout_width="wrap_content"
-                                android:layout_height="wrap_content"
-                                android:text="sakura.jpg"
-                                android:textSize="@dimen/sp_10"
-                                android:textColor="@color/black"
-                                />
-                        </LinearLayout>
-                        <LinearLayout
-                            android:layout_width="wrap_content"
-                            android:layout_height="wrap_content"
-                            android:orientation="vertical"
-                            android:gravity="center"
-                            android:layout_marginStart="@dimen/dp_10"
-                            >
-                            <ImageView
-                                android:layout_width="@dimen/dp_70"
-                                android:layout_height="@dimen/dp_45"
-                                android:background="@drawable/img_lotus"
-                                android:layout_marginBottom="@dimen/dp_6"
-                                />
-                            <TextView
-                                android:layout_width="wrap_content"
-                                android:layout_height="wrap_content"
-                                android:text="lotus.jpg"
-                                android:textSize="@dimen/sp_10"
-                                android:textColor="@color/black"
-                                />
-                        </LinearLayout>
-                        <LinearLayout
-                            android:layout_width="wrap_content"
-                            android:layout_height="wrap_content"
-                            android:orientation="vertical"
-                            android:gravity="center"
-                            android:layout_marginStart="@dimen/dp_10"
-                            >
-                            <androidx.cardview.widget.CardView
-                                android:layout_width="@dimen/dp_70"
-                                android:layout_height="@dimen/dp_45"
-                                android:layout_marginBottom="@dimen/dp_6"
-                                app:cardCornerRadius="@dimen/dp_5"
-                                >
-                                <ImageView
-                                    android:layout_width="@dimen/dp_70"
-                                    android:layout_height="@dimen/dp_45"
-                                    android:background="@drawable/img_sakura"
-                                    />
-                                <View
-                                    android:layout_width="match_parent"
-                                    android:layout_height="match_parent"
-                                    android:background="#52000000"
-                                    />
-                                <ImageView
-                                    android:layout_width="wrap_content"
-                                    android:layout_height="wrap_content"
-                                    android:background="@drawable/ic_play"
-                                    android:layout_gravity="center"
-                                    />
-                            </androidx.cardview.widget.CardView>
-                            <TextView
-                                android:layout_width="wrap_content"
-                                android:layout_height="wrap_content"
-                                android:text="sakura.mp4"
-                                android:textSize="@dimen/sp_10"
-                                android:textColor="@color/black"
-                                />
-                        </LinearLayout>
+                            tools:listitem="@layout/item_image"
+                            tools:itemCount="3"
+                            />
 
                     </LinearLayout>
                     <LinearLayout
@@ -243,6 +171,7 @@
                         android:layout_marginBottom="@dimen/dp_12"
                         >
                         <LinearLayout
+                            android:id="@+id/layout_modify"
                             android:layout_width="wrap_content"
                             android:layout_height="wrap_content"
                             >
@@ -263,6 +192,7 @@
                                 />
                         </LinearLayout>
                         <LinearLayout
+                            android:id="@+id/layout_delete"
                             android:layout_width="wrap_content"
                             android:layout_height="wrap_content"
                             android:layout_alignParentEnd="true"
@@ -292,4 +222,5 @@
         </androidx.cardview.widget.CardView>
 
     </LinearLayout>
+
 </layout>
\ No newline at end of file

--
Gitblit v1.9.1