mirror of https://github.com/M66B/FairEmail.git
parent
a7ec00e6ea
commit
4497fb060c
File diff suppressed because it is too large
Load Diff
@ -1,33 +1,60 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<eu.faircode.email.ScrollViewEx xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:padding="24dp">
|
android:padding="24dp"
|
||||||
|
android:scrollbarStyle="outsideOverlay">
|
||||||
|
|
||||||
<eu.faircode.email.FixedTextView
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||||||
android:id="@+id/tvNotes"
|
android:layout_width="match_parent"
|
||||||
android:layout_width="wrap_content"
|
android:layout_height="wrap_content">
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:labelFor="@+id/etKeyword"
|
|
||||||
android:text="@string/title_edit_notes"
|
|
||||||
android:textAppearance="@style/TextAppearance.AppCompat.Large"
|
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
|
||||||
app:layout_constraintTop_toTopOf="parent" />
|
|
||||||
|
|
||||||
<eu.faircode.email.EditTextPlain
|
<eu.faircode.email.FixedTextView
|
||||||
android:id="@+id/etNotes"
|
android:id="@+id/tvNotes"
|
||||||
android:layout_width="0dp"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="24dp"
|
android:labelFor="@+id/etKeyword"
|
||||||
android:imeOptions="actionDone"
|
android:text="@string/title_edit_notes"
|
||||||
android:inputType="textCapSentences|textMultiLine|textAutoCorrect"
|
android:textAppearance="@style/TextAppearance.AppCompat.Large"
|
||||||
android:text="Notes"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
|
||||||
app:layout_constraintTop_toBottomOf="@id/tvNotes">
|
|
||||||
|
|
||||||
<requestFocus />
|
<eu.faircode.email.EditTextPlain
|
||||||
</eu.faircode.email.EditTextPlain>
|
android:id="@+id/etNotes"
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="24dp"
|
||||||
|
android:imeOptions="actionDone"
|
||||||
|
android:inputType="textCapSentences|textMultiLine|textAutoCorrect"
|
||||||
|
android:text="Notes"
|
||||||
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@id/tvNotes">
|
||||||
|
|
||||||
|
<requestFocus />
|
||||||
|
</eu.faircode.email.EditTextPlain>
|
||||||
|
|
||||||
|
<eu.faircode.email.FixedTextView
|
||||||
|
android:id="@+id/tvColor"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="12dp"
|
||||||
|
android:text="@string/title_color"
|
||||||
|
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@id/etNotes" />
|
||||||
|
|
||||||
|
<eu.faircode.email.ViewButtonColor
|
||||||
|
android:id="@+id/btnColor"
|
||||||
|
style="?android:attr/buttonStyleSmall"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="6dp"
|
||||||
|
android:paddingHorizontal="6dp"
|
||||||
|
android:text="@string/title_select"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@id/tvColor" />
|
||||||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
|
</eu.faircode.email.ScrollViewEx>
|
Loading…
Reference in new issue