2020-01-31 15:10:59 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-02-04 00:42:41 -05:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-01-31 15:10:59 -05:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-02-04 18:30:18 -05:00
|
|
|
android:layout_marginStart="1dp"
|
|
|
|
android:layout_marginEnd="1dp"
|
2020-07-31 16:49:52 -03:00
|
|
|
android:minWidth="32dp"
|
2020-01-31 15:10:59 -05:00
|
|
|
android:paddingStart="7dp"
|
|
|
|
android:paddingEnd="7dp"
|
2020-02-05 10:40:08 -05:00
|
|
|
android:paddingTop="5dp"
|
|
|
|
android:paddingBottom="5dp"
|
2020-01-31 15:10:59 -05:00
|
|
|
android:gravity="center">
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.emoji.EmojiTextView
|
|
|
|
android:id="@+id/reactions_pill_emoji"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-07-31 16:49:52 -03:00
|
|
|
android:textSize="14dp"
|
|
|
|
tools:text="\u2764\ufe0f"
|
2020-02-05 10:40:08 -05:00
|
|
|
android:includeFontPadding="false"
|
2020-07-31 16:49:52 -03:00
|
|
|
app:autoSizeTextType="uniform"
|
2020-02-04 00:42:41 -05:00
|
|
|
app:emoji_forceCustom="true"
|
2020-02-02 00:15:59 -05:00
|
|
|
tools:ignore="SpUsage" />
|
2020-01-31 15:10:59 -05:00
|
|
|
|
|
|
|
<Space
|
|
|
|
android:id="@+id/reactions_pill_spacer"
|
2020-07-31 16:49:52 -03:00
|
|
|
android:layout_width="4dp"
|
2020-01-31 15:10:59 -05:00
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/reactions_pill_count"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-07-31 16:49:52 -03:00
|
|
|
android:textSize="12dp"
|
2020-01-31 15:10:59 -05:00
|
|
|
android:fontFamily="sans-serif-medium"
|
2020-11-10 10:20:54 -05:00
|
|
|
android:textColor="@color/reactions_pill_text_color"
|
2020-02-02 00:15:59 -05:00
|
|
|
tools:text="23"
|
|
|
|
tools:ignore="SpUsage" />
|
2020-01-31 15:10:59 -05:00
|
|
|
|
|
|
|
</LinearLayout>
|