element-android/vector/src/main/res/layout/reaction_button.xml

42 lines
1.5 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2020-12-16 13:45:06 +03:00
<merge xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
2022-02-11 15:01:34 +03:00
android:layout_height="wrap_content"
2020-10-29 16:44:08 +03:00
android:background="@drawable/reaction_rounded_rect_shape"
android:clipChildren="false"
android:gravity="center"
tools:parentTag="android.widget.LinearLayout">
<!--<View-->
<!--android:id="@+id/reactionSelector"-->
<!--android:layout_width="match_parent"-->
<!--android:layout_height="match_parent"-->
<!--android:background="@drawable/rounded_rect_shape" />-->
<TextView
android:id="@+id/reactionText"
style="@style/Widget.Vector.TextView.Caption"
2019-07-09 11:13:56 +03:00
android:layout_width="wrap_content"
2022-02-10 19:51:49 +03:00
android:layout_height="wrap_content"
android:ellipsize="middle"
android:gravity="center"
android:maxEms="10"
android:singleLine="true"
2021-06-09 12:51:04 +03:00
android:textColor="@color/emoji_color"
tools:text="* Party Parrot Again * 👀" />
<TextView
android:id="@+id/reactionCount"
2022-02-23 13:26:21 +03:00
style="@style/Widget.Vector.TextView.Caption"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2022-02-23 13:26:21 +03:00
android:layout_marginStart="4dp"
android:gravity="center"
android:maxLines="1"
2021-06-09 12:51:04 +03:00
android:textColor="?vctr_content_secondary"
android:textStyle="bold"
tools:text="13450" />
2020-12-16 13:45:06 +03:00
</merge>