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"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingStart="7dp"
|
|
|
|
android:paddingEnd="7dp"
|
|
|
|
android:paddingTop="5dp"
|
|
|
|
android:paddingBottom="5dp"
|
|
|
|
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-02-02 00:15:59 -05:00
|
|
|
android:textSize="16dp"
|
|
|
|
tools:ignore="SpUsage" />
|
2020-01-31 15:10:59 -05:00
|
|
|
|
|
|
|
<Space
|
|
|
|
android:id="@+id/reactions_pill_spacer"
|
|
|
|
android:layout_width="3dp"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/reactions_pill_count"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="1dp"
|
|
|
|
android:textSize="14dp"
|
|
|
|
android:fontFamily="sans-serif-medium"
|
|
|
|
android:textColor="?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>
|