From b9cc7390e8e8ce64c41c26fb369c98ce669d660c Mon Sep 17 00:00:00 2001 From: wjc <1243177876@qq.com> Date: 星期三, 07 五月 2025 15:02:30 +0800 Subject: [PATCH] Merge branch '1.2.0' --- app/src/main/res/layout/dialog_list.xml | 39 ++++++++++++++++----------------------- 1 files changed, 16 insertions(+), 23 deletions(-) diff --git a/app/src/main/res/layout/dialog_list.xml b/app/src/main/res/layout/dialog_list.xml index 7898d71..0c00708 100644 --- a/app/src/main/res/layout/dialog_list.xml +++ b/app/src/main/res/layout/dialog_list.xml @@ -1,30 +1,23 @@ <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout 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:background="@color/text_60000000"> + android:id="@+id/dialog_parent" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:background="@drawable/dalog_bj_ff1c1c1c" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent"> - <androidx.constraintlayout.widget.ConstraintLayout - android:id="@+id/dialog_parent" - android:layout_width="140.5dp" - android:layout_height="wrap_content" - android:layout_marginStart="20dp" - android:layout_marginTop="40dp" - android:layout_marginEnd="174dp" - android:background="@drawable/language_bj" + <androidx.recyclerview.widget.RecyclerView + android:id="@+id/logic_rcv" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:layout_marginTop="@dimen/dp_6" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" - app:layout_constraintTop_toTopOf="parent"> + app:layout_constraintTop_toTopOf="parent" - <androidx.recyclerview.widget.RecyclerView - android:id="@+id/logic_rcv" - android:layout_width="match_parent" - android:layout_height="match_parent" - android:layout_marginTop="@dimen/dp_6" - app:layout_constraintBottom_toBottomOf="parent" - app:layout_constraintEnd_toEndOf="parent" - app:layout_constraintStart_toStartOf="parent" - app:layout_constraintTop_toTopOf="parent" /> - </androidx.constraintlayout.widget.ConstraintLayout> + /> +</androidx.constraintlayout.widget.ConstraintLayout> -</androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file -- Gitblit v1.8.0