2019-04-17 10:21:30 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-08-09 13:29:04 -03:00
|
|
|
tools:viewBindingIgnore="true"
|
2020-01-03 00:41:03 -05:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2019-04-17 10:21:30 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-11-10 10:20:54 -05:00
|
|
|
android:background="@color/signal_transparent_60">
|
2019-04-17 10:21:30 -04:00
|
|
|
|
2020-01-03 00:41:03 -05:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:gravity="center">
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.emoji.EmojiTextView
|
|
|
|
android:id="@+id/sticker_popup_emoji"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="8dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textSize="22sp"
|
|
|
|
tools:text=":)"/>
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/sticker_popup_image"
|
|
|
|
android:layout_width="200dp"
|
|
|
|
android:layout_height="200dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
tools:src="@drawable/ic_contact_picture"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
2019-04-17 10:21:30 -04:00
|
|
|
|
|
|
|
</FrameLayout>
|