Small improvements

This commit is contained in:
M66B 2021-08-18 17:13:29 +02:00
parent c04cbb78c3
commit f14dd13a9c
2 changed files with 23 additions and 18 deletions

View File

@ -351,13 +351,13 @@ public class FragmentCompose extends FragmentBase {
etExtra = view.findViewById(R.id.etExtra); etExtra = view.findViewById(R.id.etExtra);
tvDomain = view.findViewById(R.id.tvDomain); tvDomain = view.findViewById(R.id.tvDomain);
etTo = view.findViewById(R.id.etTo); etTo = view.findViewById(R.id.etTo);
ibToAdd = view.findViewById(R.id.ivToAdd); ibToAdd = view.findViewById(R.id.ibToAdd);
etCc = view.findViewById(R.id.etCc); etCc = view.findViewById(R.id.etCc);
ibCcAdd = view.findViewById(R.id.ivCcAdd); ibCcAdd = view.findViewById(R.id.ibCcAdd);
etBcc = view.findViewById(R.id.etBcc); etBcc = view.findViewById(R.id.etBcc);
ibBccAdd = view.findViewById(R.id.ivBccAdd); ibBccAdd = view.findViewById(R.id.ibBccAdd);
etSubject = view.findViewById(R.id.etSubject); etSubject = view.findViewById(R.id.etSubject);
ibCcBcc = view.findViewById(R.id.ivCcBcc); ibCcBcc = view.findViewById(R.id.ibCcBcc);
rvAttachment = view.findViewById(R.id.rvAttachment); rvAttachment = view.findViewById(R.id.rvAttachment);
tvNoInternetAttachments = view.findViewById(R.id.tvNoInternetAttachments); tvNoInternetAttachments = view.findViewById(R.id.tvNoInternetAttachments);
tvDsn = view.findViewById(R.id.tvDsn); tvDsn = view.findViewById(R.id.tvDsn);
@ -498,11 +498,11 @@ public class FragmentCompose extends FragmentBase {
public void onClick(View view) { public void onClick(View view) {
int request; int request;
int id = view.getId(); int id = view.getId();
if (id == R.id.ivToAdd) { if (id == R.id.ibToAdd) {
request = REQUEST_CONTACT_TO; request = REQUEST_CONTACT_TO;
} else if (id == R.id.ivCcAdd) { } else if (id == R.id.ibCcAdd) {
request = REQUEST_CONTACT_CC; request = REQUEST_CONTACT_CC;
} else if (id == R.id.ivBccAdd) { } else if (id == R.id.ibBccAdd) {
request = REQUEST_CONTACT_BCC; request = REQUEST_CONTACT_BCC;
} else { } else {
return; return;

View File

@ -93,17 +93,18 @@
android:importantForAutofill="no" android:importantForAutofill="no"
android:inputType="textEmailAddress|textNoSuggestions" android:inputType="textEmailAddress|textNoSuggestions"
android:textAppearance="@style/TextAppearance.AppCompat.Medium" android:textAppearance="@style/TextAppearance.AppCompat.Medium"
app:layout_constraintEnd_toStartOf="@+id/ivToAdd" app:layout_constraintEnd_toStartOf="@+id/ibToAdd"
app:layout_constraintStart_toEndOf="@id/ivToLegend" app:layout_constraintStart_toEndOf="@id/ivToLegend"
app:layout_constraintTop_toBottomOf="@id/etExtra" /> app:layout_constraintTop_toBottomOf="@id/etExtra" />
<ImageButton <ImageButton
android:id="@+id/ivToAdd" android:id="@+id/ibToAdd"
android:layout_width="24dp" android:layout_width="24dp"
android:layout_height="24dp" android:layout_height="24dp"
android:layout_marginEnd="6dp" android:layout_marginEnd="6dp"
android:background="?android:attr/selectableItemBackgroundBorderless" android:background="?android:attr/selectableItemBackgroundBorderless"
android:contentDescription="@string/title_legend_pick" android:contentDescription="@string/title_legend_pick"
android:tooltipText="@string/title_legend_pick"
app:layout_constraintBottom_toBottomOf="@id/etTo" app:layout_constraintBottom_toBottomOf="@id/etTo"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/etTo" app:layout_constraintStart_toEndOf="@id/etTo"
@ -135,17 +136,18 @@
android:importantForAutofill="no" android:importantForAutofill="no"
android:inputType="textEmailAddress|textNoSuggestions" android:inputType="textEmailAddress|textNoSuggestions"
android:textAppearance="@style/TextAppearance.AppCompat.Medium" android:textAppearance="@style/TextAppearance.AppCompat.Medium"
app:layout_constraintEnd_toStartOf="@+id/ivCcAdd" app:layout_constraintEnd_toStartOf="@+id/ibCcAdd"
app:layout_constraintStart_toEndOf="@id/ivCcLegend" app:layout_constraintStart_toEndOf="@id/ivCcLegend"
app:layout_constraintTop_toBottomOf="@+id/etTo" /> app:layout_constraintTop_toBottomOf="@+id/etTo" />
<ImageButton <ImageButton
android:id="@+id/ivCcAdd" android:id="@+id/ibCcAdd"
android:layout_width="24dp" android:layout_width="24dp"
android:layout_height="24dp" android:layout_height="24dp"
android:layout_marginEnd="6dp" android:layout_marginEnd="6dp"
android:background="?android:attr/selectableItemBackgroundBorderless" android:background="?android:attr/selectableItemBackgroundBorderless"
android:contentDescription="@string/title_legend_pick" android:contentDescription="@string/title_legend_pick"
android:tooltipText="@string/title_legend_pick"
app:layout_constraintBottom_toBottomOf="@id/etCc" app:layout_constraintBottom_toBottomOf="@id/etCc"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/etCc" app:layout_constraintStart_toEndOf="@id/etCc"
@ -177,17 +179,18 @@
android:importantForAutofill="no" android:importantForAutofill="no"
android:inputType="textEmailAddress|textNoSuggestions" android:inputType="textEmailAddress|textNoSuggestions"
android:textAppearance="@style/TextAppearance.AppCompat.Medium" android:textAppearance="@style/TextAppearance.AppCompat.Medium"
app:layout_constraintEnd_toStartOf="@+id/ivBccAdd" app:layout_constraintEnd_toStartOf="@+id/ibBccAdd"
app:layout_constraintStart_toEndOf="@id/ivBccLegend" app:layout_constraintStart_toEndOf="@id/ivBccLegend"
app:layout_constraintTop_toBottomOf="@+id/etCc" /> app:layout_constraintTop_toBottomOf="@+id/etCc" />
<ImageButton <ImageButton
android:id="@+id/ivBccAdd" android:id="@+id/ibBccAdd"
android:layout_width="24dp" android:layout_width="24dp"
android:layout_height="24dp" android:layout_height="24dp"
android:layout_marginEnd="6dp" android:layout_marginEnd="6dp"
android:background="?android:attr/selectableItemBackgroundBorderless" android:background="?android:attr/selectableItemBackgroundBorderless"
android:contentDescription="@string/title_legend_pick" android:contentDescription="@string/title_legend_pick"
android:tooltipText="@string/title_legend_pick"
app:layout_constraintBottom_toBottomOf="@id/etBcc" app:layout_constraintBottom_toBottomOf="@id/etBcc"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/etBcc" app:layout_constraintStart_toEndOf="@id/etBcc"
@ -206,12 +209,12 @@
android:imeOptions="actionNext" android:imeOptions="actionNext"
android:inputType="textEmailSubject|textCapSentences|textAutoCorrect" android:inputType="textEmailSubject|textCapSentences|textAutoCorrect"
android:textAppearance="@style/TextAppearance.AppCompat.Medium" android:textAppearance="@style/TextAppearance.AppCompat.Medium"
app:layout_constraintEnd_toStartOf="@+id/ivCcBcc" app:layout_constraintEnd_toStartOf="@+id/ibCcBcc"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/etBcc" /> app:layout_constraintTop_toBottomOf="@+id/etBcc" />
<ImageButton <ImageButton
android:id="@+id/ivCcBcc" android:id="@+id/ibCcBcc"
android:layout_width="24dp" android:layout_width="24dp"
android:layout_height="24dp" android:layout_height="24dp"
android:layout_marginEnd="6dp" android:layout_marginEnd="6dp"
@ -362,6 +365,7 @@
android:background="?android:attr/selectableItemBackgroundBorderless" android:background="?android:attr/selectableItemBackgroundBorderless"
android:contentDescription="@string/title_legend_show_images" android:contentDescription="@string/title_legend_show_images"
android:padding="3dp" android:padding="3dp"
android:tooltipText="@string/title_legend_show_images"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@+id/cbSignature" app:layout_constraintTop_toBottomOf="@+id/cbSignature"
app:srcCompat="@drawable/twotone_file_copy_24" /> app:srcCompat="@drawable/twotone_file_copy_24" />
@ -381,7 +385,6 @@
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="0dp" android:layout_height="0dp"
android:background="?android:attr/selectableItemBackgroundBorderless" android:background="?android:attr/selectableItemBackgroundBorderless"
android:contentDescription="@string/title_no_format"
app:layout_constraintBottom_toBottomOf="@+id/tvReferenceHint" app:layout_constraintBottom_toBottomOf="@+id/tvReferenceHint"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/tvReferenceHint" app:layout_constraintTop_toTopOf="@+id/tvReferenceHint"
@ -412,6 +415,7 @@
android:background="?android:attr/selectableItemBackgroundBorderless" android:background="?android:attr/selectableItemBackgroundBorderless"
android:contentDescription="@string/title_legend_edit" android:contentDescription="@string/title_legend_edit"
android:padding="3dp" android:padding="3dp"
android:tooltipText="@string/title_legend_edit"
app:layout_constraintEnd_toStartOf="@+id/ibReferenceImages" app:layout_constraintEnd_toStartOf="@+id/ibReferenceImages"
app:layout_constraintTop_toBottomOf="@id/tvReferenceHint" app:layout_constraintTop_toBottomOf="@id/tvReferenceHint"
app:srcCompat="@drawable/twotone_edit_24" /> app:srcCompat="@drawable/twotone_edit_24" />
@ -425,6 +429,7 @@
android:background="?android:attr/selectableItemBackgroundBorderless" android:background="?android:attr/selectableItemBackgroundBorderless"
android:contentDescription="@string/title_legend_show_images" android:contentDescription="@string/title_legend_show_images"
android:padding="3dp" android:padding="3dp"
android:tooltipText="@string/title_legend_show_images"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvReferenceHint" app:layout_constraintTop_toBottomOf="@id/tvReferenceHint"
app:srcCompat="@drawable/twotone_image_24" /> app:srcCompat="@drawable/twotone_image_24" />
@ -448,7 +453,7 @@
android:id="@+id/grpHeader" android:id="@+id/grpHeader"
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="0dp" android:layout_height="0dp"
app:constraint_referenced_ids="spIdentity,ivToLegend,etTo,ivToAdd,etSubject,vSeparator" /> app:constraint_referenced_ids="spIdentity,ivToLegend,etTo,ibToAdd,etSubject,vSeparator" />
<androidx.constraintlayout.widget.Group <androidx.constraintlayout.widget.Group
android:id="@+id/grpExtra" android:id="@+id/grpExtra"
@ -460,7 +465,7 @@
android:id="@+id/grpAddresses" android:id="@+id/grpAddresses"
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="0dp" android:layout_height="0dp"
app:constraint_referenced_ids="ivCcLegend,etCc,ivCcAdd,ivBccLegend,etBcc,ivBccAdd" /> app:constraint_referenced_ids="ivCcLegend,etCc,ibCcAdd,ivBccLegend,etBcc,ibBccAdd" />
<androidx.constraintlayout.widget.Group <androidx.constraintlayout.widget.Group
android:id="@+id/grpAttachments" android:id="@+id/grpAttachments"