notes: add icons to use previous/next event as template

This commit is contained in:
2025-11-04 15:08:10 +01:00
parent 3ea396c045
commit f37089d96a
2 changed files with 87 additions and 2 deletions

View File

@@ -24,4 +24,30 @@
android:hint="@string/log_notes_dialog_note_hint"
android:background="@drawable/textview_background"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="end"
android:orientation="horizontal">
<TextView
android:id="@+id/notes_template_prev"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="16dp"
android:text="⬅️"/>
<TextView
android:id="@+id/notes_clear"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginHorizontal="5dp"
android:textSize="16dp"
android:text="🚫"/>
<TextView
android:id="@+id/notes_template_next"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="16dp"
android:text="➡️"/>
</LinearLayout>
</LinearLayout>