35 lines
1.1 KiB
XML
35 lines
1.1 KiB
XML
|
<?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"
|
||
|
android:textSize="16dp"/>
|
||
|
|
||
|
<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"
|
||
|
tools:text="23" />
|
||
|
|
||
|
</LinearLayout>
|