session-android/app/src/main/res/layout/view_conversation_typing_container.xml

27 lines
981 B
XML
Raw Normal View History

2021-06-24 03:22:32 +02:00
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingStart="12dp"
android:paddingEnd="8dp"
android:paddingBottom="@dimen/small_spacing"
android:gravity="center_vertical">
<FrameLayout
android:id="@+id/typingIndicatorBubble"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="7dp"
android:background="@drawable/message_bubble_background_received_alone"
android:backgroundTint="?message_received_background_color">
2021-06-24 05:38:59 +02:00
<org.thoughtcrime.securesms.conversation.v2.components.TypingIndicatorView
2021-06-24 03:22:32 +02:00
android:id="@+id/typingIndicator"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</FrameLayout>
</FrameLayout>