2012-07-20 02:23:49 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-02-01 03:28:40 +00:00
|
|
|
<org.thoughtcrime.securesms.conversation.ConversationItem
|
2018-06-26 17:27:44 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:id="@+id/conversation_item"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:background="@drawable/conversation_item_background"
|
|
|
|
android:focusable="true"
|
|
|
|
android:nextFocusLeft="@+id/container"
|
|
|
|
android:nextFocusRight="@+id/embedded_text_editor"
|
|
|
|
android:clipToPadding="false"
|
|
|
|
android:clipChildren="false">
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/container"
|
|
|
|
android:layout_width="match_parent"
|
2015-10-21 22:32:29 +00:00
|
|
|
android:layout_height="wrap_content"
|
2020-01-13 04:29:06 +00:00
|
|
|
android:paddingStart="@dimen/large_spacing"
|
2018-06-26 17:27:44 +00:00
|
|
|
android:clipToPadding="false"
|
|
|
|
android:clipChildren="false">
|
2014-02-15 12:21:56 +00:00
|
|
|
|
2019-09-12 06:42:52 +00:00
|
|
|
<RelativeLayout
|
2018-07-25 05:16:48 +00:00
|
|
|
android:id="@+id/contact_photo_container"
|
2020-01-15 01:20:10 +00:00
|
|
|
android:layout_width="36dp"
|
|
|
|
android:layout_height="42dp"
|
2020-01-13 04:29:06 +00:00
|
|
|
android:layout_alignParentStart="true">
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.loki.redesign.views.ProfilePictureView
|
|
|
|
android:id="@+id/profilePictureView"
|
|
|
|
android:layout_marginTop="2dp"
|
|
|
|
android:layout_width="@dimen/small_profile_picture_size"
|
|
|
|
android:layout_height="@dimen/small_profile_picture_size" />
|
2018-07-25 05:16:48 +00:00
|
|
|
|
2019-09-12 06:42:52 +00:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/moderator_icon_image_view"
|
2020-01-15 01:20:10 +00:00
|
|
|
android:layout_width="20dp"
|
|
|
|
android:layout_height="20dp"
|
2020-02-12 22:28:00 +00:00
|
|
|
android:src="@drawable/ic_crown"
|
2019-09-12 06:42:52 +00:00
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentBottom="true" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2018-07-18 20:53:50 +00:00
|
|
|
<LinearLayout
|
2019-06-27 06:03:05 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-06-26 17:27:44 +00:00
|
|
|
android:layout_height="wrap_content"
|
2018-07-18 20:53:50 +00:00
|
|
|
android:orientation="vertical"
|
2019-06-27 06:03:05 +00:00
|
|
|
android:layout_toStartOf="@+id/indicators_parent"
|
|
|
|
android:layout_alignWithParentIfMissing="true"
|
2018-06-26 17:27:44 +00:00
|
|
|
android:clipToPadding="false"
|
2019-06-27 06:03:05 +00:00
|
|
|
android:clipChildren="false">
|
2018-06-26 17:27:44 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
2019-06-27 06:03:05 +00:00
|
|
|
android:id="@+id/body_bubble"
|
2018-06-26 17:27:44 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-01-15 05:13:28 +00:00
|
|
|
android:layout_marginEnd="@dimen/massive_spacing"
|
2020-01-13 04:29:06 +00:00
|
|
|
android:layout_marginStart="@dimen/large_spacing"
|
2020-01-15 01:20:10 +00:00
|
|
|
android:paddingTop="@dimen/medium_spacing"
|
|
|
|
android:paddingBottom="@dimen/medium_spacing"
|
2019-06-27 06:03:05 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:clipToPadding="false"
|
|
|
|
android:clipChildren="false"
|
|
|
|
android:background="@color/white"
|
|
|
|
tools:backgroundTint="@color/conversation_blue">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/group_sender_holder"
|
2018-07-27 20:31:39 +00:00
|
|
|
android:layout_width="wrap_content"
|
2018-06-26 17:27:44 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-06-27 06:03:05 +00:00
|
|
|
android:layout_marginStart="@dimen/message_bubble_horizontal_padding"
|
2020-01-15 01:20:10 +00:00
|
|
|
android:layout_marginBottom="@dimen/medium_spacing"
|
2019-06-27 06:03:05 +00:00
|
|
|
android:layout_marginEnd="@dimen/message_bubble_horizontal_padding"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/group_message_sender"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="4sp"
|
|
|
|
style="@style/Signal.Text.Preview"
|
|
|
|
android:fontFamily="sans-serif-medium"
|
|
|
|
android:textColor="?conversation_item_received_text_primary_color"
|
2020-01-15 01:20:10 +00:00
|
|
|
android:textSize="@dimen/small_font_size"
|
|
|
|
android:alpha="0.6"
|
2019-06-27 06:03:05 +00:00
|
|
|
android:maxLines="1"
|
|
|
|
android:ellipsize="end"
|
|
|
|
tools:visibility="visible"
|
|
|
|
tools:text="+14152222222"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/group_message_sender_profile"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingStart="4sp"
|
|
|
|
android:paddingEnd="4sp"
|
|
|
|
style="@style/Signal.Text.Preview"
|
|
|
|
android:fontFamily="sans-serif-regular"
|
|
|
|
android:textColor="?conversation_item_received_text_primary_color"
|
|
|
|
android:textStyle="italic"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:ellipsize="end"
|
|
|
|
tools:text="~Clement Duval"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.QuoteView
|
|
|
|
android:id="@+id/quote_view"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-01-15 01:20:10 +00:00
|
|
|
android:layout_marginStart="@dimen/large_spacing"
|
|
|
|
android:layout_marginBottom="@dimen/medium_spacing"
|
|
|
|
android:layout_marginEnd="@dimen/large_spacing"
|
2019-06-27 06:03:05 +00:00
|
|
|
android:visibility="gone"
|
|
|
|
app:message_type="incoming"
|
2020-01-15 01:20:10 +00:00
|
|
|
app:quote_colorPrimary="@color/text"
|
|
|
|
app:quote_colorSecondary="@color/text"
|
2019-06-27 06:03:05 +00:00
|
|
|
tools:visibility="visible"/>
|
|
|
|
|
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/shared_contact_view_stub"
|
|
|
|
android:layout="@layout/conversation_item_received_shared_contact"
|
|
|
|
android:layout_width="@dimen/media_bubble_default_dimens"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/message_bubble_top_padding"
|
|
|
|
android:visibility="gone"/>
|
2018-06-26 17:27:44 +00:00
|
|
|
|
2019-06-27 06:03:05 +00:00
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/image_view_stub"
|
2018-07-27 20:31:39 +00:00
|
|
|
android:layout_width="wrap_content"
|
2018-06-26 17:27:44 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-06-27 06:03:05 +00:00
|
|
|
android:layout="@layout/conversation_item_received_thumbnail" />
|
2017-08-16 02:23:42 +00:00
|
|
|
|
2019-08-07 06:48:54 +00:00
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/sticker_view_stub"
|
|
|
|
android:layout_width="@dimen/media_bubble_sticker_dimens"
|
|
|
|
android:layout_height="@dimen/media_bubble_sticker_dimens"
|
|
|
|
android:layout="@layout/conversation_item_received_sticker" />
|
2018-04-27 00:03:54 +00:00
|
|
|
|
2019-06-27 06:03:05 +00:00
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/link_preview_stub"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout="@layout/conversation_item_received_link_preview" />
|
2017-08-16 02:23:42 +00:00
|
|
|
|
2019-06-27 06:03:05 +00:00
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/audio_view_stub"
|
|
|
|
android:layout="@layout/conversation_item_received_audio"
|
|
|
|
android:layout_width="210dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="@dimen/message_bubble_horizontal_padding"
|
2020-01-15 01:20:10 +00:00
|
|
|
android:layout_marginBottom="6dp"
|
2019-06-27 06:03:05 +00:00
|
|
|
android:layout_marginEnd="@dimen/message_bubble_horizontal_padding" />
|
|
|
|
|
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/document_view_stub"
|
|
|
|
android:layout="@layout/conversation_item_received_document"
|
|
|
|
android:layout_width="210dp"
|
|
|
|
android:layout_height="wrap_content"
|
2020-01-15 05:13:28 +00:00
|
|
|
android:layout_marginBottom="4dp"
|
2019-06-27 06:03:05 +00:00
|
|
|
android:layout_marginStart="@dimen/message_bubble_horizontal_padding"
|
|
|
|
android:layout_marginEnd="@dimen/message_bubble_horizontal_padding" />
|
2018-04-27 00:03:54 +00:00
|
|
|
|
2019-06-27 06:03:05 +00:00
|
|
|
<org.thoughtcrime.securesms.components.emoji.EmojiTextView
|
|
|
|
android:id="@+id/conversation_item_body"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="@dimen/message_bubble_horizontal_padding"
|
|
|
|
android:layout_marginEnd="@dimen/message_bubble_horizontal_padding"
|
|
|
|
style="@style/Signal.Text.Body"
|
|
|
|
android:textColor="?conversation_item_received_text_primary_color"
|
|
|
|
android:textColorLink="?conversation_item_received_text_primary_color"
|
|
|
|
android:ellipsize="end"
|
|
|
|
app:scaleEmojis="true"
|
|
|
|
app:emoji_maxLength="1000"
|
|
|
|
tools:text="Mango pickle lorem ipsum"/>
|
2015-10-21 22:32:29 +00:00
|
|
|
|
2019-06-27 06:03:05 +00:00
|
|
|
<org.thoughtcrime.securesms.components.ConversationItemFooter
|
|
|
|
android:id="@+id/conversation_item_footer"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-01-15 01:20:10 +00:00
|
|
|
android:layout_marginTop="4dp"
|
2019-06-27 06:03:05 +00:00
|
|
|
android:layout_marginStart="@dimen/message_bubble_horizontal_padding"
|
|
|
|
android:layout_marginEnd="@dimen/message_bubble_horizontal_padding"
|
|
|
|
android:clipChildren="false"
|
|
|
|
android:clipToPadding="false"
|
2020-01-13 04:29:06 +00:00
|
|
|
android:alpha="0.6"
|
2019-06-27 06:03:05 +00:00
|
|
|
app:footer_text_color="?conversation_item_received_text_secondary_color"
|
|
|
|
app:footer_icon_color="?conversation_item_received_text_secondary_color"/>
|
2019-01-15 08:41:05 +00:00
|
|
|
|
2019-08-07 06:48:54 +00:00
|
|
|
<org.thoughtcrime.securesms.components.ConversationItemFooter
|
|
|
|
android:id="@+id/conversation_item_sticker_footer"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="6dp"
|
|
|
|
android:layout_marginStart="@dimen/message_bubble_horizontal_padding"
|
|
|
|
android:layout_marginEnd="@dimen/message_bubble_horizontal_padding"
|
|
|
|
android:clipChildren="false"
|
|
|
|
android:clipToPadding="false"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:footer_text_color="?conversation_sticker_footer_text_color"
|
|
|
|
app:footer_icon_color="?conversation_sticker_footer_icon_color"/>
|
2017-03-28 19:05:30 +00:00
|
|
|
|
2019-06-27 06:03:05 +00:00
|
|
|
</LinearLayout>
|
2017-03-28 19:05:30 +00:00
|
|
|
|
2020-01-10 00:35:16 +00:00
|
|
|
<org.thoughtcrime.securesms.loki.redesign.views.FriendRequestView
|
2019-06-27 06:03:05 +00:00
|
|
|
android:id="@+id/friend_request_view"
|
|
|
|
android:layout_width="match_parent"
|
2019-07-24 05:05:39 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="gone" />
|
2018-06-26 17:27:44 +00:00
|
|
|
|
2018-07-18 20:53:50 +00:00
|
|
|
</LinearLayout>
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2015-11-24 15:06:41 +00:00
|
|
|
<org.thoughtcrime.securesms.components.AlertView
|
2018-06-26 17:27:44 +00:00
|
|
|
android:id="@+id/indicators_parent"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-03-20 22:52:14 +00:00
|
|
|
android:layout_alignParentEnd="true"
|
2018-06-26 17:27:44 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:gravity="center_vertical"/>
|
2015-06-29 15:49:32 +00:00
|
|
|
|
2012-07-20 02:23:49 +00:00
|
|
|
</RelativeLayout>
|
2019-02-01 03:28:40 +00:00
|
|
|
</org.thoughtcrime.securesms.conversation.ConversationItem>
|