2019-02-28 15:43:36 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:orientation="horizontal" android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:paddingTop="@dimen/spacing_medium"
|
|
|
|
|
android:paddingBottom="@dimen/spacing_medium"
|
|
|
|
|
android:paddingStart="@dimen/spacing_large"
|
|
|
|
|
android:paddingEnd="@dimen/spacing_large">
|
2021-02-23 10:49:59 +00:00
|
|
|
<TextView
|
2019-02-28 15:43:36 +00:00
|
|
|
android:id="@+id/emoji_textview"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="30dp"
|
|
|
|
|
android:layout_marginEnd="@dimen/spacing_large"
|
|
|
|
|
android:layout_gravity="center_vertical"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/label"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="top" />
|
|
|
|
|
</LinearLayout>
|