aboutsummaryrefslogtreecommitdiff
path: root/androidApp/src/main/res/layout/unit_item.xml
diff options
context:
space:
mode:
authorIván Ávalos <avalos@disroot.org>2022-01-15 20:08:37 -0600
committerIván Ávalos <avalos@disroot.org>2022-01-15 20:08:37 -0600
commit6aa78c8ddbcdeaace0f4596e7c717dafef036f03 (patch)
tree2bfcaff8312058e4c16cc238ded881f59727983e /androidApp/src/main/res/layout/unit_item.xml
parentd16483ddb5f9989315db95fe2d70747c04ebc657 (diff)
downloadetbsa-trackermap-mobile-6aa78c8ddbcdeaace0f4596e7c717dafef036f03.tar.gz
etbsa-trackermap-mobile-6aa78c8ddbcdeaace0f4596e7c717dafef036f03.tar.bz2
etbsa-trackermap-mobile-6aa78c8ddbcdeaace0f4596e7c717dafef036f03.zip
Improved loading indicators, improved layout semantics, added translations and changed default view to MAP
Diffstat (limited to 'androidApp/src/main/res/layout/unit_item.xml')
-rw-r--r--androidApp/src/main/res/layout/unit_item.xml30
1 files changed, 24 insertions, 6 deletions
diff --git a/androidApp/src/main/res/layout/unit_item.xml b/androidApp/src/main/res/layout/unit_item.xml
index cccdd69..6946d1d 100644
--- a/androidApp/src/main/res/layout/unit_item.xml
+++ b/androidApp/src/main/res/layout/unit_item.xml
@@ -15,10 +15,12 @@
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="end"
- android:padding="@dimen/card_padding"
+ android:padding="@dimen/padding"
+ android:paddingStart="0dp"
android:gravity="center"
android:orientation="horizontal"
- android:visibility="visible">
+ android:visibility="visible"
+ tools:ignore="RtlSymmetry">
<com.google.android.material.button.MaterialButton
android:id="@+id/detailsButton"
@@ -27,8 +29,21 @@
android:layout_weight="1"
app:cardBackgroundColor="@color/colorAccent"
android:text="@string/unit_details"
+ android:textSize="@dimen/card_action_text"
android:textColor="@color/colorAccent"
+ android:minWidth="0dp"
+ style="?android:borderlessButtonStyle"/>
+
+ <com.google.android.material.button.MaterialButton
+ android:id="@+id/reportsButton"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:layout_weight="1"
+ app:cardBackgroundColor="@color/colorAccent"
+ android:text="@string/unit_reports"
android:textSize="@dimen/card_action_text"
+ android:textColor="@color/colorAccent"
+ android:minWidth="0dp"
style="?android:borderlessButtonStyle"/>
<com.google.android.material.button.MaterialButton
@@ -37,9 +52,10 @@
android:layout_height="match_parent"
android:layout_weight="1"
android:text="@string/unit_commands"
- android:textColor="@color/colorAccent"
android:textSize="@dimen/card_action_text"
- style="?android:borderlessButtonStyle" />
+ android:textColor="@color/colorAccent"
+ android:minWidth="0dp"
+ style="?android:borderlessButtonStyle"/>
</LinearLayout>
@@ -53,9 +69,11 @@
app:cardElevation="0dp"
app:cardUseCompatPadding="true"
app:contentPadding="@dimen/card_padding"
+ app:contentPaddingLeft="0dp"
app:cardBackgroundColor="@color/darkBackground"
android:clickable="true"
- android:focusable="true">
+ android:focusable="true"
+ tools:visibility="gone">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/mainContent"
@@ -67,7 +85,7 @@
android:id="@+id/unitIcon"
android:layout_width="40dp"
android:layout_height="40dp"
- android:layout_margin="@dimen/card_icon_margin"
+ android:layout_marginHorizontal="@dimen/card_icon_margin"
android:src="@drawable/map_default"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"