mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
40 lines
1.7 KiB
XML
40 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<merge
|
|
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"
|
|
tools:parentTag="org.thoughtcrime.securesms.components.BorderlessImageView">
|
|
|
|
<View
|
|
android:id="@+id/sticker_missing_shade"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/sticker_missing_background"
|
|
android:visibility="gone"
|
|
tools:visibility="visible"/>
|
|
|
|
<org.thoughtcrime.securesms.components.ThumbnailView
|
|
android:id="@+id/sticker_thumbnail"
|
|
android:layout_width="@dimen/media_bubble_sticker_dimens"
|
|
android:layout_height="@dimen/media_bubble_sticker_dimens"
|
|
app:thumbnail_radius="0dp"
|
|
app:minWidth="@dimen/media_bubble_min_width"
|
|
app:maxWidth="@dimen/media_bubble_max_width"
|
|
app:minHeight="@dimen/media_bubble_min_height"
|
|
app:maxHeight="@dimen/media_bubble_max_height" />
|
|
|
|
<org.thoughtcrime.securesms.components.ConversationItemFooter
|
|
android:id="@+id/sticker_footer"
|
|
android:background="@drawable/conversation_item_update_background"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom|end"
|
|
android:gravity="bottom|end"
|
|
android:paddingTop="@dimen/transparent_footer_padding"
|
|
android:paddingBottom="@dimen/transparent_footer_padding"
|
|
android:paddingLeft="@dimen/transparent_footer_padding"
|
|
android:paddingRight="@dimen/transparent_footer_padding"
|
|
app:footer_text_color="@color/core_white"/>
|
|
|
|
</merge>
|