diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-03-23 04:16:32 +0000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-03-23 04:16:32 +0000 |
| commit | 77892d354eda07d98e2dfa5d00fca1ed1f808d8b (patch) | |
| tree | 53c05f944d616eef5cbc3ee667ad6beb18665d23 /android-app/app/src/main/res/menu | |
| parent | f024a6a1cbcb68395fe1a15d4ac852c2be2416e6 (diff) | |
feat: refactor UI to BottomNavigationView with Safety and Doc fragments
Replace FAB-based navigation with a 4-tab BottomNavigationView (Map,
Instruments, Log, Safety). Instruments use a collapsible bottom sheet;
Log and Safety display as full-screen overlay fragments.
- Add SafetyFragment with MOB and Anchor Watch controls
- Add DocFragment for in-app markdown help (Markwon: core, tables, images)
- Add layout_instruments_sheet with 3x3 instrument grid and PolarDiagramView
- Add fragment_safety and fragment_doc layouts
- Add vector drawables: ic_map, ic_instruments, ic_log, ic_safety, ic_close
- Update activity_main.xml to CoordinatorLayout with bottom sheet + overlay
- Fix: set isHideable=true before STATE_HIDDEN to avoid silent no-op from
behavior_hideable=false default; restore false on Map/Instruments tabs
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'android-app/app/src/main/res/menu')
| -rw-r--r-- | android-app/app/src/main/res/menu/bottom_nav_menu.xml | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/android-app/app/src/main/res/menu/bottom_nav_menu.xml b/android-app/app/src/main/res/menu/bottom_nav_menu.xml index 6922dee..b29fb08 100644 --- a/android-app/app/src/main/res/menu/bottom_nav_menu.xml +++ b/android-app/app/src/main/res/menu/bottom_nav_menu.xml @@ -2,10 +2,18 @@ <menu xmlns:android="http://schemas.android.com/apk/res/android"> <item android:id="@+id/nav_map" - android:icon="@android:drawable/ic_dialog_map" - android:title="@string/nav_map" /> + android:icon="@drawable/ic_map" + android:title="Map" /> <item - android:id="@+id/nav_forecast" - android:icon="@android:drawable/ic_dialog_info" - android:title="@string/nav_forecast" /> + android:id="@+id/nav_instruments" + android:icon="@drawable/ic_instruments" + android:title="Instruments" /> + <item + android:id="@+id/nav_log" + android:icon="@drawable/ic_log" + android:title="Log" /> + <item + android:id="@+id/nav_safety" + android:icon="@drawable/ic_safety" + android:title="Safety" /> </menu> |
