mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
40 lines
1.2 KiB
XML
40 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
tools:viewBindingIgnore="true"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:orientation="horizontal"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="26dp"
|
|
android:layout_marginStart="1dp"
|
|
android:layout_marginEnd="1dp"
|
|
android:paddingStart="7dp"
|
|
android:paddingEnd="7dp"
|
|
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:maxLines="1"
|
|
android:textSize="16dp" />
|
|
|
|
<Space
|
|
android:id="@+id/reactions_pill_spacer"
|
|
android:layout_width="4dp"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<TextView
|
|
android:id="@+id/reactions_pill_count"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="5dp"
|
|
android:paddingBottom="5dp"
|
|
android:textSize="12dp"
|
|
android:fontFamily="sans-serif-medium"
|
|
android:textColor="@color/reaction_pill_text_color"
|
|
tools:text="23"
|
|
tools:ignore="SpUsage" />
|
|
|
|
</LinearLayout>
|