From 82fbf5fc5c45bf592d277ee3757e102f867fbab2 Mon Sep 17 00:00:00 2001 From: Runt <qingingrunt2010@qq.com> Date: Tue, 29 Mar 2022 15:53:33 +0000 Subject: [PATCH] 简单视图搭建 --- app/src/main/res/layout/activity_main.xml | 64 +++++++++++++++++++++++++++++--- 1 files changed, 58 insertions(+), 6 deletions(-) diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml index 4fc2444..fdf1f7a 100644 --- a/app/src/main/res/layout/activity_main.xml +++ b/app/src/main/res/layout/activity_main.xml @@ -6,13 +6,65 @@ android:layout_height="match_parent" tools:context=".MainActivity"> - <TextView + <EditText + android:id="@+id/edit" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:minHeight="200dp" + android:maxHeight="500dp" + android:hint="输入歌词" + android:padding="10dp" + android:gravity="left" + android:scrollbars="vertical" + app:layout_constraintTop_toTopOf="parent" + app:layout_constraintRight_toRightOf="parent" + app:layout_constraintLeft_toLeftOf="parent" /> + + <androidx.appcompat.widget.AppCompatButton + android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:text="Hello World!" - app:layout_constraintBottom_toBottomOf="parent" - app:layout_constraintLeft_toLeftOf="parent" - app:layout_constraintRight_toRightOf="parent" - app:layout_constraintTop_toTopOf="parent" /> + android:text="确认" + android:layout_margin="10dp" + app:layout_constraintBottom_toBottomOf="@id/edit" + app:layout_constraintRight_toRightOf="@id/edit"/> + <TextView + android:id="@+id/txt_local" + android:layout_width="match_parent" + android:layout_height="40dp" + android:text="本地歌词" + android:gravity="center_vertical" + android:paddingLeft="16dp" + android:textSize="16sp" + android:background="@drawable/bg_white" + app:layout_constraintTop_toBottomOf="@id/edit" + app:layout_constraintRight_toRightOf="parent" + app:layout_constraintLeft_toLeftOf="parent"/> + <TextView + android:id="@+id/txt_favorite" + android:layout_width="match_parent" + android:layout_height="40dp" + android:text="我的收藏" + android:gravity="center_vertical" + android:paddingLeft="16dp" + android:textSize="16sp" + android:background="@drawable/bg_white" + app:layout_constraintTop_toBottomOf="@id/txt_local" + app:layout_constraintRight_toRightOf="parent" + app:layout_constraintLeft_toLeftOf="parent"/> + + + <TextView + android:id="@+id/txt_setting" + android:layout_width="match_parent" + android:layout_height="40dp" + android:text="设置" + android:gravity="center_vertical" + android:paddingLeft="16dp" + android:textSize="16sp" + android:background="@drawable/bg_white" + app:layout_constraintTop_toBottomOf="@id/txt_favorite" + app:layout_constraintRight_toRightOf="parent" + app:layout_constraintLeft_toLeftOf="parent"/> </androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file -- Gitblit v1.9.1