2018-06-26 10:27:44 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<merge
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-08-09 13:29:04 -03:00
|
|
|
tools:viewBindingIgnore="true"
|
2018-11-08 23:33:37 -08:00
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
2018-06-26 10:27:44 -07:00
|
|
|
|
2023-02-10 13:22:46 -04:00
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/thumbnail_view_stub"
|
2018-07-12 16:03:32 -07:00
|
|
|
android:layout_width="@dimen/media_bubble_default_dimens"
|
|
|
|
android:layout_height="@dimen/media_bubble_default_dimens"
|
2023-02-10 13:22:46 -04:00
|
|
|
android:layout="@layout/conversation_item_thumbnail_thumbnail_view_stub" />
|
2018-06-26 10:27:44 -07:00
|
|
|
|
2023-02-10 13:22:46 -04:00
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/album_view_stub"
|
2018-11-08 23:33:37 -08:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2023-02-10 13:22:46 -04:00
|
|
|
android:layout="@layout/conversation_item_thumbnail_album_thumbnail_view_stub" />
|
2018-11-08 23:33:37 -08:00
|
|
|
|
2018-07-12 16:03:32 -07:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/conversation_thumbnail_shade"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_gravity="bottom"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:src="@drawable/image_shade" />
|
2018-06-26 10:27:44 -07:00
|
|
|
|
2023-02-10 13:22:46 -04:00
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/footer_view_stub"
|
2018-07-12 16:03:32 -07:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom"
|
2019-03-20 15:52:14 -07:00
|
|
|
android:layout_marginStart="@dimen/message_bubble_horizontal_padding"
|
|
|
|
android:layout_marginEnd="@dimen/message_bubble_horizontal_padding"
|
2018-07-12 16:03:32 -07:00
|
|
|
android:layout_marginBottom="@dimen/message_bubble_bottom_padding"
|
2023-02-10 13:22:46 -04:00
|
|
|
android:layout="@layout/conversation_item_thumbnail_footer_view_stub" />
|
2018-06-26 10:27:44 -07:00
|
|
|
|
|
|
|
</merge>
|