diff options
Diffstat (limited to 'androidApp/src/main/res')
-rw-r--r-- | androidApp/src/main/res/layout/unit_details_information.xml | 65 | ||||
-rw-r--r-- | androidApp/src/main/res/values/dimen.xml | 2 | ||||
-rw-r--r-- | androidApp/src/main/res/values/strings.xml | 2 |
3 files changed, 22 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 dae2056..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="404 Av. Arboledas, Celaya, Gto." /> - - <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> diff --git a/androidApp/src/main/res/values/dimen.xml b/androidApp/src/main/res/values/dimen.xml index cd4d970..6ce7887 100644 --- a/androidApp/src/main/res/values/dimen.xml +++ b/androidApp/src/main/res/values/dimen.xml @@ -1,5 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <resources> + <dimen name="padding">8dp</dimen> + <!-- CardView --> <dimen name="card_border_radius">20dp</dimen> <dimen name="card_elevation">8dp</dimen> diff --git a/androidApp/src/main/res/values/strings.xml b/androidApp/src/main/res/values/strings.xml index f4d69fb..5692688 100644 --- a/androidApp/src/main/res/values/strings.xml +++ b/androidApp/src/main/res/values/strings.xml @@ -23,4 +23,6 @@ <string name="unit_reports">Reports</string> <string name="unit_commands">Commands</string> <string name="units_search">Type to search</string> + <string name="key">Key</string> + <string name="value">Value</string> </resources>
\ No newline at end of file |