diff options
author | Isidro Henoch <imhenoch@protonmail.com> | 2021-12-16 01:50:17 -0600 |
---|---|---|
committer | Isidro Henoch <imhenoch@protonmail.com> | 2021-12-16 01:50:17 -0600 |
commit | 95af352c7ae6b7f06d3248aac18b3a65cefc803a (patch) | |
tree | eb2647294f39d691c1dd09b228ae7a91b883048b /androidApp/src/main/res/layout/unit_details_information.xml | |
parent | f08ef2459cfa0f3582db77372b1e534b1291cdc0 (diff) | |
download | etbsa-trackermap-mobile-95af352c7ae6b7f06d3248aac18b3a65cefc803a.tar.gz etbsa-trackermap-mobile-95af352c7ae6b7f06d3248aac18b3a65cefc803a.tar.bz2 etbsa-trackermap-mobile-95af352c7ae6b7f06d3248aac18b3a65cefc803a.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_information.xml')
-rw-r--r-- | androidApp/src/main/res/layout/unit_details_information.xml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/androidApp/src/main/res/layout/unit_details_information.xml b/androidApp/src/main/res/layout/unit_details_information.xml new file mode 100644 index 0000000..1e88af8 --- /dev/null +++ b/androidApp/src/main/res/layout/unit_details_information.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/unitInformationText" + 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="INFORMATION"/> + +</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file |