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 | 54 +++++++++++++++++++++---------------------------------
1 files changed, 21 insertions(+), 33 deletions(-)
diff --git a/app/src/main/res/layout/dialog_static_list.xml b/app/src/main/res/layout/dialog_static_list.xml
index d8106a6..e3fa811 100644
--- a/app/src/main/res/layout/dialog_static_list.xml
+++ b/app/src/main/res/layout/dialog_static_list.xml
@@ -1,33 +1,26 @@
<?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="@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="wrap_content"
+ android:background="@color/text_FF1C1C1E"
+ android:orientation="vertical">
<LinearLayout
android:id="@+id/hdl_china_ll"
android:layout_width="match_parent"
android:layout_height="@dimen/dp_50"
- android:background="@color/text_FF333738"
android:gravity="center"
- android:orientation="horizontal"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent">
+ android:orientation="horizontal">
<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_E6FFFFFF"
- android:textSize="@dimen/text_18" />
+ android:textColor="@color/text_FFACACAC"
+ android:textSize="@dimen/text_14" />
</LinearLayout>
<View
@@ -35,9 +28,6 @@
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="@color/text_1AFFFFFF"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toBottomOf="@+id/hdl_china_ll"
/>
@@ -46,45 +36,43 @@
android:id="@+id/hdl_bahrain_ll"
android:layout_width="match_parent"
android:layout_height="@dimen/dp_50"
- android:background="@color/text_FF333738"
android:gravity="center"
- android:orientation="horizontal"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toBottomOf="@+id/line_v">
+ 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_E6FFFFFF"
- android:textSize="@dimen/text_18"
+ 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_cancel_ll"
android:layout_width="match_parent"
android:layout_height="@dimen/dp_50"
- android:layout_marginTop="@dimen/dp_20"
- android:background="@color/text_FF333738"
android:gravity="center"
- android:orientation="horizontal"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toBottomOf="@+id/hdl_bahrain_ll">
+ android:orientation="horizontal">
<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_E6FFFFFF"
- android:textSize="@dimen/text_18"
+ android:textColor="@color/text_FF5B5B5B"
+ android:textSize="@dimen/text_14"
/>
</LinearLayout>
-</androidx.constraintlayout.widget.ConstraintLayout>
+</LinearLayout>
--
Gitblit v1.8.0