From 90b7acecef96a7b4927301847efbe11a1f0336c2 Mon Sep 17 00:00:00 2001
From: tj <1378534974@qq.com>
Date: 星期四, 20 三月 2025 15:10:38 +0800
Subject: [PATCH] 1.高级安全防护关键词
---
app/src/main/res/layout/fragment_home.xml | 140 ++++++++++++++++++++++++++--------------------
1 files changed, 78 insertions(+), 62 deletions(-)
diff --git a/app/src/main/res/layout/fragment_home.xml b/app/src/main/res/layout/fragment_home.xml
index 87907ab..f5c2f09 100644
--- a/app/src/main/res/layout/fragment_home.xml
+++ b/app/src/main/res/layout/fragment_home.xml
@@ -13,99 +13,115 @@
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:orientation="vertical"
- android:padding="16dp">
+ android:orientation="vertical">
- <!-- 我的快递板块 -->
+ <!-- 顶部广告位 -->
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:layout_marginBottom="16dp"
app:cardCornerRadius="8dp"
app:cardElevation="2dp">
+
+ <ImageView
+ android:id="@+id/adBanner"
+ android:layout_width="match_parent"
+ android:layout_height="80dp"
+ android:scaleType="centerCrop"/>
+ </androidx.cardview.widget.CardView>
- <LinearLayout
+ <!-- 快递/财务切换区域 -->
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal"
+ android:layout_marginBottom="8dp">
+
+ <TextView
+ android:id="@+id/tabExpress"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:text="快递"
+ android:gravity="center"
+ android:padding="8dp"
+ android:textSize="16sp"
+ android:textStyle="bold"/>
+
+ <TextView
+ android:id="@+id/tabFinance"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:text="财务"
+ android:gravity="center"
+ android:padding="8dp"
+ android:textSize="16sp"/>
+
+ <TextView
+ android:id="@+id/others"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:text="其他"
+ android:gravity="center"
+ android:padding="8dp"
+ android:textSize="16sp"/>
+ </LinearLayout>
+
+ <!-- 内容区域 -->
+ <FrameLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_margin="16dp">
+
+ <!-- 快递内容 -->
+ <androidx.cardview.widget.CardView
+ android:id="@+id/expressContent"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:orientation="vertical">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="我的快递"
- android:textColor="#333333"
- android:textSize="16sp"
- android:textStyle="bold"/>
+ app:cardBackgroundColor="@color/light_blue_50"
+ app:cardCornerRadius="8dp"
+ app:cardElevation="0dp">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/express_recycler"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:layout_marginTop="8dp" />
+ android:padding="8dp"/>
+ </androidx.cardview.widget.CardView>
- </LinearLayout>
- </androidx.cardview.widget.CardView>
-
- <!-- 我的财务板块 -->
- <androidx.cardview.widget.CardView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginBottom="16dp"
- app:cardCornerRadius="8dp"
- app:cardElevation="2dp">
-
- <LinearLayout
+ <!-- 财务内容 -->
+ <androidx.cardview.widget.CardView
+ android:id="@+id/financeContent"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:orientation="vertical"
- android:padding="16dp"
- android:background="#E8F5E9">
+ 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:layout_marginTop="8dp"/>
+ android:padding="8dp"/>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="我的财务"
- android:textColor="#333333"
- android:textSize="16sp"
- android:textStyle="bold"/>
- </LinearLayout>
- </androidx.cardview.widget.CardView>
+ </androidx.cardview.widget.CardView>
- <!-- 纪念日板块 -->
+ </FrameLayout>
+
+ <!-- 底部广告位 -->
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:layout_marginBottom="16dp"
app:cardCornerRadius="8dp"
app:cardElevation="2dp">
-
- <LinearLayout
+
+ <ImageView
+ android:id="@+id/bottomAdBanner"
android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:padding="16dp"
- android:background="#FFF3E0">
-
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/memorial_recycler"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="8dp"/>
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="纪念日"
- android:textColor="#333333"
- android:textSize="16sp"
- android:textStyle="bold"/>
- </LinearLayout>
+ android:layout_height="80dp"
+ android:scaleType="centerCrop"/>
</androidx.cardview.widget.CardView>
</LinearLayout>
--
Gitblit v1.9.3