summaryrefslogtreecommitdiff
path: root/android-app/app/src/main/res/layout/activity_weather.xml
diff options
context:
space:
mode:
Diffstat (limited to 'android-app/app/src/main/res/layout/activity_weather.xml')
-rw-r--r--android-app/app/src/main/res/layout/activity_weather.xml20
1 files changed, 20 insertions, 0 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
new file mode 100644
index 0000000..36ea871
--- /dev/null
+++ b/android-app/app/src/main/res/layout/activity_weather.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical">
+
+ <FrameLayout
+ android:id="@+id/fragment_container"
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:layout_weight="1" />
+
+ <com.google.android.material.bottomnavigation.BottomNavigationView
+ android:id="@+id/bottom_nav"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ app:menu="@menu/bottom_nav_menu"
+ xmlns:app="http://schemas.android.com/apk/res-auto" />
+
+</LinearLayout>