From 42cd7cb06a1076749d366580afd5c6205f0a3c89 Mon Sep 17 00:00:00 2001 From: cloudroam <cloudroam> Date: 星期三, 02 四月 2025 10:38:07 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- app/src/main/res/layout/fragment_dashboard.xml | 112 +++++++++++++++++++++++++++++++++++++++++++++++--------- 1 files changed, 94 insertions(+), 18 deletions(-) diff --git a/app/src/main/res/layout/fragment_dashboard.xml b/app/src/main/res/layout/fragment_dashboard.xml index ddd092e..21efdba 100644 --- a/app/src/main/res/layout/fragment_dashboard.xml +++ b/app/src/main/res/layout/fragment_dashboard.xml @@ -82,34 +82,59 @@ android:layout_height="wrap_content" android:orientation="horizontal" android:padding="16dp" - android:gravity="center_vertical"> + android:weightSum="3"> - <ImageView - android:layout_width="48dp" - android:layout_height="48dp" - android:src="@drawable/resource_package" /> - - <TextView - android:id="@+id/text_package_count" - android:layout_width="wrap_content" + <LinearLayout + android:layout_width="0dp" android:layout_height="wrap_content" - android:layout_marginStart="16dp" - android:textSize="24sp" - android:textStyle="bold" - tools:text="4个" /> + android:layout_weight="1" + android:gravity="center"> + + <ImageView + android:layout_width="48dp" + android:layout_height="48dp" + android:src="@drawable/resource_package" /> + </LinearLayout> + + <Space + android:layout_width="0dp" + android:layout_height="wrap_content" + android:layout_weight="1" /> + + <LinearLayout + android:layout_width="0dp" + android:layout_height="wrap_content" + android:layout_weight="1" + android:gravity="center"> + + <TextView + android:id="@+id/text_package_count" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textSize="24sp" + android:textStyle="bold" + tools:text="4个" /> + </LinearLayout> </LinearLayout> </androidx.cardview.widget.CardView> - <!-- 包裹列表 --> + <!-- 年度统计布局 --> + <include + android:id="@+id/layout_year_stats" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:visibility="gone" + app:layout_constraintTop_toBottomOf="@id/card_package_stats" + layout="@layout/layout_year_stats" /> + + <!-- 包裹列表和统计图表 --> <androidx.core.widget.NestedScrollView android:layout_width="match_parent" android:layout_height="0dp" android:fillViewport="true" - android:clipToPadding="false" - app:layout_constraintTop_toBottomOf="@id/card_package_stats" - app:layout_constraintBottom_toBottomOf="parent" - android:layout_marginBottom="56dp"> + app:layout_constraintTop_toBottomOf="@id/layout_year_stats" + app:layout_constraintBottom_toBottomOf="parent"> <ViewFlipper android:id="@+id/view_flipper_stats" @@ -134,4 +159,55 @@ </ViewFlipper> </androidx.core.widget.NestedScrollView> + <!-- 🔹 遮罩层 --> + <View + android:id="@+id/view_overlay" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:background="@mipmap/overlay2" + android:elevation="10dp" + android:visibility="gone" + app:layout_constraintTop_toTopOf="parent" + app:layout_constraintBottom_toBottomOf="parent" /> + + <!-- 🔹 遮罩层上的按钮 --> + <!-- 🔹 遮罩层上的内容容器(LinearLayout) --> + <LinearLayout + android:id="@+id/overlay_content" + android:layout_width="300dp" + android:layout_height="wrap_content" + android:gravity="center" + android:orientation="horizontal" + android:padding="10dp" + android:background="@drawable/overlay_black_background" + android:elevation="20dp" + android:translationZ="20dp" + android:visibility="gone" + app:layout_constraintTop_toTopOf="parent" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintEnd_toEndOf="parent"> + + + <ImageView + android:id="@+id/overlay_content_vip_image" + android:layout_width="40dp" + android:layout_height="40dp" + android:layout_marginLeft="10dp" + android:layout_marginRight="10dp" + android:scaleType="centerCrop" + android:src="@mipmap/vip_crown" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> + + <!-- 🔹 示例内容:标题 --> + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="免费查看统计数据" + android:textSize="18sp" + android:textColor="#EEBC93" /> + + </LinearLayout> + </androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file -- Gitblit v1.9.3