Added encrypted legend

This commit is contained in:
M66B 2019-11-17 12:22:01 +01:00
parent 80b23ce13d
commit 952e6e805b
2 changed files with 24 additions and 1 deletions

View File

@ -147,6 +147,28 @@
app:layout_constraintStart_toEndOf="@id/ivLowPriority" app:layout_constraintStart_toEndOf="@id/ivLowPriority"
app:layout_constraintTop_toTopOf="@id/ivLowPriority" /> app:layout_constraintTop_toTopOf="@id/ivLowPriority" />
<ImageView
android:id="@+id/ivEncrypted"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/title_legend_priority"
android:padding="12dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/ivLowPriority"
app:srcCompat="@drawable/baseline_lock_24" />
<TextView
android:id="@+id/tvEncrypted"
android:layout_width="0dp"
android:layout_height="0dp"
android:gravity="center_vertical"
android:text="@string/title_legend_encrypted"
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
app:layout_constraintBottom_toBottomOf="@id/ivEncrypted"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/ivEncrypted"
app:layout_constraintTop_toTopOf="@id/ivEncrypted" />
<ImageView <ImageView
android:id="@+id/ivSnoozed" android:id="@+id/ivSnoozed"
android:layout_width="wrap_content" android:layout_width="wrap_content"
@ -154,7 +176,7 @@
android:contentDescription="@string/title_legend_snoozed" android:contentDescription="@string/title_legend_snoozed"
android:padding="12dp" android:padding="12dp"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/ivLowPriority" app:layout_constraintTop_toBottomOf="@id/ivEncrypted"
app:srcCompat="@drawable/baseline_timelapse_24" /> app:srcCompat="@drawable/baseline_timelapse_24" />
<TextView <TextView

View File

@ -825,6 +825,7 @@
<string name="title_legend_draft">Has draft</string> <string name="title_legend_draft">Has draft</string>
<string name="title_legend_priority">Has high priority</string> <string name="title_legend_priority">Has high priority</string>
<string name="title_legend_priority_low">Has low priority</string> <string name="title_legend_priority_low">Has low priority</string>
<string name="title_legend_encrypted">Is encrypted</string>
<string name="title_legend_auth">Authentication failed</string> <string name="title_legend_auth">Authentication failed</string>
<string name="title_legend_snoozed">Is snoozed</string> <string name="title_legend_snoozed">Is snoozed</string>
<string name="title_legend_browsed">Is browsed or searched</string> <string name="title_legend_browsed">Is browsed or searched</string>