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

37 lines
1.2 KiB
XML
Raw Normal View History

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"
2022-08-09 13:29:04 -03:00
tools:viewBindingIgnore="true"
2020-01-31 15:10:59 -05:00
xmlns:tools="http://schemas.android.com/tools"
android:orientation="horizontal"
android:layout_width="wrap_content"
2021-07-23 17:40:43 -04:00
android:layout_height="26dp"
2020-02-04 18:30:18 -05:00
android:layout_marginStart="1dp"
android:layout_marginEnd="1dp"
2020-01-31 15:10:59 -05:00
android:paddingStart="7dp"
android:paddingEnd="7dp"
android:gravity="center">
2021-07-23 17:40:43 -04:00
<org.thoughtcrime.securesms.components.emoji.EmojiImageView
2020-01-31 15:10:59 -05:00
android:id="@+id/reactions_pill_emoji"
2021-07-23 17:40:43 -04:00
android:layout_width="17dp"
android:layout_height="17dp" />
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"
2021-07-23 17:40:43 -04:00
android:paddingTop="5dp"
android:paddingBottom="5dp"
2020-07-31 16:49:52 -03:00
android:textSize="12dp"
2020-01-31 15:10:59 -05:00
android:fontFamily="sans-serif-medium"
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>