diff options
author | Iván Ávalos <avalos@disroot.org> | 2022-01-04 22:37:36 -0600 |
---|---|---|
committer | Iván Ávalos <avalos@disroot.org> | 2022-01-04 22:37:36 -0600 |
commit | a43ed464b9dc0f7700e87e70bb60c588628d89a0 (patch) | |
tree | c2a98d78d1d82c46390af0717d2249acbd0520bd /androidApp/src/main/res/layout | |
parent | dc7e37b108bd4f63fb67b6d969518d5fbab41a6e (diff) | |
download | etbsa-trackermap-mobile-a43ed464b9dc0f7700e87e70bb60c588628d89a0.tar.gz etbsa-trackermap-mobile-a43ed464b9dc0f7700e87e70bb60c588628d89a0.tar.bz2 etbsa-trackermap-mobile-a43ed464b9dc0f7700e87e70bb60c588628d89a0.zip |
Implemented formatSpeed, redesigned UnitInformationFragment, added button to open device location in map, minor UI tweaks and added translations.
Diffstat (limited to 'androidApp/src/main/res/layout')
-rw-r--r-- | androidApp/src/main/res/layout/unit_details_information.xml | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/androidApp/src/main/res/layout/unit_details_information.xml b/androidApp/src/main/res/layout/unit_details_information.xml index f4b6fae..24f792c 100644 --- a/androidApp/src/main/res/layout/unit_details_information.xml +++ b/androidApp/src/main/res/layout/unit_details_information.xml @@ -17,6 +17,7 @@ app:contentPadding="@dimen/card_padding"> <LinearLayout + android:id="@+id/detailsLayout" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> @@ -27,27 +28,8 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:textColor="@color/colorPrimaryDark" + android:layout_marginBottom="@dimen/padding" tools:text="1AAUTO" /> - - <TableLayout - android:id="@+id/informationTable" - android:layout_width="match_parent" - android:layout_height="wrap_content" - 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> </com.google.android.material.card.MaterialCardView> |