diff options
| author | Claude <noreply@anthropic.com> | 2026-05-27 05:32:36 +0000 |
|---|---|---|
| committer | Claude <noreply@anthropic.com> | 2026-05-27 05:32:36 +0000 |
| commit | 1f9f0ec3f7ce986134ed75836fc42e43582aa34f (patch) | |
| tree | 2f9662743ac6ae655aba0ab2ff2aa1511cb7c8a7 /android-app/app/src/main/res | |
| parent | 0db33911ca4841c658b22912d3ecf32477e5e827 (diff) | |
Add pirate mode Easter egg to trip report
Long-press the "Trip Report" header flips the narrative into pirate
dialect (☠ VOYAGE header, "Made X nm by the log", "Avast!" log-entry
prefixes, closing "Fair winds and following seas. Arr."). Long-press
again returns to standard nav voice. Seamanlike output remains the
default; pirate mode is purely opt-in.
https://claude.ai/code/session_01KXYBuAHZkvv63DeUG6XaZD
Diffstat (limited to 'android-app/app/src/main/res')
| -rw-r--r-- | android-app/app/src/main/res/layout/fragment_trip_report.xml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/android-app/app/src/main/res/layout/fragment_trip_report.xml b/android-app/app/src/main/res/layout/fragment_trip_report.xml index 7228fa9..c8092ba 100644 --- a/android-app/app/src/main/res/layout/fragment_trip_report.xml +++ b/android-app/app/src/main/res/layout/fragment_trip_report.xml @@ -12,12 +12,14 @@ android:padding="24dp"> <TextView + android:id="@+id/tv_report_title" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Trip Report" android:textSize="24sp" android:textStyle="bold" - android:layout_marginBottom="24dp" /> + android:layout_marginBottom="24dp" + android:longClickable="true" /> <com.google.android.material.card.MaterialCardView android:layout_width="match_parent" |
