mirror of https://github.com/M66B/FairEmail.git
Word wrap addresses and subject
Who had though to set singleLine="true" and inputType="textMultiLine" ??
This commit is contained in:
parent
313ef5eddd
commit
36416a26b1
|
@ -30,7 +30,7 @@
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="6dp"
|
android:layout_marginStart="6dp"
|
||||||
android:hint="@string/title_to"
|
android:hint="@string/title_to"
|
||||||
android:inputType="textEmailAddress"
|
android:inputType="textEmailAddress|textMultiLine"
|
||||||
android:singleLine="true"
|
android:singleLine="true"
|
||||||
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
||||||
app:layout_constraintEnd_toStartOf="@+id/ivToAdd"
|
app:layout_constraintEnd_toStartOf="@+id/ivToAdd"
|
||||||
|
@ -55,7 +55,7 @@
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="6dp"
|
android:layout_marginStart="6dp"
|
||||||
android:hint="@string/title_cc"
|
android:hint="@string/title_cc"
|
||||||
android:inputType="textEmailAddress"
|
android:inputType="textEmailAddress|textMultiLine"
|
||||||
android:singleLine="true"
|
android:singleLine="true"
|
||||||
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
||||||
app:layout_constraintEnd_toStartOf="@+id/ivCcAdd"
|
app:layout_constraintEnd_toStartOf="@+id/ivCcAdd"
|
||||||
|
@ -80,7 +80,7 @@
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="6dp"
|
android:layout_marginStart="6dp"
|
||||||
android:hint="@string/title_bcc"
|
android:hint="@string/title_bcc"
|
||||||
android:inputType="textEmailAddress"
|
android:inputType="textEmailAddress|textMultiLine"
|
||||||
android:singleLine="true"
|
android:singleLine="true"
|
||||||
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
||||||
app:layout_constraintEnd_toStartOf="@+id/ivBccAdd"
|
app:layout_constraintEnd_toStartOf="@+id/ivBccAdd"
|
||||||
|
@ -106,7 +106,7 @@
|
||||||
android:layout_marginEnd="6dp"
|
android:layout_marginEnd="6dp"
|
||||||
android:layout_marginStart="6dp"
|
android:layout_marginStart="6dp"
|
||||||
android:hint="@string/title_subject"
|
android:hint="@string/title_subject"
|
||||||
android:inputType="textEmailSubject|textCapSentences"
|
android:inputType="textEmailSubject|textCapSentences|textMultiLine"
|
||||||
android:singleLine="true"
|
android:singleLine="true"
|
||||||
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
|
Loading…
Reference in New Issue