summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/activity_main.xml
diff options
context:
space:
mode:
authorbt <bt@rctt.net>2026-06-04 22:02:14 +0200
committerbt <bt@rctt.net>2026-06-04 22:02:14 +0200
commita50e09b8583c60cdb9316baa5a5550d9b16bc0f9 (patch)
tree1356a5eb1cb5c5b26c4ad423571555f541c8fb67 /app/src/main/res/layout/activity_main.xml
parent094a09ebfe142334f7b89ad2f03f17ed4dc1180e (diff)
downloadnetmon-new-ui.tar.gz
netmon-new-ui.zip
New uinew-ui
Diffstat (limited to 'app/src/main/res/layout/activity_main.xml')
-rw-r--r--app/src/main/res/layout/activity_main.xml49
1 files changed, 17 insertions, 32 deletions
diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml
index 76aa1e4..06e058e 100644
--- a/app/src/main/res/layout/activity_main.xml
+++ b/app/src/main/res/layout/activity_main.xml
@@ -1,42 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
-<androidx.constraintlayout.widget.ConstraintLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
- android:id="@+id/main"
+ xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
+ android:background="#ffffff"
tools:context=".MainActivity">
- <LinearLayout
- android:layout_width="0dp"
+ <FrameLayout
+ android:id="@+id/container"
+ android:layout_width="match_parent"
android:layout_height="match_parent"
- android:orientation="vertical"
+ android:layout_above="@+id/bottomNav" />
+
+
+ <com.google.android.material.bottomnavigation.BottomNavigationView
+ android:id="@+id/bottomNav"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_alignParentBottom="true"
+ android:scrollIndicators="left"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent">
-
- <TextView
- android:id="@+id/haederCell"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="Cell Info"
- android:textSize="20sp" />
-
- <ScrollView
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
-
- <LinearLayout
- android:id="@+id/cellsList"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical" />
- </ScrollView>
- <org.osmdroid.views.MapView android:id="@+id/map"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent" />
- </LinearLayout>
-
-</androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file
+ app:menu="@menu/nav_menu" />
+</RelativeLayout> \ No newline at end of file