From fb67a95f0e861b1a1195ef54dbe5366b7518ed94 Mon Sep 17 00:00:00 2001 From: Mohamed Metwalli <mohamed.metwalli@sap.com> Date: Thu, 20 May 2021 10:47:23 +0200 Subject: [PATCH] Remove fitsSystemWindows from fragments (#3233) --- .../contact_diary_add_location_fragment.xml | 1 - .../layout/contact_diary_add_person_fragment.xml | 15 +++++++-------- .../main/res/layout/fragment_confirm_check_in.xml | 1 - .../main/res/layout/fragment_edit_check_in.xml | 1 - 4 files changed, 7 insertions(+), 11 deletions(-) diff --git a/Corona-Warn-App/src/main/res/layout/contact_diary_add_location_fragment.xml b/Corona-Warn-App/src/main/res/layout/contact_diary_add_location_fragment.xml index efca1f88d..4625eaed1 100644 --- a/Corona-Warn-App/src/main/res/layout/contact_diary_add_location_fragment.xml +++ b/Corona-Warn-App/src/main/res/layout/contact_diary_add_location_fragment.xml @@ -4,7 +4,6 @@ android:layout_height="match_parent" android:background="@color/colorBackground" android:fillViewport="true" - android:fitsSystemWindows="true" android:transitionName="contact_diary_shared_content"> <androidx.constraintlayout.widget.ConstraintLayout diff --git a/Corona-Warn-App/src/main/res/layout/contact_diary_add_person_fragment.xml b/Corona-Warn-App/src/main/res/layout/contact_diary_add_person_fragment.xml index c77fce4ca..777f097fb 100644 --- a/Corona-Warn-App/src/main/res/layout/contact_diary_add_person_fragment.xml +++ b/Corona-Warn-App/src/main/res/layout/contact_diary_add_person_fragment.xml @@ -2,9 +2,8 @@ xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" - android:fillViewport="true" android:background="@color/colorBackground" - android:fitsSystemWindows="true" + android:fillViewport="true" android:transitionName="contact_diary_shared_content"> <androidx.constraintlayout.widget.ConstraintLayout @@ -20,9 +19,9 @@ android:layout_marginTop="@dimen/spacing_tiny" android:contentDescription="@string/accessibility_close" android:padding="@dimen/spacing_mega_tiny" - app:srcCompat="@drawable/ic_close" app:layout_constraintStart_toStartOf="parent" - app:layout_constraintTop_toTopOf="parent" /> + app:layout_constraintTop_toTopOf="parent" + app:srcCompat="@drawable/ic_close" /> <TextView android:id="@+id/contact_diary_person_title" @@ -44,9 +43,9 @@ android:layout_marginEnd="@dimen/spacing_tiny" android:contentDescription="@string/contact_diary_delete_icon_content_description" android:padding="@dimen/button_icon_padding" - app:srcCompat="@drawable/ic_baseline_delete" app:layout_constraintEnd_toEndOf="parent" - app:layout_constraintTop_toTopOf="parent" /> + app:layout_constraintTop_toTopOf="parent" + app:srcCompat="@drawable/ic_baseline_delete" /> <com.google.android.material.textfield.TextInputLayout android:id="@+id/person_name_input_layout" @@ -65,12 +64,12 @@ android:id="@+id/person_name_input" android:layout_width="match_parent" android:layout_height="wrap_content" + android:focusable="true" android:imeOptions="actionNext" android:inputType="textCapWords" - android:focusable="true" android:maxLength="250" /> - <requestFocus/> + <requestFocus /> </com.google.android.material.textfield.TextInputLayout> diff --git a/Corona-Warn-App/src/main/res/layout/fragment_confirm_check_in.xml b/Corona-Warn-App/src/main/res/layout/fragment_confirm_check_in.xml index 4473a4a36..787d27288 100644 --- a/Corona-Warn-App/src/main/res/layout/fragment_confirm_check_in.xml +++ b/Corona-Warn-App/src/main/res/layout/fragment_confirm_check_in.xml @@ -64,7 +64,6 @@ android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" - android:fitsSystemWindows="true" app:layout_collapseMode="pin" app:layout_scrollFlags="scroll|enterAlways" app:navigationIcon="@drawable/ic_close" diff --git a/Corona-Warn-App/src/main/res/layout/fragment_edit_check_in.xml b/Corona-Warn-App/src/main/res/layout/fragment_edit_check_in.xml index c81751a1d..d36602946 100644 --- a/Corona-Warn-App/src/main/res/layout/fragment_edit_check_in.xml +++ b/Corona-Warn-App/src/main/res/layout/fragment_edit_check_in.xml @@ -67,7 +67,6 @@ android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" - android:fitsSystemWindows="true" app:layout_collapseMode="pin" app:layout_scrollFlags="scroll|enterAlways" app:navigationIcon="@drawable/ic_close" -- GitLab