aboutsummaryrefslogtreecommitdiff
path: root/androidApp/src/main/res/layout/unit_details_reports.xml
diff options
context:
space:
mode:
authorIsidro Henoch <imhenoch@protonmail.com>2021-12-16 01:50:17 -0600
committerIsidro Henoch <imhenoch@protonmail.com>2021-12-16 01:50:17 -0600
commit36b7d109fa1e8c5a7c5fc262a3b0d7b1286e07c8 (patch)
tree85c61ca55fc2d05b8a4ee8e505b05b2d599610bb /androidApp/src/main/res/layout/unit_details_reports.xml
parent547ce2e85e5b22e7c31f5a51df149919260d54b0 (diff)
downloadetbsa-trackermap-mobile-36b7d109fa1e8c5a7c5fc262a3b0d7b1286e07c8.tar.gz
etbsa-trackermap-mobile-36b7d109fa1e8c5a7c5fc262a3b0d7b1286e07c8.tar.bz2
etbsa-trackermap-mobile-36b7d109fa1e8c5a7c5fc262a3b0d7b1286e07c8.zip
Shows the details section
- Show tabs with each details section, the sections doesn't display any useful information for now - Properly converts speed to km/h
Diffstat (limited to 'androidApp/src/main/res/layout/unit_details_reports.xml')
-rw-r--r--androidApp/src/main/res/layout/unit_details_reports.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/androidApp/src/main/res/layout/unit_details_reports.xml b/androidApp/src/main/res/layout/unit_details_reports.xml
new file mode 100644
index 0000000..f1b52e3
--- /dev/null
+++ b/androidApp/src/main/res/layout/unit_details_reports.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<androidx.constraintlayout.widget.ConstraintLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ xmlns:tools="http://schemas.android.com/tools">
+
+ <TextView
+ android:id="@+id/unitReportsText"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ app:layout_constraintTop_toTopOf="parent"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintBottom_toBottomOf="parent"
+ tools:text="REPORTS"/>
+
+</androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file