mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 10:35:19 +00:00
55699e27bc
Send support is in here too. We'll enable it in a future release after enough people have updated.
42 lines
2.0 KiB
XML
42 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:background="@drawable/message_bubble_background_received_alone"
|
|
android:visibility="gone"
|
|
tools:visibility="visible">
|
|
|
|
<org.thoughtcrime.securesms.components.emoji.EmojiTextView
|
|
android:id="@+id/longmessage_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/message_bubble_top_padding"
|
|
android:layout_marginLeft="@dimen/message_bubble_horizontal_padding"
|
|
android:layout_marginRight="@dimen/message_bubble_horizontal_padding"
|
|
android:layout_marginBottom="@dimen/message_bubble_collapsed_footer_padding"
|
|
style="@style/Signal.Text.Body"
|
|
android:textColor="?conversation_item_received_text_primary_color"
|
|
android:textColorLink="?conversation_item_received_text_primary_color"
|
|
android:textIsSelectable="true"
|
|
app:scaleEmojis="true"
|
|
tools:text="With great power comes great responsibility."/>
|
|
|
|
<org.thoughtcrime.securesms.components.ConversationItemFooter
|
|
android:id="@+id/longmessage_footer"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="-4dp"
|
|
android:layout_marginLeft="@dimen/message_bubble_horizontal_padding"
|
|
android:layout_marginRight="@dimen/message_bubble_horizontal_padding"
|
|
android:layout_marginBottom="@dimen/message_bubble_bottom_padding"
|
|
android:clipChildren="false"
|
|
android:clipToPadding="false"
|
|
android:alpha="0.7"
|
|
app:footer_text_color="?attr/conversation_item_received_text_secondary_color"
|
|
app:footer_icon_color="?attr/conversation_item_received_text_secondary_color"/>
|
|
|
|
</LinearLayout> |