From ef20591cba97b5c18b12b6ea3d0d751a6669d9d7 Mon Sep 17 00:00:00 2001 From: cloudroam <cloudroam> Date: 星期三, 26 三月 2025 14:22:04 +0800 Subject: [PATCH] fix 修改表字段前版本 --- app/src/main/res/layout/fragment_home.xml | 34 ++++++---------------------------- 1 files changed, 6 insertions(+), 28 deletions(-) diff --git a/app/src/main/res/layout/fragment_home.xml b/app/src/main/res/layout/fragment_home.xml index 79dd0bb..82554fe 100644 --- a/app/src/main/res/layout/fragment_home.xml +++ b/app/src/main/res/layout/fragment_home.xml @@ -69,39 +69,17 @@ android:layout_height="wrap_content" android:layout_margin="16dp"> - <!-- 快递内容 --> - <androidx.cardview.widget.CardView - android:id="@+id/expressContent" + <androidx.recyclerview.widget.RecyclerView + android:id="@+id/express_recycler" android:layout_width="match_parent" android:layout_height="wrap_content" - app:cardBackgroundColor="@color/light_blue_50" - app:cardCornerRadius="8dp" - app:cardElevation="0dp"> + android:padding="8dp"/> - <androidx.recyclerview.widget.RecyclerView - android:id="@+id/express_recycler" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:padding="8dp"/> - - </androidx.cardview.widget.CardView> - - <!-- 财务内容 --> - <androidx.cardview.widget.CardView - android:id="@+id/financeContent" + <androidx.recyclerview.widget.RecyclerView + android:id="@+id/finance_recycler" android:layout_width="match_parent" android:layout_height="wrap_content" - app:cardBackgroundColor="@color/light_blue_50" - app:cardCornerRadius="8dp" - app:cardElevation="0dp"> - - <androidx.recyclerview.widget.RecyclerView - android:id="@+id/finance_recycler" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:padding="8dp"/> - - </androidx.cardview.widget.CardView> + android:padding="8dp"/> </FrameLayout> -- Gitblit v1.9.3