From 519ab376b8cf3e3c3f55c0d90f97a50726375aed Mon Sep 17 00:00:00 2001 From: M66B Date: Thu, 14 Apr 2022 08:41:31 +0200 Subject: [PATCH] Increased auto complete text length to 10,000 --- app/src/main/res/layout/fragment_compose.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/src/main/res/layout/fragment_compose.xml b/app/src/main/res/layout/fragment_compose.xml index 1193d5c82f..4da92090f3 100644 --- a/app/src/main/res/layout/fragment_compose.xml +++ b/app/src/main/res/layout/fragment_compose.xml @@ -92,6 +92,7 @@ android:imeOptions="actionNext" android:importantForAutofill="no" android:inputType="textEmailAddress|textNoSuggestions" + android:maxLength="10000" android:textAppearance="@style/TextAppearance.AppCompat.Medium" app:layout_constraintEnd_toStartOf="@+id/ibToAdd" app:layout_constraintStart_toEndOf="@id/ivToLegend" @@ -136,6 +137,7 @@ android:imeOptions="actionNext" android:importantForAutofill="no" android:inputType="textEmailAddress|textNoSuggestions" + android:maxLength="10000" android:textAppearance="@style/TextAppearance.AppCompat.Medium" app:layout_constraintEnd_toStartOf="@+id/ibCcAdd" app:layout_constraintStart_toEndOf="@id/ivCcLegend" @@ -180,6 +182,7 @@ android:imeOptions="actionNext" android:importantForAutofill="no" android:inputType="textEmailAddress|textNoSuggestions" + android:maxLength="10000" android:textAppearance="@style/TextAppearance.AppCompat.Medium" app:layout_constraintEnd_toStartOf="@+id/ibBccAdd" app:layout_constraintStart_toEndOf="@id/ivBccLegend"