diff options
| author | bt <bt@rctt.net> | 2026-05-03 03:27:18 +0200 |
|---|---|---|
| committer | bt <bt@rctt.net> | 2026-05-03 03:27:18 +0200 |
| commit | 2937bc975848e7979287e7067f4fff10bbfe4988 (patch) | |
| tree | f8ec8ea8f638977b75919879a5a76eb7333a264b /app/src/main/res/layout/activity_main.xml | |
| parent | cde732059b237af7b147d58c43e4f5b03b9fbddd (diff) | |
| download | netmon-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.xml | 63 |
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 |
