2015-09-16 17:31:24 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-10-22 10:59:23 -04:00
|
|
|
<org.thoughtcrime.securesms.conversation.ConversationUpdateItem
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-06-26 10:27:44 -07:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2019-10-07 15:43:36 -03:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-06-26 10:27:44 -07:00
|
|
|
android:id="@+id/conversation_update_item"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@drawable/conversation_item_background"
|
|
|
|
android:focusable="true"
|
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingBottom="6dp"
|
2019-03-20 15:52:14 -07:00
|
|
|
android:paddingStart="28dp"
|
|
|
|
android:paddingEnd="28dp"
|
2018-06-26 10:27:44 -07:00
|
|
|
android:paddingTop="8dp">
|
|
|
|
|
2020-10-22 10:59:23 -04:00
|
|
|
<org.thoughtcrime.securesms.components.emoji.EmojiTextView
|
|
|
|
android:id="@+id/conversation_update_body"
|
|
|
|
style="@style/Signal.Text.Preview"
|
2015-09-21 10:54:23 -07:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-06-26 10:27:44 -07:00
|
|
|
android:gravity="center"
|
2020-10-22 10:59:23 -04:00
|
|
|
android:textColor="?attr/conversation_item_update_text_color"
|
|
|
|
tools:text="Gwen Stacy set the disappearing message timer to 1 hour" />
|
2018-06-26 10:27:44 -07:00
|
|
|
|
2019-01-31 19:28:40 -08:00
|
|
|
</org.thoughtcrime.securesms.conversation.ConversationUpdateItem>
|