diff --git a/app/src/main/java/eu/faircode/email/ConstraintLayoutEx.java b/app/src/main/java/eu/faircode/email/ConstraintLayoutEx.java
new file mode 100644
index 0000000000..523e8db031
--- /dev/null
+++ b/app/src/main/java/eu/faircode/email/ConstraintLayoutEx.java
@@ -0,0 +1,113 @@
+package eu.faircode.email;
+
+/*
+ This file is part of FairEmail.
+
+ FairEmail is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ FairEmail is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with FairEmail. If not, see .
+
+ Copyright 2018-2022 by Marcel Bokhorst (M66B)
+*/
+
+import android.content.Context;
+import android.util.AttributeSet;
+import android.view.MotionEvent;
+
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+import androidx.constraintlayout.widget.ConstraintLayout;
+
+public class ConstraintLayoutEx extends ConstraintLayout {
+ public ConstraintLayoutEx(@NonNull Context context) {
+ super(context);
+ }
+
+ public ConstraintLayoutEx(@NonNull Context context, @Nullable AttributeSet attrs) {
+ super(context, attrs);
+ }
+
+ public ConstraintLayoutEx(@NonNull Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
+ super(context, attrs, defStyleAttr);
+ }
+
+ public ConstraintLayoutEx(@NonNull Context context, @Nullable AttributeSet attrs, int defStyleAttr, int defStyleRes) {
+ super(context, attrs, defStyleAttr, defStyleRes);
+ }
+
+ /*
+ java.lang.IndexOutOfBoundsException: 2, 0
+ at android.text.PackedIntVector.getValue(PackedIntVector.java:75)
+ at android.text.DynamicLayout.getLineStart(DynamicLayout.java:1028)
+ at android.text.Layout.getLineEnd(Layout.java:1675)
+ at android.text.Layout.getOffsetForHorizontal(Layout.java:1544)
+ at android.text.Layout.getOffsetForHorizontal(Layout.java:1529)
+ at android.widget.TextView.getOffsetAtCoordinate(TextView.java:12988)
+ at android.widget.Editor$HandleView.getOffsetAtCoordinate(Editor.java:4875)
+ at android.widget.Editor$InsertionHandleView.updatePosition(Editor.java:5635)
+ at android.widget.Editor$HandleView.onTouchEvent(Editor.java:5301)
+ at android.widget.Editor$InsertionHandleView.onTouchEvent(Editor.java:5464)
+ at android.view.View.dispatchTouchEvent(View.java:14309)
+ at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:3118)
+ at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:2799)
+ at android.widget.PopupWindow$PopupDecorView.dispatchTouchEvent(PopupWindow.java:2553)
+ at android.view.View.dispatchPointerEvent(View.java:14568)
+ at android.view.ViewRootImpl$ViewPostImeInputStage.processPointerEvent(ViewRootImpl.java:6022)
+ at android.view.ViewRootImpl$ViewPostImeInputStage.onProcess(ViewRootImpl.java:5825)
+ at android.view.ViewRootImpl$InputStage.deliver(ViewRootImpl.java:5316)
+ at android.view.ViewRootImpl$InputStage.onDeliverToNext(ViewRootImpl.java:5373)
+ at android.view.ViewRootImpl$InputStage.forward(ViewRootImpl.java:5339)
+ at android.view.ViewRootImpl$AsyncInputStage.forward(ViewRootImpl.java:5491)
+ at android.view.ViewRootImpl$InputStage.apply(ViewRootImpl.java:5347)
+ at android.view.ViewRootImpl$AsyncInputStage.apply(ViewRootImpl.java:5548)
+ at android.view.ViewRootImpl$InputStage.deliver(ViewRootImpl.java:5320)
+ at android.view.ViewRootImpl$InputStage.onDeliverToNext(ViewRootImpl.java:5373)
+ at android.view.ViewRootImpl$InputStage.forward(ViewRootImpl.java:5339)
+ at android.view.ViewRootImpl$InputStage.apply(ViewRootImpl.java:5347)
+ at android.view.ViewRootImpl$InputStage.deliver(ViewRootImpl.java:5320)
+ at android.view.ViewRootImpl.deliverInputEvent(ViewRootImpl.java:8086)
+ at android.view.ViewRootImpl.doProcessInputEvents(ViewRootImpl.java:8037)
+ at android.view.ViewRootImpl.enqueueInputEvent(ViewRootImpl.java:7998)
+ at android.view.ViewRootImpl$WindowInputEventReceiver.onInputEvent(ViewRootImpl.java:8209)
+ at android.view.InputEventReceiver.dispatchInputEvent(InputEventReceiver.java:220)
+ at android.view.InputEventReceiver.nativeConsumeBatchedInputEvents(Native Method)
+ at android.view.InputEventReceiver.consumeBatchedInputEvents(InputEventReceiver.java:200)
+ at android.view.ViewRootImpl.doConsumeBatchedInput(ViewRootImpl.java:8166)
+ at android.view.ViewRootImpl$ConsumeBatchedInputRunnable.run(ViewRootImpl.java:8248)
+ at android.view.Choreographer$CallbackRecord.run(Choreographer.java:972)
+ at android.view.Choreographer.doCallbacks(Choreographer.java:796)
+ at android.view.Choreographer.doFrame(Choreographer.java:724)
+ at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:957)
+ at android.os.Handler.handleCallback(Handler.java:938)
+ at android.os.Handler.dispatchMessage(Handler.java:99)
+ */
+
+ @Override
+ public boolean dispatchTouchEvent(MotionEvent ev) {
+ try {
+ return super.dispatchTouchEvent(ev);
+ } catch (Throwable ex) {
+ Log.w(ex);
+ return false;
+ }
+ }
+
+ @Override
+ public boolean dispatchGenericMotionEvent(MotionEvent event) {
+ try {
+ return super.dispatchGenericMotionEvent(event);
+ } catch (Throwable ex) {
+ Log.w(ex);
+ return false;
+ }
+ }
+}
diff --git a/app/src/main/java/eu/faircode/email/CoordinatorLayoutEx.java b/app/src/main/java/eu/faircode/email/CoordinatorLayoutEx.java
new file mode 100644
index 0000000000..e7e85ba8c2
--- /dev/null
+++ b/app/src/main/java/eu/faircode/email/CoordinatorLayoutEx.java
@@ -0,0 +1,62 @@
+package eu.faircode.email;
+
+/*
+ This file is part of FairEmail.
+
+ FairEmail is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ FairEmail is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with FairEmail. If not, see .
+
+ Copyright 2018-2022 by Marcel Bokhorst (M66B)
+*/
+
+import android.content.Context;
+import android.util.AttributeSet;
+import android.view.MotionEvent;
+
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+import androidx.coordinatorlayout.widget.CoordinatorLayout;
+
+public class CoordinatorLayoutEx extends CoordinatorLayout {
+ public CoordinatorLayoutEx(@NonNull Context context) {
+ super(context);
+ }
+
+ public CoordinatorLayoutEx(@NonNull Context context, @Nullable AttributeSet attrs) {
+ super(context, attrs);
+ }
+
+ public CoordinatorLayoutEx(@NonNull Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
+ super(context, attrs, defStyleAttr);
+ }
+
+ @Override
+ public boolean dispatchTouchEvent(MotionEvent ev) {
+ try {
+ return super.dispatchTouchEvent(ev);
+ } catch (Throwable ex) {
+ Log.w(ex);
+ return false;
+ }
+ }
+
+ @Override
+ public boolean dispatchGenericMotionEvent(MotionEvent event) {
+ try {
+ return super.dispatchGenericMotionEvent(event);
+ } catch (Throwable ex) {
+ Log.w(ex);
+ return false;
+ }
+ }
+}
diff --git a/app/src/main/java/eu/faircode/email/DrawerLayoutEx.java b/app/src/main/java/eu/faircode/email/DrawerLayoutEx.java
index 18a224e811..4b57e3a473 100644
--- a/app/src/main/java/eu/faircode/email/DrawerLayoutEx.java
+++ b/app/src/main/java/eu/faircode/email/DrawerLayoutEx.java
@@ -77,6 +77,16 @@ public class DrawerLayoutEx extends DrawerLayout {
}
}
+ @Override
+ public boolean dispatchTouchEvent(MotionEvent ev) {
+ try {
+ return super.dispatchTouchEvent(ev);
+ } catch (Throwable ex) {
+ Log.w(ex);
+ return false;
+ }
+ }
+
@Override
public boolean dispatchGenericMotionEvent(MotionEvent ev) {
if (isLocked()) {
@@ -89,7 +99,12 @@ public class DrawerLayoutEx extends DrawerLayout {
return content.dispatchGenericMotionEvent(ev);
}
- return super.dispatchGenericMotionEvent(ev);
+ try {
+ return super.dispatchGenericMotionEvent(ev);
+ } catch (Throwable ex) {
+ Log.w(ex);
+ return false;
+ }
}
@Override
diff --git a/app/src/main/java/eu/faircode/email/FrameLayoutEx.java b/app/src/main/java/eu/faircode/email/FrameLayoutEx.java
new file mode 100644
index 0000000000..af716cb364
--- /dev/null
+++ b/app/src/main/java/eu/faircode/email/FrameLayoutEx.java
@@ -0,0 +1,66 @@
+package eu.faircode.email;
+
+/*
+ This file is part of FairEmail.
+
+ FairEmail is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ FairEmail is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with FairEmail. If not, see .
+
+ Copyright 2018-2022 by Marcel Bokhorst (M66B)
+*/
+
+import android.content.Context;
+import android.util.AttributeSet;
+import android.view.MotionEvent;
+import android.widget.FrameLayout;
+
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+
+public class FrameLayoutEx extends FrameLayout {
+ public FrameLayoutEx(@NonNull Context context) {
+ super(context);
+ }
+
+ public FrameLayoutEx(@NonNull Context context, @Nullable AttributeSet attrs) {
+ super(context, attrs);
+ }
+
+ public FrameLayoutEx(@NonNull Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
+ super(context, attrs, defStyleAttr);
+ }
+
+ public FrameLayoutEx(@NonNull Context context, @Nullable AttributeSet attrs, int defStyleAttr, int defStyleRes) {
+ super(context, attrs, defStyleAttr, defStyleRes);
+ }
+
+ @Override
+ public boolean dispatchTouchEvent(MotionEvent ev) {
+ try {
+ return super.dispatchTouchEvent(ev);
+ } catch (Throwable ex) {
+ Log.w(ex);
+ return false;
+ }
+ }
+
+ @Override
+ public boolean dispatchGenericMotionEvent(MotionEvent event) {
+ try {
+ return super.dispatchGenericMotionEvent(event);
+ } catch (Throwable ex) {
+ Log.w(ex);
+ return false;
+ }
+ }
+}
diff --git a/app/src/main/res/layout/action_bar.xml b/app/src/main/res/layout/action_bar.xml
index 369654dff2..d8508a7daa 100644
--- a/app/src/main/res/layout/action_bar.xml
+++ b/app/src/main/res/layout/action_bar.xml
@@ -1,5 +1,5 @@
-
@@ -27,4 +27,4 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/title" />
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/action_button_text.xml b/app/src/main/res/layout/action_button_text.xml
index d141a00415..e486aa5228 100644
--- a/app/src/main/res/layout/action_button_text.xml
+++ b/app/src/main/res/layout/action_button_text.xml
@@ -1,5 +1,5 @@
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_amp.xml b/app/src/main/res/layout/activity_amp.xml
index 3b587cf336..2a442963fd 100644
--- a/app/src/main/res/layout/activity_amp.xml
+++ b/app/src/main/res/layout/activity_amp.xml
@@ -1,4 +1,4 @@
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_answer.xml b/app/src/main/res/layout/activity_answer.xml
index 6e0a9235d7..fec7190010 100644
--- a/app/src/main/res/layout/activity_answer.xml
+++ b/app/src/main/res/layout/activity_answer.xml
@@ -1,4 +1,4 @@
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_billing.xml b/app/src/main/res/layout/activity_billing.xml
index fa467c73fa..37c9c3f1c6 100644
--- a/app/src/main/res/layout/activity_billing.xml
+++ b/app/src/main/res/layout/activity_billing.xml
@@ -1,4 +1,4 @@
-
-
@@ -31,7 +31,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
-
-
+
-
+
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_compose.xml b/app/src/main/res/layout/activity_compose.xml
index b7baf10132..87993ea757 100644
--- a/app/src/main/res/layout/activity_compose.xml
+++ b/app/src/main/res/layout/activity_compose.xml
@@ -1,4 +1,4 @@
-
-
@@ -31,7 +31,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
-
-
+
-
+
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_dsn.xml b/app/src/main/res/layout/activity_dsn.xml
index aad775f385..316849aa08 100644
--- a/app/src/main/res/layout/activity_dsn.xml
+++ b/app/src/main/res/layout/activity_dsn.xml
@@ -1,4 +1,4 @@
-
-
@@ -31,7 +31,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
-
-
+
@@ -59,7 +59,7 @@
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="cardMessage" />
-
+
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_eml.xml b/app/src/main/res/layout/activity_eml.xml
index 96df99d93c..fa36c16b12 100644
--- a/app/src/main/res/layout/activity_eml.xml
+++ b/app/src/main/res/layout/activity_eml.xml
@@ -1,4 +1,4 @@
-
-
@@ -45,7 +45,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvHint">
-
-
+
-
-
+
-
-
+
-
+
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_error.xml b/app/src/main/res/layout/activity_error.xml
index 6ebfeb9334..6b3a7481e4 100644
--- a/app/src/main/res/layout/activity_error.xml
+++ b/app/src/main/res/layout/activity_error.xml
@@ -1,4 +1,4 @@
-
-
@@ -31,7 +31,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
-
-
+
-
+
-
\ No newline at end of file
+
\ 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 715d7834e3..7d39a9115d 100644
--- a/app/src/main/res/layout/activity_main.xml
+++ b/app/src/main/res/layout/activity_main.xml
@@ -1,4 +1,4 @@
-
-
-
-
+
diff --git a/app/src/main/res/layout/activity_signature.xml b/app/src/main/res/layout/activity_signature.xml
index 5f780d7682..1d35730bc8 100644
--- a/app/src/main/res/layout/activity_signature.xml
+++ b/app/src/main/res/layout/activity_signature.xml
@@ -1,12 +1,12 @@
-
-
@@ -78,5 +78,5 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:menu="@menu/action_signature" />
-
-
+
+
diff --git a/app/src/main/res/layout/activity_unsupported.xml b/app/src/main/res/layout/activity_unsupported.xml
index 2f5bdf3972..457e38b9aa 100644
--- a/app/src/main/res/layout/activity_unsupported.xml
+++ b/app/src/main/res/layout/activity_unsupported.xml
@@ -1,5 +1,5 @@
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_view_landscape_split.xml b/app/src/main/res/layout/activity_view_landscape_split.xml
index c4b68fd2ae..b22fbb7dfe 100644
--- a/app/src/main/res/layout/activity_view_landscape_split.xml
+++ b/app/src/main/res/layout/activity_view_landscape_split.xml
@@ -12,7 +12,7 @@
android:focusableInTouchMode="false"
android:orientation="horizontal">
-
-
-
diff --git a/app/src/main/res/layout/activity_view_portrait_split.xml b/app/src/main/res/layout/activity_view_portrait_split.xml
index 2c44c0ac00..29847f799d 100644
--- a/app/src/main/res/layout/activity_view_portrait_split.xml
+++ b/app/src/main/res/layout/activity_view_portrait_split.xml
@@ -12,7 +12,7 @@
android:focusableInTouchMode="false"
android:orientation="vertical">
-
-
-
@@ -52,7 +52,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/cbSemiTransparent" />
-
-
+
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_widget_sync.xml b/app/src/main/res/layout/activity_widget_sync.xml
index fc086edc0c..bd0ef313cb 100644
--- a/app/src/main/res/layout/activity_widget_sync.xml
+++ b/app/src/main/res/layout/activity_widget_sync.xml
@@ -8,7 +8,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context="eu.faircode.email.ActivityWidgetSync">
-
@@ -45,5 +45,5 @@
android:text="@string/title_save"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/btnColor" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_widget_unified.xml b/app/src/main/res/layout/activity_widget_unified.xml
index cef5cc27be..1dc6abda3e 100644
--- a/app/src/main/res/layout/activity_widget_unified.xml
+++ b/app/src/main/res/layout/activity_widget_unified.xml
@@ -8,7 +8,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context="eu.faircode.email.ActivityWidgetUnified">
-
@@ -207,5 +207,5 @@
cbUnseen,cbFlagged,
cbSemiTransparent,btnColor,
tvFontSize,spFontSize,tvPadding,spPadding,btnSave" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_add_image.xml b/app/src/main/res/layout/dialog_add_image.xml
index 0695acddac..51721314df 100644
--- a/app/src/main/res/layout/dialog_add_image.xml
+++ b/app/src/main/res/layout/dialog_add_image.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -145,5 +145,5 @@
android:textStyle="italic"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/cbNotAgain" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_advanced.xml b/app/src/main/res/layout/dialog_advanced.xml
index 7beb3589a4..a01c53175e 100644
--- a/app/src/main/res/layout/dialog_advanced.xml
+++ b/app/src/main/res/layout/dialog_advanced.xml
@@ -7,7 +7,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -58,5 +58,5 @@
android:textColor="?android:attr/textColorPrimary"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvRemark" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_ask_again.xml b/app/src/main/res/layout/dialog_ask_again.xml
index e751819887..e2aee37d92 100644
--- a/app/src/main/res/layout/dialog_ask_again.xml
+++ b/app/src/main/res/layout/dialog_ask_again.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -77,5 +77,5 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/cbNotAgain" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_ask_amp.xml b/app/src/main/res/layout/dialog_ask_amp.xml
index 72c8fcf411..dc786a1c54 100644
--- a/app/src/main/res/layout/dialog_ask_amp.xml
+++ b/app/src/main/res/layout/dialog_ask_amp.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -49,5 +49,5 @@
android:textAppearance="@style/TextAppearance.AppCompat.Small"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvRemark" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_ask_full.xml b/app/src/main/res/layout/dialog_ask_full.xml
index 3a72e34d85..08f01b7db0 100644
--- a/app/src/main/res/layout/dialog_ask_full.xml
+++ b/app/src/main/res/layout/dialog_ask_full.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -43,5 +43,5 @@
android:textAppearance="@style/TextAppearance.AppCompat.Small"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvRemark" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_ask_move.xml b/app/src/main/res/layout/dialog_ask_move.xml
index c78385881b..28c4318658 100644
--- a/app/src/main/res/layout/dialog_ask_move.xml
+++ b/app/src/main/res/layout/dialog_ask_move.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -89,5 +89,5 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/cbNotAgain" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_ask_spam.xml b/app/src/main/res/layout/dialog_ask_spam.xml
index 597de0490f..3e33bb42db 100644
--- a/app/src/main/res/layout/dialog_ask_spam.xml
+++ b/app/src/main/res/layout/dialog_ask_spam.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -34,5 +34,5 @@
android:textAppearance="@style/TextAppearance.AppCompat.Small"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvMessage" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_boundary_error.xml b/app/src/main/res/layout/dialog_boundary_error.xml
index 0202134a2e..f06298b837 100644
--- a/app/src/main/res/layout/dialog_boundary_error.xml
+++ b/app/src/main/res/layout/dialog_boundary_error.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -33,5 +33,5 @@
android:textColor="?android:attr/textColorPrimary"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvMessage" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_buttons.xml b/app/src/main/res/layout/dialog_buttons.xml
index e9e5d0b514..7ad219fdf2 100644
--- a/app/src/main/res/layout/dialog_buttons.xml
+++ b/app/src/main/res/layout/dialog_buttons.xml
@@ -7,7 +7,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -303,5 +303,5 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/cbHeaders" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_certificate.xml b/app/src/main/res/layout/dialog_certificate.xml
index bb8e8b281e..08e28e0502 100644
--- a/app/src/main/res/layout/dialog_certificate.xml
+++ b/app/src/main/res/layout/dialog_certificate.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -183,5 +183,5 @@
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvAlgorithmTitle" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_contact_group.xml b/app/src/main/res/layout/dialog_contact_group.xml
index 8d293ccbe6..72ccb6c240 100644
--- a/app/src/main/res/layout/dialog_contact_group.xml
+++ b/app/src/main/res/layout/dialog_contact_group.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -64,5 +64,5 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/spGroup" />
-
+
diff --git a/app/src/main/res/layout/dialog_deepl.xml b/app/src/main/res/layout/dialog_deepl.xml
index 9b5ab4ce93..9d5c7b8cca 100644
--- a/app/src/main/res/layout/dialog_deepl.xml
+++ b/app/src/main/res/layout/dialog_deepl.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -134,5 +134,5 @@
android:textColor="?android:attr/textColorLink"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvUsage" />
-
+
diff --git a/app/src/main/res/layout/dialog_delete_operations.xml b/app/src/main/res/layout/dialog_delete_operations.xml
index db9a2ee64e..684447fabb 100644
--- a/app/src/main/res/layout/dialog_delete_operations.xml
+++ b/app/src/main/res/layout/dialog_delete_operations.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -119,5 +119,5 @@
android:textSize="12sp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/cbDelete" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_duration.xml b/app/src/main/res/layout/dialog_duration.xml
index d8b93f42e1..ffc4d5c39c 100644
--- a/app/src/main/res/layout/dialog_duration.xml
+++ b/app/src/main/res/layout/dialog_duration.xml
@@ -7,7 +7,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -75,5 +75,5 @@
app:layout_constraintHeight_max="180dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/timePicker" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_edit_contact.xml b/app/src/main/res/layout/dialog_edit_contact.xml
index efd70a979c..1d6412dec3 100644
--- a/app/src/main/res/layout/dialog_edit_contact.xml
+++ b/app/src/main/res/layout/dialog_edit_contact.xml
@@ -1,5 +1,5 @@
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_edit_name.xml b/app/src/main/res/layout/dialog_edit_name.xml
index d9e6dcc685..34df7528c8 100644
--- a/app/src/main/res/layout/dialog_edit_name.xml
+++ b/app/src/main/res/layout/dialog_edit_name.xml
@@ -1,5 +1,5 @@
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_error_reporting.xml b/app/src/main/res/layout/dialog_error_reporting.xml
index 162e7cec71..9f760f8bac 100644
--- a/app/src/main/res/layout/dialog_error_reporting.xml
+++ b/app/src/main/res/layout/dialog_error_reporting.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -54,5 +54,5 @@
app:layout_constraintStart_toEndOf="@id/btnInfo"
app:layout_constraintTop_toTopOf="@id/btnInfo"
app:srcCompat="@drawable/twotone_open_in_new_24" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_export.xml b/app/src/main/res/layout/dialog_export.xml
index a48b3582c7..2684c4e330 100644
--- a/app/src/main/res/layout/dialog_export.xml
+++ b/app/src/main/res/layout/dialog_export.xml
@@ -7,7 +7,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -85,5 +85,5 @@
android:textStyle="italic"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvExportHint" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_first.xml b/app/src/main/res/layout/dialog_first.xml
index 40231b287e..c51b6e5d88 100644
--- a/app/src/main/res/layout/dialog_first.xml
+++ b/app/src/main/res/layout/dialog_first.xml
@@ -7,7 +7,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -117,5 +117,5 @@
android:textColor="?android:attr/textColorPrimary"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvDesign" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_folder_all.xml b/app/src/main/res/layout/dialog_folder_all.xml
index 42141d7ccb..6cbc3c8fa9 100644
--- a/app/src/main/res/layout/dialog_folder_all.xml
+++ b/app/src/main/res/layout/dialog_folder_all.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -158,5 +158,5 @@
android:text="@string/title_poll_user"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/cbPollSystem" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_folder_select.xml b/app/src/main/res/layout/dialog_folder_select.xml
index e11e831ee6..9b9e02ffd7 100644
--- a/app/src/main/res/layout/dialog_folder_select.xml
+++ b/app/src/main/res/layout/dialog_folder_select.xml
@@ -1,5 +1,5 @@
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_forward_raw.xml b/app/src/main/res/layout/dialog_forward_raw.xml
index c2c77e8e99..c4f3416292 100644
--- a/app/src/main/res/layout/dialog_forward_raw.xml
+++ b/app/src/main/res/layout/dialog_forward_raw.xml
@@ -7,7 +7,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -91,5 +91,5 @@
android:text="@string/title_auto_confirm"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvNoInternet" />
-
+
diff --git a/app/src/main/res/layout/dialog_identity.xml b/app/src/main/res/layout/dialog_identity.xml
index 08ca2d6509..ac67ee2d14 100644
--- a/app/src/main/res/layout/dialog_identity.xml
+++ b/app/src/main/res/layout/dialog_identity.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -98,5 +98,5 @@
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="tvNoIdentities,btnFix" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_import.xml b/app/src/main/res/layout/dialog_import.xml
index b500401568..f09846112d 100644
--- a/app/src/main/res/layout/dialog_import.xml
+++ b/app/src/main/res/layout/dialog_import.xml
@@ -7,7 +7,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -121,5 +121,5 @@
android:text="@string/title_setup_import_settings"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/cbAnswers" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_import_progress.xml b/app/src/main/res/layout/dialog_import_progress.xml
index c54acd919a..601877db59 100644
--- a/app/src/main/res/layout/dialog_import_progress.xml
+++ b/app/src/main/res/layout/dialog_import_progress.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -32,5 +32,5 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvCaption" />
-
+
diff --git a/app/src/main/res/layout/dialog_insert_link.xml b/app/src/main/res/layout/dialog_insert_link.xml
index 154927d811..b032d871a9 100644
--- a/app/src/main/res/layout/dialog_insert_link.xml
+++ b/app/src/main/res/layout/dialog_insert_link.xml
@@ -1,5 +1,5 @@
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_junk.xml b/app/src/main/res/layout/dialog_junk.xml
index 7c8c0d1b26..26986dbf4d 100644
--- a/app/src/main/res/layout/dialog_junk.xml
+++ b/app/src/main/res/layout/dialog_junk.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -279,5 +279,5 @@
android:layout_height="0dp"
app:constraint_referenced_ids="
btnClear,ibRules,ibManage,tvClearHint" />
-
+
diff --git a/app/src/main/res/layout/dialog_keyword_add.xml b/app/src/main/res/layout/dialog_keyword_add.xml
index 3325a688ef..b7ef341ed5 100644
--- a/app/src/main/res/layout/dialog_keyword_add.xml
+++ b/app/src/main/res/layout/dialog_keyword_add.xml
@@ -1,5 +1,5 @@
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_keyword_manage.xml b/app/src/main/res/layout/dialog_keyword_manage.xml
index cc0000241b..de2f10dd4e 100644
--- a/app/src/main/res/layout/dialog_keyword_manage.xml
+++ b/app/src/main/res/layout/dialog_keyword_manage.xml
@@ -1,5 +1,5 @@
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_markdown.xml b/app/src/main/res/layout/dialog_markdown.xml
index 228c605f34..aaacde5692 100644
--- a/app/src/main/res/layout/dialog_markdown.xml
+++ b/app/src/main/res/layout/dialog_markdown.xml
@@ -1,5 +1,5 @@
-
-
@@ -31,7 +31,7 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
-
+
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_nav_options.xml b/app/src/main/res/layout/dialog_nav_options.xml
index 876b563b38..e8ace9b725 100644
--- a/app/src/main/res/layout/dialog_nav_options.xml
+++ b/app/src/main/res/layout/dialog_nav_options.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -103,5 +103,5 @@
android:textStyle="italic"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/ivExpanderNav" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_no_stream.xml b/app/src/main/res/layout/dialog_no_stream.xml
index 1ab5ba7247..8596100bf5 100644
--- a/app/src/main/res/layout/dialog_no_stream.xml
+++ b/app/src/main/res/layout/dialog_no_stream.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -57,5 +57,5 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvExplanation"
app:srcCompat="@drawable/twotone_info_24" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_no_viewer.xml b/app/src/main/res/layout/dialog_no_viewer.xml
index cfe22037c8..fd1a329e0d 100644
--- a/app/src/main/res/layout/dialog_no_viewer.xml
+++ b/app/src/main/res/layout/dialog_no_viewer.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -90,5 +90,5 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/tvType" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_notes.xml b/app/src/main/res/layout/dialog_notes.xml
index 71d117b786..d350611ba2 100644
--- a/app/src/main/res/layout/dialog_notes.xml
+++ b/app/src/main/res/layout/dialog_notes.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -58,5 +58,5 @@
android:text="@string/title_select"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvColor" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_open_link.xml b/app/src/main/res/layout/dialog_open_link.xml
index b789a22af6..118663d91c 100644
--- a/app/src/main/res/layout/dialog_open_link.xml
+++ b/app/src/main/res/layout/dialog_open_link.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -337,5 +337,5 @@
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="tvOwnerTitle,tvHost,tvOwner" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_pin_ask.xml b/app/src/main/res/layout/dialog_pin_ask.xml
index 1a6efe8fc6..e165ce2d45 100644
--- a/app/src/main/res/layout/dialog_pin_ask.xml
+++ b/app/src/main/res/layout/dialog_pin_ask.xml
@@ -1,5 +1,5 @@
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_pin_set.xml b/app/src/main/res/layout/dialog_pin_set.xml
index 8b238456e9..9685889dc5 100644
--- a/app/src/main/res/layout/dialog_pin_set.xml
+++ b/app/src/main/res/layout/dialog_pin_set.xml
@@ -1,5 +1,5 @@
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_print.xml b/app/src/main/res/layout/dialog_print.xml
index 32a10db6c8..bc7c8bf226 100644
--- a/app/src/main/res/layout/dialog_print.xml
+++ b/app/src/main/res/layout/dialog_print.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -73,5 +73,5 @@
android:textAppearance="@style/TextAppearance.AppCompat.Small"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvImagesRemark" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_reset_questions.xml b/app/src/main/res/layout/dialog_reset_questions.xml
index fcd473f530..4b09d44538 100644
--- a/app/src/main/res/layout/dialog_reset_questions.xml
+++ b/app/src/main/res/layout/dialog_reset_questions.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -61,5 +61,5 @@
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/cbImages" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_response.xml b/app/src/main/res/layout/dialog_response.xml
index bcecc1a1a3..2644e15426 100644
--- a/app/src/main/res/layout/dialog_response.xml
+++ b/app/src/main/res/layout/dialog_response.xml
@@ -1,5 +1,5 @@
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_review.xml b/app/src/main/res/layout/dialog_review.xml
index a31698494e..3fc6633603 100644
--- a/app/src/main/res/layout/dialog_review.xml
+++ b/app/src/main/res/layout/dialog_review.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -61,5 +61,5 @@
android:textStyle="italic"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvHelp" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_review_account.xml b/app/src/main/res/layout/dialog_review_account.xml
index 4ebf8b206e..13601d2d5d 100644
--- a/app/src/main/res/layout/dialog_review_account.xml
+++ b/app/src/main/res/layout/dialog_review_account.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -225,5 +225,5 @@
android:text="@string/title_disable_gmail"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvAccount" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_rule_match.xml b/app/src/main/res/layout/dialog_rule_match.xml
index da29e7dd50..f8000aebc8 100644
--- a/app/src/main/res/layout/dialog_rule_match.xml
+++ b/app/src/main/res/layout/dialog_rule_match.xml
@@ -1,5 +1,5 @@
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_save_search.xml b/app/src/main/res/layout/dialog_save_search.xml
index d1faee37a3..5fc7e46a31 100644
--- a/app/src/main/res/layout/dialog_save_search.xml
+++ b/app/src/main/res/layout/dialog_save_search.xml
@@ -1,5 +1,5 @@
-
-
+
diff --git a/app/src/main/res/layout/dialog_search.xml b/app/src/main/res/layout/dialog_search.xml
index 1721c734a8..00d52691a3 100644
--- a/app/src/main/res/layout/dialog_search.xml
+++ b/app/src/main/res/layout/dialog_search.xml
@@ -8,7 +8,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -560,5 +560,5 @@
cbSearchIndex,tvSearchIndexHint,cbSenders,cbRecipients,cbSubject,cbKeywords,cbMessage,tvSearchTextHint,tvSearchTextUnsupported,cbNotes,
tvAnd,cbUnseen,cbFlagged,cbHidden,cbEncrypted,cbAttachments,
btnAfter,btnBefore,tvBefore,tvAfter,cbSearchDevice" />
-
+
diff --git a/app/src/main/res/layout/dialog_send.xml b/app/src/main/res/layout/dialog_send.xml
index 19811a23ff..dcc3c8e034 100644
--- a/app/src/main/res/layout/dialog_send.xml
+++ b/app/src/main/res/layout/dialog_send.xml
@@ -7,7 +7,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -512,5 +512,5 @@
tvEncrypt,spEncrypt,ibEncryption,
tvPriority,spPriority,
tvSensitivity,spSensitivity,ibSensitivity" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_setup.xml b/app/src/main/res/layout/dialog_setup.xml
index 79b0053425..0bce1e32b5 100644
--- a/app/src/main/res/layout/dialog_setup.xml
+++ b/app/src/main/res/layout/dialog_setup.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -140,5 +140,5 @@
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="three,title3,tvDoze" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_show_full.xml b/app/src/main/res/layout/dialog_show_full.xml
index 1f6916f8b5..65c6d3e2e7 100644
--- a/app/src/main/res/layout/dialog_show_full.xml
+++ b/app/src/main/res/layout/dialog_show_full.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -72,5 +72,5 @@
android:textAppearance="@style/TextAppearance.AppCompat.Small"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/cbNotAgainDomain" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_show_images.xml b/app/src/main/res/layout/dialog_show_images.xml
index c2e5833fe5..3e91f9e706 100644
--- a/app/src/main/res/layout/dialog_show_images.xml
+++ b/app/src/main/res/layout/dialog_show_images.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -83,5 +83,5 @@
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="ivTracking,tvTracking" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_swipes.xml b/app/src/main/res/layout/dialog_swipes.xml
index 902ab31d91..67f4d69077 100644
--- a/app/src/main/res/layout/dialog_swipes.xml
+++ b/app/src/main/res/layout/dialog_swipes.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -68,5 +68,5 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvRight" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_sync.xml b/app/src/main/res/layout/dialog_sync.xml
index a3db4f3128..80ed9dbbbb 100644
--- a/app/src/main/res/layout/dialog_sync.xml
+++ b/app/src/main/res/layout/dialog_sync.xml
@@ -6,7 +6,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -96,5 +96,5 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvRemark2" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_theme.xml b/app/src/main/res/layout/dialog_theme.xml
index 4f64f84396..3027e6bc28 100644
--- a/app/src/main/res/layout/dialog_theme.xml
+++ b/app/src/main/res/layout/dialog_theme.xml
@@ -7,7 +7,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -222,5 +222,5 @@
android:textColor="?android:attr/textColorLink"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/btnMore" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_translate.xml b/app/src/main/res/layout/dialog_translate.xml
index 6d84a96bae..5818e32e18 100644
--- a/app/src/main/res/layout/dialog_translate.xml
+++ b/app/src/main/res/layout/dialog_translate.xml
@@ -7,7 +7,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -75,5 +75,5 @@
app:layout_constraintStart_toStartOf="@id/tvText"
app:layout_constraintTop_toTopOf="@id/tvText"
app:show_delay="0" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/dialog_unexpected.xml b/app/src/main/res/layout/dialog_unexpected.xml
index 3daeb3e8c0..74afc9cf2a 100644
--- a/app/src/main/res/layout/dialog_unexpected.xml
+++ b/app/src/main/res/layout/dialog_unexpected.xml
@@ -7,7 +7,7 @@
android:padding="24dp"
android:scrollbarStyle="outsideOverlay">
-
@@ -34,5 +34,5 @@
android:textIsSelectable="true"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvCaption" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/fragment_about.xml b/app/src/main/res/layout/fragment_about.xml
index c203ec1fe0..f6acc076da 100644
--- a/app/src/main/res/layout/fragment_about.xml
+++ b/app/src/main/res/layout/fragment_about.xml
@@ -1,5 +1,5 @@
-
-
@@ -113,6 +113,6 @@
android:orientation="vertical"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/tvContributors" />
-
+
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/fragment_account.xml b/app/src/main/res/layout/fragment_account.xml
index 90f08ca767..2dd754a64d 100644
--- a/app/src/main/res/layout/fragment_account.xml
+++ b/app/src/main/res/layout/fragment_account.xml
@@ -9,7 +9,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context="eu.faircode.email.ActivitySetup">
-
-
+
diff --git a/app/src/main/res/layout/fragment_accounts.xml b/app/src/main/res/layout/fragment_accounts.xml
index 497d48df7c..1672180cc6 100644
--- a/app/src/main/res/layout/fragment_accounts.xml
+++ b/app/src/main/res/layout/fragment_accounts.xml
@@ -1,5 +1,5 @@
-
-
@@ -68,7 +68,7 @@
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="rvAccount" />
-
+
-
+
diff --git a/app/src/main/res/layout/fragment_answer.xml b/app/src/main/res/layout/fragment_answer.xml
index 8c844d1412..8024ddac19 100644
--- a/app/src/main/res/layout/fragment_answer.xml
+++ b/app/src/main/res/layout/fragment_answer.xml
@@ -1,12 +1,12 @@
-
-
@@ -18,7 +18,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
-
@@ -156,7 +156,7 @@
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="etName,etGroup,cbStandard,cbReceipt,cbFavorite,cbHide,btnColor,vSeparator,etText" />
-
+
-
-
+
+
diff --git a/app/src/main/res/layout/fragment_answers.xml b/app/src/main/res/layout/fragment_answers.xml
index 10eae290cf..4e91c1738f 100644
--- a/app/src/main/res/layout/fragment_answers.xml
+++ b/app/src/main/res/layout/fragment_answers.xml
@@ -1,12 +1,12 @@
-
-
@@ -40,7 +40,7 @@
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="rvAnswer" />
-
+
-
+
diff --git a/app/src/main/res/layout/fragment_certificates.xml b/app/src/main/res/layout/fragment_certificates.xml
index b6f9ef7b17..6fe25dee98 100644
--- a/app/src/main/res/layout/fragment_certificates.xml
+++ b/app/src/main/res/layout/fragment_certificates.xml
@@ -1,12 +1,12 @@
-
-
@@ -37,7 +37,7 @@
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="rvCertificate" />
-
+
-
+
diff --git a/app/src/main/res/layout/fragment_compose.xml b/app/src/main/res/layout/fragment_compose.xml
index 4da92090f3..c910e89820 100644
--- a/app/src/main/res/layout/fragment_compose.xml
+++ b/app/src/main/res/layout/fragment_compose.xml
@@ -1,12 +1,12 @@
-
-
@@ -25,7 +25,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
-
@@ -549,7 +549,7 @@
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="ibCloseRefHint,tvReferenceHint" />
-
+
-
-
\ No newline at end of file
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/fragment_contacts.xml b/app/src/main/res/layout/fragment_contacts.xml
index 7e0164e3ef..7758ef4bfe 100644
--- a/app/src/main/res/layout/fragment_contacts.xml
+++ b/app/src/main/res/layout/fragment_contacts.xml
@@ -1,12 +1,12 @@
-
-
@@ -51,7 +51,7 @@
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="rvContacts" />
-
+
-
+
diff --git a/app/src/main/res/layout/fragment_eula.xml b/app/src/main/res/layout/fragment_eula.xml
index eba0c8d796..8a312c782c 100644
--- a/app/src/main/res/layout/fragment_eula.xml
+++ b/app/src/main/res/layout/fragment_eula.xml
@@ -8,7 +8,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context="eu.faircode.email.ActivityMain">
-
@@ -44,5 +44,5 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/btnCancel"
app:layout_constraintTop_toBottomOf="@id/inEula" />
-
+
diff --git a/app/src/main/res/layout/fragment_folder.xml b/app/src/main/res/layout/fragment_folder.xml
index b260039fe6..be2dc70536 100644
--- a/app/src/main/res/layout/fragment_folder.xml
+++ b/app/src/main/res/layout/fragment_folder.xml
@@ -9,7 +9,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context="eu.faircode.email.ActivityView">
-
-
+
diff --git a/app/src/main/res/layout/fragment_folders.xml b/app/src/main/res/layout/fragment_folders.xml
index 6cb156a0ff..87809fe3e3 100644
--- a/app/src/main/res/layout/fragment_folders.xml
+++ b/app/src/main/res/layout/fragment_folders.xml
@@ -1,5 +1,5 @@
-
-
@@ -130,7 +130,7 @@
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="rvFolder" />
-
+
-
+
diff --git a/app/src/main/res/layout/fragment_gmail.xml b/app/src/main/res/layout/fragment_gmail.xml
index d6675ca8bc..ed11353fbc 100644
--- a/app/src/main/res/layout/fragment_gmail.xml
+++ b/app/src/main/res/layout/fragment_gmail.xml
@@ -9,7 +9,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context="eu.faircode.email.ActivitySetup">
-
@@ -201,5 +201,5 @@
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="tvErrorTitle,tvError,tvDraftsHint,btnSupport" />
-
+
diff --git a/app/src/main/res/layout/fragment_identities.xml b/app/src/main/res/layout/fragment_identities.xml
index 1817dc248c..b5da86e68f 100644
--- a/app/src/main/res/layout/fragment_identities.xml
+++ b/app/src/main/res/layout/fragment_identities.xml
@@ -1,12 +1,12 @@
-
-
@@ -49,7 +49,7 @@
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="rvIdentity" />
-
+
-
+
diff --git a/app/src/main/res/layout/fragment_identity.xml b/app/src/main/res/layout/fragment_identity.xml
index e3219f29c7..c8246fd4de 100644
--- a/app/src/main/res/layout/fragment_identity.xml
+++ b/app/src/main/res/layout/fragment_identity.xml
@@ -9,7 +9,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context="eu.faircode.email.ActivitySetup">
-
-
+
diff --git a/app/src/main/res/layout/fragment_legend.xml b/app/src/main/res/layout/fragment_legend.xml
index 2a9a04b6ca..da17449071 100644
--- a/app/src/main/res/layout/fragment_legend.xml
+++ b/app/src/main/res/layout/fragment_legend.xml
@@ -1,5 +1,5 @@
-
-
+
diff --git a/app/src/main/res/layout/fragment_legend_compose.xml b/app/src/main/res/layout/fragment_legend_compose.xml
index 421abe0bfc..497af44f24 100644
--- a/app/src/main/res/layout/fragment_legend_compose.xml
+++ b/app/src/main/res/layout/fragment_legend_compose.xml
@@ -8,7 +8,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context="eu.faircode.email.ActivityView">
-
@@ -264,5 +264,5 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/ivStyle"
app:layout_constraintTop_toBottomOf="@id/tvUnderline" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/fragment_legend_folders.xml b/app/src/main/res/layout/fragment_legend_folders.xml
index 2cc0d3adb0..33f9168aa9 100644
--- a/app/src/main/res/layout/fragment_legend_folders.xml
+++ b/app/src/main/res/layout/fragment_legend_folders.xml
@@ -8,7 +8,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context="eu.faircode.email.ActivityView">
-
@@ -378,5 +378,5 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/ivStop"
app:layout_constraintTop_toBottomOf="@id/tvSyncKeepLegend" />
-
+
diff --git a/app/src/main/res/layout/fragment_legend_keyboard.xml b/app/src/main/res/layout/fragment_legend_keyboard.xml
index 041ce89435..e1b5420938 100644
--- a/app/src/main/res/layout/fragment_legend_keyboard.xml
+++ b/app/src/main/res/layout/fragment_legend_keyboard.xml
@@ -8,7 +8,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context="eu.faircode.email.ActivityView">
-
@@ -243,5 +243,5 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/tvT"
app:layout_constraintTop_toBottomOf="@id/tvSelect" />
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/fragment_legend_messages.xml b/app/src/main/res/layout/fragment_legend_messages.xml
index b089519042..7c3e307f98 100644
--- a/app/src/main/res/layout/fragment_legend_messages.xml
+++ b/app/src/main/res/layout/fragment_legend_messages.xml
@@ -8,7 +8,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context="eu.faircode.email.ActivityView">
-
@@ -943,5 +943,5 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/ivDeletePermanent"
app:layout_constraintTop_toBottomOf="@id/tvBrokenImage" />
-
+
diff --git a/app/src/main/res/layout/fragment_legend_synchronization.xml b/app/src/main/res/layout/fragment_legend_synchronization.xml
index 14fd2aabe3..9b50056e33 100644
--- a/app/src/main/res/layout/fragment_legend_synchronization.xml
+++ b/app/src/main/res/layout/fragment_legend_synchronization.xml
@@ -8,7 +8,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context="eu.faircode.email.ActivityView">
-
@@ -414,5 +414,5 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/ivClosing"
app:layout_constraintTop_toBottomOf="@id/tvDownloading" />
-
+
diff --git a/app/src/main/res/layout/fragment_logs.xml b/app/src/main/res/layout/fragment_logs.xml
index 96d67b8064..023319a859 100644
--- a/app/src/main/res/layout/fragment_logs.xml
+++ b/app/src/main/res/layout/fragment_logs.xml
@@ -1,5 +1,5 @@
-
-
+
diff --git a/app/src/main/res/layout/fragment_messages.xml b/app/src/main/res/layout/fragment_messages.xml
index 5da8e8a68a..49d8d6601c 100644
--- a/app/src/main/res/layout/fragment_messages.xml
+++ b/app/src/main/res/layout/fragment_messages.xml
@@ -1,5 +1,5 @@
-
-
@@ -470,7 +470,7 @@
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="ibOutbox,tvOutboxCount" />
-
+
-
@@ -571,7 +571,7 @@
app:layout_constraintEnd_toStartOf="@id/ibJunk"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/twotone_delete_24" />
-
+
-
+
diff --git a/app/src/main/res/layout/fragment_oauth.xml b/app/src/main/res/layout/fragment_oauth.xml
index de92a9ea56..e88ff28a79 100644
--- a/app/src/main/res/layout/fragment_oauth.xml
+++ b/app/src/main/res/layout/fragment_oauth.xml
@@ -9,7 +9,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context="eu.faircode.email.ActivitySetup">
-
@@ -240,5 +240,5 @@
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="tvErrorTitle,tvError,btnSupport" />
-
+
diff --git a/app/src/main/res/layout/fragment_open_full.xml b/app/src/main/res/layout/fragment_open_full.xml
index f64b094dfd..5bf05590e4 100644
--- a/app/src/main/res/layout/fragment_open_full.xml
+++ b/app/src/main/res/layout/fragment_open_full.xml
@@ -1,5 +1,5 @@
-
@@ -12,4 +12,4 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/fragment_operations.xml b/app/src/main/res/layout/fragment_operations.xml
index f5f50c07b3..f4f471fccb 100644
--- a/app/src/main/res/layout/fragment_operations.xml
+++ b/app/src/main/res/layout/fragment_operations.xml
@@ -1,5 +1,5 @@
-
-
+
diff --git a/app/src/main/res/layout/fragment_options.xml b/app/src/main/res/layout/fragment_options.xml
index ca2f6809ca..cf8dce46f7 100644
--- a/app/src/main/res/layout/fragment_options.xml
+++ b/app/src/main/res/layout/fragment_options.xml
@@ -1,5 +1,5 @@
-
-
+
diff --git a/app/src/main/res/layout/fragment_options_behavior.xml b/app/src/main/res/layout/fragment_options_behavior.xml
index 4b02008699..9aa71ffba8 100644
--- a/app/src/main/res/layout/fragment_options_behavior.xml
+++ b/app/src/main/res/layout/fragment_options_behavior.xml
@@ -12,7 +12,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context=".ActivitySetup">
-
@@ -46,7 +46,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvDefault">
-
-
+
-
-
+
-
-
+
-
+
diff --git a/app/src/main/res/layout/fragment_options_connection.xml b/app/src/main/res/layout/fragment_options_connection.xml
index cbc2378861..2f4ce56b57 100644
--- a/app/src/main/res/layout/fragment_options_connection.xml
+++ b/app/src/main/res/layout/fragment_options_connection.xml
@@ -12,7 +12,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context=".ActivitySetup">
-
@@ -46,7 +46,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvDefault">
-
-
+
-
-
+
-
-
+
-
+
diff --git a/app/src/main/res/layout/fragment_options_display.xml b/app/src/main/res/layout/fragment_options_display.xml
index f13c454a92..19191dc991 100644
--- a/app/src/main/res/layout/fragment_options_display.xml
+++ b/app/src/main/res/layout/fragment_options_display.xml
@@ -12,7 +12,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context=".ActivitySetup">
-
@@ -46,7 +46,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvDefault">
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
+
diff --git a/app/src/main/res/layout/fragment_options_encryption.xml b/app/src/main/res/layout/fragment_options_encryption.xml
index 059727d8b8..064588ee33 100644
--- a/app/src/main/res/layout/fragment_options_encryption.xml
+++ b/app/src/main/res/layout/fragment_options_encryption.xml
@@ -12,7 +12,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context=".ActivitySetup">
-
@@ -46,7 +46,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvDefault">
-
-
+
-
-
+
-
-
+
-
-
+
-
+
diff --git a/app/src/main/res/layout/fragment_options_misc.xml b/app/src/main/res/layout/fragment_options_misc.xml
index 3ae83eb6f3..ae20697132 100644
--- a/app/src/main/res/layout/fragment_options_misc.xml
+++ b/app/src/main/res/layout/fragment_options_misc.xml
@@ -12,7 +12,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context=".ActivitySetup">
-
@@ -46,7 +46,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvDefault">
-
-
+
-
-
+
-
-
+
-
+
diff --git a/app/src/main/res/layout/fragment_options_notifications.xml b/app/src/main/res/layout/fragment_options_notifications.xml
index acdfcabddf..68ee1a4ce5 100644
--- a/app/src/main/res/layout/fragment_options_notifications.xml
+++ b/app/src/main/res/layout/fragment_options_notifications.xml
@@ -12,7 +12,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context=".ActivitySetup">
-
@@ -46,7 +46,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvDefault">
-
-
+
-
-
+
-
+
diff --git a/app/src/main/res/layout/fragment_options_privacy.xml b/app/src/main/res/layout/fragment_options_privacy.xml
index 3c62e8d99d..c74e85af12 100644
--- a/app/src/main/res/layout/fragment_options_privacy.xml
+++ b/app/src/main/res/layout/fragment_options_privacy.xml
@@ -12,7 +12,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context=".ActivitySetup">
-
@@ -46,7 +46,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvDefault">
-
-
+
-
-
+
-
+
diff --git a/app/src/main/res/layout/fragment_options_send.xml b/app/src/main/res/layout/fragment_options_send.xml
index 5bde6468ab..5d72484709 100644
--- a/app/src/main/res/layout/fragment_options_send.xml
+++ b/app/src/main/res/layout/fragment_options_send.xml
@@ -12,7 +12,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context=".ActivitySetup">
-
@@ -46,7 +46,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvDefault">
-
-
+
-
-
+
-
-
+
-
+
diff --git a/app/src/main/res/layout/fragment_options_synchronize.xml b/app/src/main/res/layout/fragment_options_synchronize.xml
index c97073dce5..d08c0cc1c9 100644
--- a/app/src/main/res/layout/fragment_options_synchronize.xml
+++ b/app/src/main/res/layout/fragment_options_synchronize.xml
@@ -12,7 +12,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context=".ActivitySetup">
-
@@ -46,7 +46,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvDefault">
-
-
+
-
-
+
-
-
+
-
-
+
-
+
diff --git a/app/src/main/res/layout/fragment_order.xml b/app/src/main/res/layout/fragment_order.xml
index 524697905e..4564901b29 100644
--- a/app/src/main/res/layout/fragment_order.xml
+++ b/app/src/main/res/layout/fragment_order.xml
@@ -1,5 +1,5 @@
-
-
+
diff --git a/app/src/main/res/layout/fragment_pop.xml b/app/src/main/res/layout/fragment_pop.xml
index f34f0ebb22..2b91c5e0e3 100644
--- a/app/src/main/res/layout/fragment_pop.xml
+++ b/app/src/main/res/layout/fragment_pop.xml
@@ -9,7 +9,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context="eu.faircode.email.ActivitySetup">
-
-
+
diff --git a/app/src/main/res/layout/fragment_pro.xml b/app/src/main/res/layout/fragment_pro.xml
index e3e5179c8a..f2310eecf0 100644
--- a/app/src/main/res/layout/fragment_pro.xml
+++ b/app/src/main/res/layout/fragment_pro.xml
@@ -8,7 +8,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context="eu.faircode.email.ActivityView">
-
@@ -213,5 +213,5 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvRestoreHint"
app:srcCompat="@drawable/twotone_cloud_off_24" />
-
+
diff --git a/app/src/main/res/layout/fragment_quick_setup.xml b/app/src/main/res/layout/fragment_quick_setup.xml
index 29bf171f69..d6d4c8f7d1 100644
--- a/app/src/main/res/layout/fragment_quick_setup.xml
+++ b/app/src/main/res/layout/fragment_quick_setup.xml
@@ -9,7 +9,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context="eu.faircode.email.ActivitySetup">
-
@@ -407,5 +407,5 @@
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="tvErrorTitle,tvError,tvErrorHint,tvErrorRemark,btnSupport" />
-
+
diff --git a/app/src/main/res/layout/fragment_rule.xml b/app/src/main/res/layout/fragment_rule.xml
index ac7748bb0e..87dfa56289 100644
--- a/app/src/main/res/layout/fragment_rule.xml
+++ b/app/src/main/res/layout/fragment_rule.xml
@@ -1,12 +1,12 @@
-
-
@@ -22,7 +22,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
-
-
+
-
-
\ No newline at end of file
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/fragment_rules.xml b/app/src/main/res/layout/fragment_rules.xml
index 5d75a2d6e2..d3b7454080 100644
--- a/app/src/main/res/layout/fragment_rules.xml
+++ b/app/src/main/res/layout/fragment_rules.xml
@@ -1,12 +1,12 @@
-
-
@@ -40,7 +40,7 @@
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="rvRule" />
-
+
-
+
diff --git a/app/src/main/res/layout/fragment_setup.xml b/app/src/main/res/layout/fragment_setup.xml
index f5e12303c9..0328c01cef 100644
--- a/app/src/main/res/layout/fragment_setup.xml
+++ b/app/src/main/res/layout/fragment_setup.xml
@@ -13,7 +13,7 @@
android:scrollbarStyle="outsideOverlay"
tools:context="eu.faircode.email.ActivitySetup">
-
@@ -30,7 +30,7 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
-
-
+
-
-
-
+
-
+
-
-
+
-
-
+
-
-
+
-
+
diff --git a/app/src/main/res/layout/include_eula.xml b/app/src/main/res/layout/include_eula.xml
index f7a83d5d22..8af34f1676 100644
--- a/app/src/main/res/layout/include_eula.xml
+++ b/app/src/main/res/layout/include_eula.xml
@@ -1,5 +1,5 @@
-
@@ -69,4 +69,4 @@
android:textColor="?android:attr/textColorLink"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvLicense" />
-
+
diff --git a/app/src/main/res/layout/include_message_action.xml b/app/src/main/res/layout/include_message_action.xml
index b98e1e49cf..a18061bd19 100644
--- a/app/src/main/res/layout/include_message_action.xml
+++ b/app/src/main/res/layout/include_message_action.xml
@@ -1,5 +1,5 @@
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/include_message_addresses.xml b/app/src/main/res/layout/include_message_addresses.xml
index a581933484..5e495ec59f 100644
--- a/app/src/main/res/layout/include_message_addresses.xml
+++ b/app/src/main/res/layout/include_message_addresses.xml
@@ -1,5 +1,5 @@
-
@@ -538,4 +538,4 @@
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="vSeparatorAddress,ibExpanderAddress" />
-
+
diff --git a/app/src/main/res/layout/include_message_attachments.xml b/app/src/main/res/layout/include_message_attachments.xml
index 1efb6668ac..92b66c3274 100644
--- a/app/src/main/res/layout/include_message_attachments.xml
+++ b/app/src/main/res/layout/include_message_attachments.xml
@@ -1,5 +1,5 @@
-
@@ -86,4 +86,4 @@
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="vSeparatorAttachments,rvAttachment" />
-
+
diff --git a/app/src/main/res/layout/include_message_body.xml b/app/src/main/res/layout/include_message_body.xml
index cee91dd8f5..b2967b804a 100644
--- a/app/src/main/res/layout/include_message_body.xml
+++ b/app/src/main/res/layout/include_message_body.xml
@@ -1,5 +1,5 @@
-
@@ -233,4 +233,4 @@
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="tvDownloading,pbDownloading,ibDownloading" />
-
+
diff --git a/app/src/main/res/layout/include_message_calendar.xml b/app/src/main/res/layout/include_message_calendar.xml
index eef17389cf..27dd5e6d40 100644
--- a/app/src/main/res/layout/include_message_calendar.xml
+++ b/app/src/main/res/layout/include_message_calendar.xml
@@ -1,5 +1,5 @@
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/include_message_compact.xml b/app/src/main/res/layout/include_message_compact.xml
index e0affffdf6..54565e5df8 100644
--- a/app/src/main/res/layout/include_message_compact.xml
+++ b/app/src/main/res/layout/include_message_compact.xml
@@ -1,5 +1,5 @@
-
@@ -442,4 +442,4 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvError" />
-
+
diff --git a/app/src/main/res/layout/include_message_headers.xml b/app/src/main/res/layout/include_message_headers.xml
index 529719e72e..9cb3e9d2f4 100644
--- a/app/src/main/res/layout/include_message_headers.xml
+++ b/app/src/main/res/layout/include_message_headers.xml
@@ -1,5 +1,5 @@
-
@@ -79,4 +79,4 @@
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="vSeparatorHeaders,tvHeaders,ibCloseHeaders" />
-
+
diff --git a/app/src/main/res/layout/include_message_images.xml b/app/src/main/res/layout/include_message_images.xml
index adec9db989..570ee0a11b 100644
--- a/app/src/main/res/layout/include_message_images.xml
+++ b/app/src/main/res/layout/include_message_images.xml
@@ -1,5 +1,5 @@
-
@@ -54,4 +54,4 @@
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="vSeparatorImages,ibShareImages,rvImage" />
-
+
diff --git a/app/src/main/res/layout/include_message_navigation.xml b/app/src/main/res/layout/include_message_navigation.xml
index 22db9136c7..d31c0161db 100644
--- a/app/src/main/res/layout/include_message_navigation.xml
+++ b/app/src/main/res/layout/include_message_navigation.xml
@@ -1,11 +1,11 @@
-
-
-
+
-
+
diff --git a/app/src/main/res/layout/include_message_normal.xml b/app/src/main/res/layout/include_message_normal.xml
index 0c90b4bf0b..bdccef7e17 100644
--- a/app/src/main/res/layout/include_message_normal.xml
+++ b/app/src/main/res/layout/include_message_normal.xml
@@ -1,4 +1,4 @@
-
@@ -440,4 +440,4 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvError" />
-
+
diff --git a/app/src/main/res/layout/include_nav.xml b/app/src/main/res/layout/include_nav.xml
index 53329c6f0a..40c6cd2571 100644
--- a/app/src/main/res/layout/include_nav.xml
+++ b/app/src/main/res/layout/include_nav.xml
@@ -1,5 +1,5 @@
-
-
+
diff --git a/app/src/main/res/layout/item_account.xml b/app/src/main/res/layout/item_account.xml
index c42b282e45..a1d53a3be8 100644
--- a/app/src/main/res/layout/item_account.xml
+++ b/app/src/main/res/layout/item_account.xml
@@ -1,5 +1,5 @@
-
@@ -8,7 +8,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content">
-
-
+
-
+
diff --git a/app/src/main/res/layout/item_account_exempted.xml b/app/src/main/res/layout/item_account_exempted.xml
index 7937694791..c9d284d2c1 100644
--- a/app/src/main/res/layout/item_account_exempted.xml
+++ b/app/src/main/res/layout/item_account_exempted.xml
@@ -1,10 +1,10 @@
-
-
@@ -18,5 +18,5 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
-
-
\ No newline at end of file
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/item_answer.xml b/app/src/main/res/layout/item_answer.xml
index 1519c30919..8180c7e73d 100644
--- a/app/src/main/res/layout/item_answer.xml
+++ b/app/src/main/res/layout/item_answer.xml
@@ -1,5 +1,5 @@
-
@@ -8,7 +8,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content">
-
-
+
-
+
diff --git a/app/src/main/res/layout/item_attachment.xml b/app/src/main/res/layout/item_attachment.xml
index 43f5964216..1bc8ae3990 100644
--- a/app/src/main/res/layout/item_attachment.xml
+++ b/app/src/main/res/layout/item_attachment.xml
@@ -1,10 +1,10 @@
-
-
-
-
+
+
diff --git a/app/src/main/res/layout/item_attachment_eml.xml b/app/src/main/res/layout/item_attachment_eml.xml
index 29ec3689b9..6938664450 100644
--- a/app/src/main/res/layout/item_attachment_eml.xml
+++ b/app/src/main/res/layout/item_attachment_eml.xml
@@ -1,10 +1,10 @@
-
-
-
-
\ No newline at end of file
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/item_blocklist_enabled.xml b/app/src/main/res/layout/item_blocklist_enabled.xml
index 5c3b98fb1a..6fb28d6b2f 100644
--- a/app/src/main/res/layout/item_blocklist_enabled.xml
+++ b/app/src/main/res/layout/item_blocklist_enabled.xml
@@ -1,10 +1,10 @@
-
-
@@ -18,5 +18,5 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
-
-
\ No newline at end of file
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/item_certificate.xml b/app/src/main/res/layout/item_certificate.xml
index 3b21b27ccd..5455eda90e 100644
--- a/app/src/main/res/layout/item_certificate.xml
+++ b/app/src/main/res/layout/item_certificate.xml
@@ -1,10 +1,10 @@
-
-
-
-
\ No newline at end of file
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/item_contact.xml b/app/src/main/res/layout/item_contact.xml
index 7e99a83a57..1400c2ba3a 100644
--- a/app/src/main/res/layout/item_contact.xml
+++ b/app/src/main/res/layout/item_contact.xml
@@ -1,9 +1,9 @@
-
-
-
-
+
+
diff --git a/app/src/main/res/layout/item_folder.xml b/app/src/main/res/layout/item_folder.xml
index b4f2342081..a3974442b3 100644
--- a/app/src/main/res/layout/item_folder.xml
+++ b/app/src/main/res/layout/item_folder.xml
@@ -1,5 +1,5 @@
-
@@ -9,7 +9,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content">
-
-
+
-
+
diff --git a/app/src/main/res/layout/item_folder_select.xml b/app/src/main/res/layout/item_folder_select.xml
index 0374de39d6..306443fcb7 100644
--- a/app/src/main/res/layout/item_folder_select.xml
+++ b/app/src/main/res/layout/item_folder_select.xml
@@ -1,10 +1,10 @@
-
-
-
-
+
+
diff --git a/app/src/main/res/layout/item_folder_unselectable.xml b/app/src/main/res/layout/item_folder_unselectable.xml
index e070d43de0..7cdde76ff6 100644
--- a/app/src/main/res/layout/item_folder_unselectable.xml
+++ b/app/src/main/res/layout/item_folder_unselectable.xml
@@ -1,5 +1,5 @@
-
@@ -8,7 +8,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content">
-
@@ -69,6 +69,6 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/ibExpander"
app:layout_constraintTop_toTopOf="parent" />
-
+
-
+
diff --git a/app/src/main/res/layout/item_group.xml b/app/src/main/res/layout/item_group.xml
index d352eea913..f9e595395d 100644
--- a/app/src/main/res/layout/item_group.xml
+++ b/app/src/main/res/layout/item_group.xml
@@ -1,5 +1,5 @@
-
@@ -37,4 +37,4 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvDate" />
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/item_identity.xml b/app/src/main/res/layout/item_identity.xml
index 8ee1589530..ece39ff735 100644
--- a/app/src/main/res/layout/item_identity.xml
+++ b/app/src/main/res/layout/item_identity.xml
@@ -1,5 +1,5 @@
-
@@ -8,7 +8,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content">
-
-
+
-
+
diff --git a/app/src/main/res/layout/item_image.xml b/app/src/main/res/layout/item_image.xml
index f93a339098..fa161c7d8e 100644
--- a/app/src/main/res/layout/item_image.xml
+++ b/app/src/main/res/layout/item_image.xml
@@ -1,10 +1,10 @@
-
-
-
-
+
+
diff --git a/app/src/main/res/layout/item_keyword.xml b/app/src/main/res/layout/item_keyword.xml
index 78751a8462..1fbb766ba0 100644
--- a/app/src/main/res/layout/item_keyword.xml
+++ b/app/src/main/res/layout/item_keyword.xml
@@ -1,10 +1,10 @@
-
-
-
-
+
+
diff --git a/app/src/main/res/layout/item_log.xml b/app/src/main/res/layout/item_log.xml
index c53487e10c..72cdd2c57a 100644
--- a/app/src/main/res/layout/item_log.xml
+++ b/app/src/main/res/layout/item_log.xml
@@ -1,5 +1,5 @@
-
@@ -28,4 +28,4 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/tvTime"
app:layout_constraintTop_toTopOf="parent" />
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/item_message_compact.xml b/app/src/main/res/layout/item_message_compact.xml
index 9fa079ceb4..309f05f4a4 100644
--- a/app/src/main/res/layout/item_message_compact.xml
+++ b/app/src/main/res/layout/item_message_compact.xml
@@ -1,5 +1,5 @@
-
@@ -10,7 +10,7 @@
android:layout_height="wrap_content"
android:foreground="?android:attr/selectableItemBackground">
-
-
+
-
+
diff --git a/app/src/main/res/layout/item_message_duplicate.xml b/app/src/main/res/layout/item_message_duplicate.xml
index 5bfa7fbe88..bff39a1270 100644
--- a/app/src/main/res/layout/item_message_duplicate.xml
+++ b/app/src/main/res/layout/item_message_duplicate.xml
@@ -1,5 +1,5 @@
-
@@ -10,7 +10,7 @@
android:layout_height="wrap_content"
android:foreground="?android:attr/selectableItemBackground">
-
-
+
-
+
diff --git a/app/src/main/res/layout/item_message_normal.xml b/app/src/main/res/layout/item_message_normal.xml
index 6a73d1786e..52429d7c6d 100644
--- a/app/src/main/res/layout/item_message_normal.xml
+++ b/app/src/main/res/layout/item_message_normal.xml
@@ -1,5 +1,5 @@
-
@@ -10,7 +10,7 @@
android:layout_height="wrap_content"
android:foreground="?android:attr/selectableItemBackground">
-
-
+
-
+
diff --git a/app/src/main/res/layout/item_message_placeholder.xml b/app/src/main/res/layout/item_message_placeholder.xml
index 0a3bd21797..a4ed74b103 100644
--- a/app/src/main/res/layout/item_message_placeholder.xml
+++ b/app/src/main/res/layout/item_message_placeholder.xml
@@ -1,5 +1,5 @@
-
@@ -15,4 +15,4 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/item_nav.xml b/app/src/main/res/layout/item_nav.xml
index 803955152a..a243a9f72a 100644
--- a/app/src/main/res/layout/item_nav.xml
+++ b/app/src/main/res/layout/item_nav.xml
@@ -1,11 +1,11 @@
-
-
-
-
+
+
diff --git a/app/src/main/res/layout/item_nav_group.xml b/app/src/main/res/layout/item_nav_group.xml
index 2e5f0c4103..e2ce3d644e 100644
--- a/app/src/main/res/layout/item_nav_group.xml
+++ b/app/src/main/res/layout/item_nav_group.xml
@@ -1,11 +1,11 @@
-
-
@@ -34,5 +34,5 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/ivGroup"
app:layout_constraintTop_toTopOf="parent" />
-
-
+
+
diff --git a/app/src/main/res/layout/item_operation.xml b/app/src/main/res/layout/item_operation.xml
index f16ca52b5f..c1ae87e413 100644
--- a/app/src/main/res/layout/item_operation.xml
+++ b/app/src/main/res/layout/item_operation.xml
@@ -1,10 +1,10 @@
-
-
-
-
\ No newline at end of file
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/item_order.xml b/app/src/main/res/layout/item_order.xml
index a77321d3ef..13bd2bf681 100644
--- a/app/src/main/res/layout/item_order.xml
+++ b/app/src/main/res/layout/item_order.xml
@@ -1,10 +1,10 @@
-
-
-
-
\ No newline at end of file
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/item_rule.xml b/app/src/main/res/layout/item_rule.xml
index e227aa4ab0..d47ab44829 100644
--- a/app/src/main/res/layout/item_rule.xml
+++ b/app/src/main/res/layout/item_rule.xml
@@ -1,5 +1,5 @@
-
@@ -8,7 +8,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content">
-
-
+
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/item_rule_match.xml b/app/src/main/res/layout/item_rule_match.xml
index 966120d22a..6b6291b46c 100644
--- a/app/src/main/res/layout/item_rule_match.xml
+++ b/app/src/main/res/layout/item_rule_match.xml
@@ -1,10 +1,10 @@
-
-
-
-
\ No newline at end of file
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/search_suggestion.xml b/app/src/main/res/layout/search_suggestion.xml
index 11033ef75e..8c068fd43f 100644
--- a/app/src/main/res/layout/search_suggestion.xml
+++ b/app/src/main/res/layout/search_suggestion.xml
@@ -1,5 +1,5 @@
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/spinner_account.xml b/app/src/main/res/layout/spinner_account.xml
index b5592dc2fe..10c6c5aefd 100644
--- a/app/src/main/res/layout/spinner_account.xml
+++ b/app/src/main/res/layout/spinner_account.xml
@@ -1,5 +1,5 @@
-
-
+
diff --git a/app/src/main/res/layout/spinner_contact.xml b/app/src/main/res/layout/spinner_contact.xml
index 5084c8e5fa..f1983e30a6 100644
--- a/app/src/main/res/layout/spinner_contact.xml
+++ b/app/src/main/res/layout/spinner_contact.xml
@@ -1,5 +1,5 @@
-
@@ -41,4 +41,4 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="@+id/tvName"
app:srcCompat="@drawable/twotone_person_24" />
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/spinner_contact_group.xml b/app/src/main/res/layout/spinner_contact_group.xml
index d688e2f89d..00eaefaca3 100644
--- a/app/src/main/res/layout/spinner_contact_group.xml
+++ b/app/src/main/res/layout/spinner_contact_group.xml
@@ -1,5 +1,5 @@
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/spinner_identity.xml b/app/src/main/res/layout/spinner_identity.xml
index 97d9c12601..99a197f0b6 100644
--- a/app/src/main/res/layout/spinner_identity.xml
+++ b/app/src/main/res/layout/spinner_identity.xml
@@ -1,5 +1,5 @@
-
@@ -56,4 +56,4 @@
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@android:id/text1" />
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/spinner_item1.xml b/app/src/main/res/layout/spinner_item1.xml
index 2ea579cd0c..3f6c84cff9 100644
--- a/app/src/main/res/layout/spinner_item1.xml
+++ b/app/src/main/res/layout/spinner_item1.xml
@@ -1,5 +1,5 @@
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/spinner_item1_dropdown.xml b/app/src/main/res/layout/spinner_item1_dropdown.xml
index 2ea579cd0c..3f6c84cff9 100644
--- a/app/src/main/res/layout/spinner_item1_dropdown.xml
+++ b/app/src/main/res/layout/spinner_item1_dropdown.xml
@@ -1,5 +1,5 @@
-
-
\ No newline at end of file
+
\ No newline at end of file