1<?xml version="1.0" encoding="utf-8"?>
 2<layout xmlns:android="http://schemas.android.com/apk/res/android"
 3    xmlns:app="http://schemas.android.com/apk/res-auto">
 4
 5    <RelativeLayout
 6        android:layout_width="wrap_content"
 7        android:layout_height="wrap_content"
 8        android:padding="?dialogPreferredPadding">
 9
10        <com.google.android.material.button.MaterialButtonGroup
11            android:id="@+id/emojis"
12
13            style="@style/Widget.Material3.MaterialButtonGroup.Connected"
14            android:layout_width="wrap_content"
15            android:layout_height="wrap_content"
16            android:layout_centerHorizontal="true" />
17
18        <com.google.android.material.textfield.TextInputLayout
19            android:id="@+id/search_layout"
20            android:layout_width="match_parent"
21            android:layout_height="wrap_content"
22            android:layout_below="@+id/emojis"
23            android:hint="Search for emoji"
24            app:errorEnabled="true">
25
26            <EditText
27                android:padding="16dp"
28                android:id="@+id/search"
29                android:layout_width="match_parent"
30                android:layout_height="wrap_content"
31                android:ems="10"
32                android:inputType="textPersonName">
33            </EditText>
34
35        </com.google.android.material.textfield.TextInputLayout>
36
37
38    </RelativeLayout>
39
40</layout>