2018-10-29 22:14:31 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<org.thoughtcrime.securesms.components.ConversationTypingView
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-05-19 04:35:43 +00:00
|
|
|
android:paddingStart="12dp"
|
2019-03-20 22:52:14 +00:00
|
|
|
android:paddingEnd="8dp"
|
2020-01-15 05:13:28 +00:00
|
|
|
android:paddingBottom="@dimen/small_spacing"
|
2018-10-29 22:14:31 +00:00
|
|
|
android:gravity="center_vertical">
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.AvatarImageView
|
|
|
|
android:id="@+id/typing_avatar"
|
|
|
|
android:foreground="@drawable/contact_photo_background"
|
|
|
|
android:layout_width="@dimen/conversation_item_avatar_size"
|
|
|
|
android:layout_height="@dimen/conversation_item_avatar_size"
|
|
|
|
android:cropToPadding="true"
|
|
|
|
android:contentDescription="@string/conversation_item_received__contact_photo_description" />
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/typing_bubble"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="12dp"
|
|
|
|
android:background="@drawable/message_bubble_background">
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.TypingIndicatorView
|
|
|
|
android:id="@+id/typing_indicator"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
</org.thoughtcrime.securesms.components.ConversationTypingView>
|