From 67b4039d575cbc3a65cdfd9dde1cdff0650f100b Mon Sep 17 00:00:00 2001 From: "Robert D. Rioja (miapuffia)" Date: Wed, 26 Mar 2025 10:52:21 -0400 Subject: [PATCH] Adjusted spacing --- .../kotlin/org/fossify/phone/adapters/RecentCallsAdapter.kt | 2 +- app/src/main/res/layout/item_recent_call.xml | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/app/src/main/kotlin/org/fossify/phone/adapters/RecentCallsAdapter.kt b/app/src/main/kotlin/org/fossify/phone/adapters/RecentCallsAdapter.kt index 9634ab25..27665eab 100644 --- a/app/src/main/kotlin/org/fossify/phone/adapters/RecentCallsAdapter.kt +++ b/app/src/main/kotlin/org/fossify/phone/adapters/RecentCallsAdapter.kt @@ -490,7 +490,7 @@ class RecentCallsAdapter( } itemRecentsDateTimeDurationSeparator.apply { - text = " • " + text = "•" setTextSize(TypedValue.COMPLEX_UNIT_PX, currentFontSize * 0.8f) setTextColor(textColor) if (shouldShowDuration) { diff --git a/app/src/main/res/layout/item_recent_call.xml b/app/src/main/res/layout/item_recent_call.xml index 1ce619f1..66ed6420 100644 --- a/app/src/main/res/layout/item_recent_call.xml +++ b/app/src/main/res/layout/item_recent_call.xml @@ -102,19 +102,21 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@+id/item_recents_name" + android:layout_marginStart="@dimen/small_margin" android:alpha="0.6" android:gravity="end" android:textSize="@dimen/normal_text_size" app:layout_constraintBottom_toBottomOf="@id/item_recents_date_time" app:layout_constraintStart_toEndOf="@+id/item_recents_date_time" app:layout_constraintTop_toTopOf="@id/item_recents_date_time" - tools:text=" • " /> + tools:text="•" />