summaryrefslogtreecommitdiff
path: root/Source/Android/app/src
diff options
context:
space:
mode:
authorCharles Lombardo <clombardo169@gmail.com>2023-03-11 18:48:58 -0500
committerCharles Lombardo <clombardo169@gmail.com>2023-03-13 15:27:09 -0400
commit4f610bb3541163b2d5e377a7a7968be468de723f (patch)
tree7765adced434db6a2ffd8dc623557ed63f219d18 /Source/Android/app/src
parent137b9d1da1ac6e0cf462ae7a89f6e1ac672a196b (diff)
Android: Make header padding appear even
Diffstat (limited to 'Source/Android/app/src')
-rw-r--r--Source/Android/app/src/main/res/layout/list_item_header.xml8
1 files changed, 5 insertions, 3 deletions
diff --git a/Source/Android/app/src/main/res/layout/list_item_header.xml b/Source/Android/app/src/main/res/layout/list_item_header.xml
index fac579074f..e13d297903 100644
--- a/Source/Android/app/src/main/res/layout/list_item_header.xml
+++ b/Source/Android/app/src/main/res/layout/list_item_header.xml
@@ -8,12 +8,14 @@
<TextView
android:id="@+id/text_header_name"
- android:layout_width="wrap_content"
- android:layout_height="46dp"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
- android:layout_marginStart="@dimen/spacing_large"
+ android:layout_marginHorizontal="@dimen/spacing_large"
+ android:layout_marginTop="24dp"
+ android:layout_marginBottom="8dp"
android:gravity="start|center_vertical"
android:textColor="?attr/colorPrimary"
android:textStyle="bold"