diff options
author | Isidro Henoch <imhenoch@protonmail.com> | 2021-12-16 04:01:24 -0600 |
---|---|---|
committer | Isidro Henoch <imhenoch@protonmail.com> | 2021-12-16 04:01:24 -0600 |
commit | 9da618124f61c2d66daa877f47bee1beaab9bde5 (patch) | |
tree | 71195c747af6547852e826b66aa600b2859be368 /androidApp/src/main/res/layout | |
parent | abad322fd50b21fb102ddd539ace6fcc0f8ff2b4 (diff) | |
download | etbsa-trackermap-mobile-9da618124f61c2d66daa877f47bee1beaab9bde5.tar.gz etbsa-trackermap-mobile-9da618124f61c2d66daa877f47bee1beaab9bde5.tar.bz2 etbsa-trackermap-mobile-9da618124f61c2d66daa877f47bee1beaab9bde5.zip |
Adds an ugly table to show details
Diffstat (limited to 'androidApp/src/main/res/layout')
-rw-r--r-- | androidApp/src/main/res/layout/unit_details_information.xml | 65 |
1 files changed, 18 insertions, 47 deletions
diff --git a/androidApp/src/main/res/layout/unit_details_information.xml b/androidApp/src/main/res/layout/unit_details_information.xml index bf8b44c..f4b6fae 100644 --- a/androidApp/src/main/res/layout/unit_details_information.xml +++ b/androidApp/src/main/res/layout/unit_details_information.xml @@ -22,60 +22,31 @@ android:orientation="vertical"> <TextView - android:id="@+id/deviceName" + android:id="@+id/nameDetail" + style="@style/TextAppearance.AppCompat.Headline" android:layout_width="match_parent" android:layout_height="wrap_content" android:textColor="@color/colorPrimaryDark" - android:textSize="26dp" tools:text="1AAUTO" /> - <TextView - android:id="@+id/driverDetail" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:textColor="@color/colorPrimaryDark" - android:textSize="18dp" - tools:text="Javier Zavala" /> - - <TextView - android:id="@+id/speedDetail" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:textColor="@color/colorPrimaryDark" - android:textSize="18dp" - tools:text="0Km/h - Stopped" /> - - <TextView - android:id="@+id/addressDetail" + <TableLayout + android:id="@+id/informationTable" android:layout_width="match_parent" android:layout_height="wrap_content" - android:textColor="@color/colorPrimaryDark" - android:textSize="18dp" - tools:text="1000 Emerald Pools, CA" /> - - <TextView - android:id="@+id/latitudeDetail" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:textColor="@color/colorPrimaryDark" - android:textSize="18dp" - tools:text="20.32958356" /> - - <TextView - android:id="@+id/longitudeDetail" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:textColor="@color/colorPrimaryDark" - android:textSize="18dp" - tools:text="-101.38659274" /> - - <TextView - android:id="@+id/protocolDetail" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:textColor="@color/colorPrimaryDark" - android:textSize="18dp" - tools:text="osmand" /> + android:stretchColumns="*"> + <TableRow + android:background="@color/colorPrimary"> + <TextView + android:text="@string/key" + android:textColor="@color/background" + android:paddingHorizontal="@dimen/padding"/> + + <TextView + android:text="@string/value" + android:textColor="@color/background" + android:paddingHorizontal="@dimen/padding"/> + </TableRow> + </TableLayout> </LinearLayout> |