From 43e214b206bbe97bcd9be2e0039a67ec40c2469a Mon Sep 17 00:00:00 2001 From: Stephen Paul Weber Date: Wed, 14 Aug 2024 11:21:03 -0500 Subject: [PATCH] Fix top spacing in chat bubbles marginTop on message body being ignore for some reason... --- src/main/res/layout/item_message_content.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/res/layout/item_message_content.xml b/src/main/res/layout/item_message_content.xml index 7a9dfa00cc95838ee7bb2a320771feb3bbe01a6b..492e1618d88f3af7dbef69ecd3931759b32977f6 100644 --- a/src/main/res/layout/item_message_content.xml +++ b/src/main/res/layout/item_message_content.xml @@ -35,7 +35,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginHorizontal="10dp" - android:layout_marginBottom="4sp" + android:layout_marginBottom="2dp" android:longClickable="false" android:visibility="gone" android:textAppearance="?textAppearanceBodyMedium" /> @@ -62,7 +62,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginHorizontal="10dp" - android:layout_marginTop="4dp" + android:paddingTop="4dp" android:autoLink="web" android:longClickable="false" android:textAppearance="?textAppearanceBodyMedium" />