From cf761dbce02ea1da7682265853354ca74dc2c31f Mon Sep 17 00:00:00 2001
From: wjc <1243177876@qq.com>
Date: 星期二, 26 八月 2025 17:30:42 +0800
Subject: [PATCH] 2025年08月26日17:30:41
---
app/src/main/res/layout/dialog_static_list.xml | 140 ++++++++++++++++++++--------------------------
1 files changed, 62 insertions(+), 78 deletions(-)
diff --git a/app/src/main/res/layout/dialog_static_list.xml b/app/src/main/res/layout/dialog_static_list.xml
index b3dc72f..e3fa811 100644
--- a/app/src/main/res/layout/dialog_static_list.xml
+++ b/app/src/main/res/layout/dialog_static_list.xml
@@ -1,94 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
-<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
- android:layout_height="match_parent">
+ android:layout_height="wrap_content"
+ android:background="@color/text_FF1C1C1E"
+ android:orientation="vertical">
- <androidx.constraintlayout.widget.ConstraintLayout
+
+ <LinearLayout
+ android:id="@+id/hdl_china_ll"
android:layout_width="match_parent"
- android:layout_height="@dimen/dp_200"
- android:layout_marginStart="@dimen/dp_20"
- android:layout_marginEnd="@dimen/dp_20"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent">
+ android:layout_height="@dimen/dp_50"
+ android:gravity="center"
+ android:orientation="horizontal">
- <LinearLayout
- android:id="@+id/hdl_china_ll"
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_50"
- android:background="@color/ffffff"
- android:gravity="center"
- android:orientation="horizontal"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent">
+ <TextView
+ android:id="@+id/hdl_china_tv"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="HDL China"
+ android:textColor="@color/text_FFACACAC"
+ android:textSize="@dimen/text_14" />
+ </LinearLayout>
- <TextView
- android:id="@+id/hdl_china_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="HDL China"
- android:textColor="@color/text_E6000000"
- android:textSize="@dimen/text_18" />
- </LinearLayout>
+ <View
+ android:id="@+id/line_v"
+ android:layout_width="match_parent"
+ android:layout_height="0.5dp"
+ android:background="@color/text_1AFFFFFF"
- <View
- android:id="@+id/line_v"
- android:layout_width="match_parent"
- android:layout_height="0.5dp"
- android:background="@color/text_E1E1E1"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toBottomOf="@+id/hdl_china_ll"
+ />
+
+
+ <LinearLayout
+ android:id="@+id/hdl_bahrain_ll"
+ android:layout_width="match_parent"
+ android:layout_height="@dimen/dp_50"
+ android:gravity="center"
+ android:orientation="horizontal">
+
+ <TextView
+ android:id="@+id/hdl_bahrain_tv"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="HDL Bahrain"
+ android:textColor="@color/text_FFACACAC"
+ android:textSize="@dimen/text_14"
/>
+ </LinearLayout>
+ <View
+ android:layout_width="match_parent"
+ android:layout_height="10dp"
+ android:background="@color/text_FF000000"
- <LinearLayout
- android:id="@+id/hdl_bahrain_ll"
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_50"
- android:background="@color/ffffff"
- android:gravity="center"
- android:orientation="horizontal"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toBottomOf="@+id/line_v">
+ />
- <TextView
- android:id="@+id/hdl_bahrain_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="HDL Bahrain"
- android:textColor="@color/text_E6000000"
- android:textSize="@dimen/text_18"
+ <LinearLayout
+ android:id="@+id/hdl_cancel_ll"
+ android:layout_width="match_parent"
+ android:layout_height="@dimen/dp_50"
+ android:gravity="center"
+ android:orientation="horizontal">
- />
- </LinearLayout>
+ <TextView
+ android:id="@+id/hdl_cancel_tv"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/loading_cancel"
+ android:textColor="@color/text_FF5B5B5B"
+ android:textSize="@dimen/text_14"
- <LinearLayout
- android:id="@+id/hdl_cancel_ll"
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_50"
- android:layout_marginTop="@dimen/dp_20"
- android:background="@color/ffffff"
- android:gravity="center"
- android:orientation="horizontal"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toBottomOf="@+id/hdl_bahrain_ll">
+ />
+ </LinearLayout>
+</LinearLayout>
- <TextView
- android:id="@+id/hdl_cancel_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/loading_cancel"
- android:textColor="@color/text_E6000000"
- android:textSize="@dimen/text_18"
-
- />
- </LinearLayout>
- </androidx.constraintlayout.widget.ConstraintLayout>
-
-</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
--
Gitblit v1.8.0