summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/activity_main.xml
diff options
context:
space:
mode:
authorbt <bt@rctt.net>2026-05-03 03:27:18 +0200
committerbt <bt@rctt.net>2026-05-03 03:27:18 +0200
commit2937bc975848e7979287e7067f4fff10bbfe4988 (patch)
treef8ec8ea8f638977b75919879a5a76eb7333a264b /app/src/main/res/layout/activity_main.xml
parentcde732059b237af7b147d58c43e4f5b03b9fbddd (diff)
downloadnetmon-2937bc975848e7979287e7067f4fff10bbfe4988.tar.gz
netmon-2937bc975848e7979287e7067f4fff10bbfe4988.zip
Basic current cell info view
Diffstat (limited to 'app/src/main/res/layout/activity_main.xml')
-rw-r--r--app/src/main/res/layout/activity_main.xml63
1 files changed, 53 insertions, 10 deletions
diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml
index 25a2ae6..e7c0e2c 100644
--- a/app/src/main/res/layout/activity_main.xml
+++ b/app/src/main/res/layout/activity_main.xml
@@ -7,13 +7,56 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Hello World!"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintTop_toTopOf="parent" />
-
- </androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical"
+ 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="400dp">
+
+ <LinearLayout
+ android:id="@+id/cellView"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical" />
+ </ScrollView>
+
+ <View
+ android:id="@+id/divider"
+ android:layout_width="match_parent"
+ android:layout_height="1dp"
+ android:background="?android:attr/listDivider" />
+
+ <TextView
+ android:id="@+id/headerStatus"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="Status"
+ android:textSize="20sp" />
+
+ <ScrollView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+ <LinearLayout
+ android:id="@+id/statusView"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical"/>
+ </ScrollView>
+ </LinearLayout>
+
+</androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file