summaryrefslogtreecommitdiff
path: root/android-app/app/src/main/res/menu
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-03-23 07:07:17 +0000
committerPeter Stone <thepeterstone@gmail.com>2026-03-23 07:07:17 +0000
commit65c04f94ecd862ec2ba195e0128da84f79647ef1 (patch)
tree3b6162172a8050ec9444a6f233321e6a3befe2c4 /android-app/app/src/main/res/menu
parent77892d354eda07d98e2dfa5d00fca1ed1f808d8b (diff)
fix: resolve Kotlin compilation errors from UI refactor
- Make InstrumentHandler.labelTrend and barometerTrendView nullable - Remove anchorWatchHandler init block referencing non-existent view IDs - Fix state.radiusM -> state.watchCircleRadiusMeters - Add bottom_nav_weather_menu.xml with nav_forecast; point WeatherActivity at it 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_weather_menu.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/android-app/app/src/main/res/menu/bottom_nav_weather_menu.xml b/android-app/app/src/main/res/menu/bottom_nav_weather_menu.xml
new file mode 100644
index 0000000..d3c1427
--- /dev/null
+++ b/android-app/app/src/main/res/menu/bottom_nav_weather_menu.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="utf-8"?>
+<menu xmlns:android="http://schemas.android.com/apk/res/android">
+ <item
+ android:id="@+id/nav_map"
+ android:icon="@drawable/ic_map"
+ android:title="Map" />
+ <item
+ android:id="@+id/nav_forecast"
+ android:icon="@drawable/ic_instruments"
+ android:title="Forecast" />
+</menu>