From 2b6a7599b3a9b0159ac3f45917e6e5d77841328c Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 30 May 2026 08:11:15 +0000 Subject: Redesign trip report: structured layout, remove generate button, fix photo entries MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Layout: - Stats displayed as three large-number columns (distance / avg kt / max kt) - Date and time range as a clean header above stats - Conditions row (seas + temp) conditionally shown - Log entries rendered as a proper list with HH:mm timestamps - No GENERATE REPORT button — report auto-generates on open; RETRY shown only on error - Pirate mode (long-press title) still renders monospace narrative as before Generator: - Time format changed from 4-digit HHmm to HH:mm - "(photo only)" entries display as 📷 instead of literal "(photo only) [photo]" https://claude.ai/code/session_01KXYBuAHZkvv63DeUG6XaZD --- .../src/main/res/layout/fragment_trip_report.xml | 190 +++++++++++++++++++-- 1 file changed, 173 insertions(+), 17 deletions(-) (limited to 'android-app/app/src/main/res') 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 c8092ba..ec3f58e 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 @@ -18,48 +18,204 @@ android:text="Trip Report" android:textSize="24sp" android:textStyle="bold" - android:layout_marginBottom="24dp" + android:layout_marginBottom="20dp" android:longClickable="true" /> - + + android:orientation="vertical" + android:visibility="gone"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + android:layout_marginTop="16dp" + android:visibility="gone"> + + + android:orientation="vertical" /> + + + + + + + + + + + + android:layout_height="wrap_content" + android:text="RETRY" + android:visibility="gone" /> -- cgit v1.2.3