From 1a8ba64b9cca5aaa98c4f84602f0fb78d3b6b6b4 Mon Sep 17 00:00:00 2001
From: wjc <1243177876@qq.com>
Date: 星期三, 25 十二月 2024 13:27:02 +0800
Subject: [PATCH] 2024年12月25日13:26:59

---
 app/src/main/res/layout/dialog_static_list.xml |   50 +++++++++++++++++++-------------------------------
 1 files changed, 19 insertions(+), 31 deletions(-)

diff --git a/app/src/main/res/layout/dialog_static_list.xml b/app/src/main/res/layout/dialog_static_list.xml
index e827916..140e028 100644
--- a/app/src/main/res/layout/dialog_static_list.xml
+++ b/app/src/main/res/layout/dialog_static_list.xml
@@ -1,25 +1,18 @@
 <?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_FF222222"
+    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_FF222222"
         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"
@@ -27,7 +20,7 @@
             android:layout_height="wrap_content"
             android:text="HDL China"
             android:textColor="@color/text_E6FFFFFF"
-            android:textSize="@dimen/text_18" />
+            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,12 +36,8 @@
         android:id="@+id/hdl_bahrain_ll"
         android:layout_width="match_parent"
         android:layout_height="@dimen/dp_50"
-        android:background="@color/text_FF222222"
         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"
@@ -59,32 +45,34 @@
             android:layout_height="wrap_content"
             android:text="HDL Bahrain"
             android:textColor="@color/text_E6FFFFFF"
-            android:textSize="@dimen/text_18"
+            android:textSize="@dimen/text_14"
 
             />
     </LinearLayout>
+
+    <View
+        android:layout_width="match_parent"
+        android:layout_height="20dp"
+        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_FF222222"
         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_66FFFFFF"
+            android:textSize="@dimen/text_14"
 
             />
     </LinearLayout>
-</androidx.constraintlayout.widget.ConstraintLayout>
+</LinearLayout>
 

--
Gitblit v1.8.0