aboutsummaryrefslogtreecommitdiff
path: root/androidApp/src/main/res/layout/unit_details_information.xml
diff options
context:
space:
mode:
Diffstat (limited to 'androidApp/src/main/res/layout/unit_details_information.xml')
-rw-r--r--androidApp/src/main/res/layout/unit_details_information.xml65
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 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>