mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-17 23:43:34 +01:00
Fix sender name clipping in text-only incoming messages.
Resolves signalapp/Signal-Android#14646
This commit is contained in:
committed by
Alex Hart
parent
abe0b2ebca
commit
a0a962a94f
@@ -96,7 +96,6 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="@dimen/message_bubble_top_padding"
|
android:layout_marginTop="@dimen/message_bubble_top_padding"
|
||||||
android:layout_marginBottom="@dimen/message_bubble_top_image_margin"
|
android:layout_marginBottom="@dimen/message_bubble_top_image_margin"
|
||||||
android:orientation="horizontal"
|
|
||||||
android:visibility="gone"
|
android:visibility="gone"
|
||||||
tools:visibility="visible">
|
tools:visibility="visible">
|
||||||
|
|
||||||
|
|||||||
@@ -103,16 +103,24 @@
|
|||||||
app:layout_goneMarginStart="16dp"
|
app:layout_goneMarginStart="16dp"
|
||||||
tools:background="@color/black">
|
tools:background="@color/black">
|
||||||
|
|
||||||
<org.thoughtcrime.securesms.conversation.v2.items.SenderNameWithLabelView
|
<FrameLayout
|
||||||
android:id="@+id/group_sender_name_with_label"
|
android:id="@+id/group_sender_holder"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content">
|
||||||
android:layout_marginTop="@dimen/message_bubble_top_padding"
|
|
||||||
android:layout_marginBottom="1dp"
|
<org.thoughtcrime.securesms.conversation.v2.items.SenderNameWithLabelView
|
||||||
android:paddingStart="@dimen/message_bubble_horizontal_padding"
|
android:id="@+id/group_sender_name_with_label"
|
||||||
android:paddingEnd="@dimen/message_bubble_horizontal_padding"
|
android:layout_width="wrap_content"
|
||||||
android:visibility="gone"
|
android:layout_height="wrap_content"
|
||||||
tools:visibility="visible" />
|
android:layout_marginTop="@dimen/message_bubble_top_padding"
|
||||||
|
android:layout_marginBottom="1dp"
|
||||||
|
android:paddingStart="@dimen/message_bubble_horizontal_padding"
|
||||||
|
android:paddingEnd="@dimen/message_bubble_horizontal_padding"
|
||||||
|
android:visibility="gone"
|
||||||
|
tools:visibility="visible" />
|
||||||
|
|
||||||
|
</FrameLayout>
|
||||||
|
|
||||||
|
|
||||||
<org.thoughtcrime.securesms.components.emoji.EmojiTextView
|
<org.thoughtcrime.securesms.components.emoji.EmojiTextView
|
||||||
android:id="@+id/conversation_item_body"
|
android:id="@+id/conversation_item_body"
|
||||||
|
|||||||
Reference in New Issue
Block a user