Signal-Android/app/src/main/res/layout/reactions_pill.xml

36 wiersze
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="26dp"
android:layout_marginStart="1dp"
android:layout_marginEnd="1dp"
android:paddingStart="7dp"
android:paddingEnd="7dp"
android:gravity="center">
<org.thoughtcrime.securesms.components.emoji.EmojiImageView
android:id="@+id/reactions_pill_emoji"
android:layout_width="17dp"
android:layout_height="17dp" />
<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/reactions_pill_text_color"
tools:text="23"
tools:ignore="SpUsage" />
</LinearLayout>