1<?xml version="1.0" encoding="utf-8"?>
2<com.android.launcher3.widget.picker.search.LauncherWidgetsSearchBar
3    xmlns:android="http://schemas.android.com/apk/res/android"
4    android:id="@+id/widgets_search_bar"
5    android:layout_width="match_parent"
6    android:layout_height="wrap_content"
7    android:orientation="horizontal"
8    android:layout_marginTop="24dp"
9    android:background="@drawable/bg_widgets_searchbox">
10
11    <com.android.launcher3.ExtendedEditText
12        android:id="@+id/widgets_search_bar_edit_text"
13        android:layout_width="match_parent"
14        android:layout_height="wrap_content"
15        android:paddingVertical="12dp"
16        android:paddingStart="12dp"
17        android:paddingEnd="0dp"
18        android:drawablePadding="8dp"
19        android:drawableStart="@drawable/ic_allapps_search"
20        android:background="@null"
21        android:hint="@string/widgets_full_sheet_search_bar_hint"
22        android:maxLines="1"
23        android:layout_weight="1"
24        android:inputType="text"
25        android:imeOptions="actionSearch"
26        android:importantForAutofill="no"
27        android:textColor="?android:attr/textColorPrimary"
28        android:textColorHint="?attr/widgetPickerSearchTextColor"/>
29
30    <ImageButton
31        android:id="@+id/widgets_search_cancel_button"
32        android:layout_height="wrap_content"
33        android:layout_width="wrap_content"
34        android:padding="12dp"
35        android:src="@drawable/ic_gm_close_24"
36        android:background="@drawable/full_rounded_transparent_ripple"
37        android:layout_gravity="center"
38        android:contentDescription="@string/widgets_full_sheet_cancel_button_description"
39        android:visibility="gone"/>
40</com.android.launcher3.widget.picker.search.LauncherWidgetsSearchBar>