From d4383b7d15db49c77bd70de9693126c97032cd49 Mon Sep 17 00:00:00 2001 From: JackyC99 Date: Wed, 5 Feb 2025 15:10:37 -0500 Subject: [PATCH 1/3] In the layout, constraits were added to all the features so that they are centered --- .idea/gradle.xml | 6 +++--- .idea/migrations.xml | 10 ++++++++++ .idea/runConfigurations.xml | 17 +++++++++++++++++ .idea/vcs.xml | 6 ++++++ app/src/main/res/layout/activity_main.xml | 17 ++++++++++++----- 5 files changed, 48 insertions(+), 8 deletions(-) create mode 100644 .idea/migrations.xml create mode 100644 .idea/runConfigurations.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/gradle.xml b/.idea/gradle.xml index ae388c2..7b3006b 100644 --- a/.idea/gradle.xml +++ b/.idea/gradle.xml @@ -4,16 +4,16 @@ diff --git a/.idea/migrations.xml b/.idea/migrations.xml new file mode 100644 index 0000000..f8051a6 --- /dev/null +++ b/.idea/migrations.xml @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml new file mode 100644 index 0000000..16660f1 --- /dev/null +++ b/.idea/runConfigurations.xml @@ -0,0 +1,17 @@ + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml index ed108fc..0d9b93b 100644 --- a/app/src/main/res/layout/activity_main.xml +++ b/app/src/main/res/layout/activity_main.xml @@ -10,28 +10,35 @@ android:id="@+id/displayTextView" android:layout_width="411dp" android:layout_height="wrap_content" + android:layout_marginTop="56dp" android:gravity="center" android:text="Hello World!" android:textSize="24sp" - tools:layout_editor_absoluteY="53dp" /> + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" />