habitica-android/Habitica/res/layout/autocomplete_emoji.xml
Phillip Thelen aebe3b4f9f Code cleanup
2021-02-23 11:49:59 +01:00

21 lines
No EOL
876 B
XML

<?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">
<TextView
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>