summaryrefslogtreecommitdiff
path: root/android-app/app/src/main/res
diff options
context:
space:
mode:
Diffstat (limited to 'android-app/app/src/main/res')
-rw-r--r--android-app/app/src/main/res/layout/activity_weather.xml2
-rw-r--r--android-app/app/src/main/res/menu/bottom_nav_weather_menu.xml11
2 files changed, 12 insertions, 1 deletions
diff --git a/android-app/app/src/main/res/layout/activity_weather.xml b/android-app/app/src/main/res/layout/activity_weather.xml
index 36ea871..68374ca 100644
--- a/android-app/app/src/main/res/layout/activity_weather.xml
+++ b/android-app/app/src/main/res/layout/activity_weather.xml
@@ -14,7 +14,7 @@
android:id="@+id/bottom_nav"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- app:menu="@menu/bottom_nav_menu"
+ app:menu="@menu/bottom_nav_weather_menu"
xmlns:app="http://schemas.android.com/apk/res-auto" />
</LinearLayout>
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>