aboutsummaryrefslogtreecommitdiff
path: root/androidApp/src/main/res
diff options
context:
space:
mode:
Diffstat (limited to 'androidApp/src/main/res')
-rw-r--r--androidApp/src/main/res/layout/unit_item.xml11
-rw-r--r--androidApp/src/main/res/layout/unit_map_fragment.xml8
-rw-r--r--androidApp/src/main/res/values/dimen.xml3
3 files changed, 12 insertions, 10 deletions
diff --git a/androidApp/src/main/res/layout/unit_item.xml b/androidApp/src/main/res/layout/unit_item.xml
index 261a7a6..d9432ba 100644
--- a/androidApp/src/main/res/layout/unit_item.xml
+++ b/androidApp/src/main/res/layout/unit_item.xml
@@ -17,8 +17,7 @@
android:layout_gravity="end"
android:paddingTop="@dimen/card_padding"
android:paddingBottom="@dimen/card_padding"
- android:paddingStart="@dimen/card_padding"
- android:paddingEnd="@dimen/card_padding"
+ android:paddingHorizontal="@dimen/card_padding"
android:gravity="center"
android:orientation="horizontal"
android:visibility="visible">
@@ -31,8 +30,8 @@
app:cardBackgroundColor="@color/colorAccent"
android:text="@string/unit_details"
android:textColor="@color/colorAccent"
- android:textSize="12sp"
- style="?borderlessButtonStyle" />
+ android:textSize="@dimen/card_action_text"
+ style="?borderlessButtonStyle"/>
<com.google.android.material.button.MaterialButton
android:id="@+id/reportsButton"
@@ -42,7 +41,7 @@
android:layout_weight="1"
android:text="@string/unit_reports"
android:textColor="@color/colorAccent"
- android:textSize="12sp"
+ android:textSize="@dimen/card_action_text"
style="?borderlessButtonStyle" />
<com.google.android.material.button.MaterialButton
@@ -52,7 +51,7 @@
android:layout_weight="1"
android:text="@string/unit_commands"
android:textColor="@color/colorAccent"
- android:textSize="12sp"
+ android:textSize="@dimen/card_action_text"
style="?borderlessButtonStyle" />
</LinearLayout>
diff --git a/androidApp/src/main/res/layout/unit_map_fragment.xml b/androidApp/src/main/res/layout/unit_map_fragment.xml
index 9149fc6..213d33d 100644
--- a/androidApp/src/main/res/layout/unit_map_fragment.xml
+++ b/androidApp/src/main/res/layout/unit_map_fragment.xml
@@ -155,7 +155,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/gridLayout"
- android:layout_marginTop="@dimen/padding"
+ android:layout_marginVertical="@dimen/padding"
android:gravity="center"
android:orientation="horizontal"
android:visibility="visible">
@@ -167,7 +167,7 @@
android:layout_weight="1"
android:text="@string/unit_details"
android:textColor="@color/colorAccent"
- android:textSize="12sp"
+ android:textSize="@dimen/card_action_text"
style="?borderlessButtonStyle" />
<com.google.android.material.button.MaterialButton
@@ -178,7 +178,7 @@
android:layout_weight="1"
android:text="@string/unit_reports"
android:textColor="@color/colorAccent"
- android:textSize="12sp"
+ android:textSize="@dimen/card_action_text"
style="?borderlessButtonStyle" />
<com.google.android.material.button.MaterialButton
@@ -188,7 +188,7 @@
android:layout_weight="1"
android:text="@string/unit_commands"
android:textColor="@color/colorAccent"
- android:textSize="12sp"
+ android:textSize="@dimen/card_action_text"
style="?borderlessButtonStyle" />
</LinearLayout>
diff --git a/androidApp/src/main/res/values/dimen.xml b/androidApp/src/main/res/values/dimen.xml
index 283f476..9507352 100644
--- a/androidApp/src/main/res/values/dimen.xml
+++ b/androidApp/src/main/res/values/dimen.xml
@@ -10,6 +10,9 @@
<dimen name="card_padding">16dp</dimen>
<dimen name="card_margin">16dp</dimen>
+ <!-- Card Buttons -->
+ <dimen name="card_action_text">11sp</dimen>
+
<!-- Search -->
<dimen name="search_horizontal_margin">8dp</dimen>
<dimen name="search_vertical_margin">4dp</dimen>