mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 09:47:13 +00:00
Word wrap addresses and subject
Who had though to set singleLine="true" and inputType="textMultiLine" ??
This commit is contained in:
parent
313ef5eddd
commit
36416a26b1
1 changed files with 4 additions and 4 deletions
|
@ -30,7 +30,7 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="6dp"
|
||||
android:hint="@string/title_to"
|
||||
android:inputType="textEmailAddress"
|
||||
android:inputType="textEmailAddress|textMultiLine"
|
||||
android:singleLine="true"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
||||
app:layout_constraintEnd_toStartOf="@+id/ivToAdd"
|
||||
|
@ -55,7 +55,7 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="6dp"
|
||||
android:hint="@string/title_cc"
|
||||
android:inputType="textEmailAddress"
|
||||
android:inputType="textEmailAddress|textMultiLine"
|
||||
android:singleLine="true"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
||||
app:layout_constraintEnd_toStartOf="@+id/ivCcAdd"
|
||||
|
@ -80,7 +80,7 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="6dp"
|
||||
android:hint="@string/title_bcc"
|
||||
android:inputType="textEmailAddress"
|
||||
android:inputType="textEmailAddress|textMultiLine"
|
||||
android:singleLine="true"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
||||
app:layout_constraintEnd_toStartOf="@+id/ivBccAdd"
|
||||
|
@ -106,7 +106,7 @@
|
|||
android:layout_marginEnd="6dp"
|
||||
android:layout_marginStart="6dp"
|
||||
android:hint="@string/title_subject"
|
||||
android:inputType="textEmailSubject|textCapSentences"
|
||||
android:inputType="textEmailSubject|textCapSentences|textMultiLine"
|
||||
android:singleLine="true"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
|
|
Loading…
Reference in a new issue