From 9c67fc611daf6f9cb7c05f72d598543bff2d26f1 Mon Sep 17 00:00:00 2001 From: mac <user@users-MacBook-Pro.local> Date: 星期五, 25 十月 2024 11:23:17 +0800 Subject: [PATCH] s2024年10月25日11:23:14 --- 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..5be0d55 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/ffffff_8" + 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