• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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:layout_marginHorizontal="@dimen/widget_list_horizontal_margin"
10    android:background="@drawable/bg_widgets_searchbox">
11
12    <com.android.launcher3.ExtendedEditText
13        android:id="@+id/widgets_search_bar_edit_text"
14        android:layout_width="match_parent"
15        android:layout_height="wrap_content"
16        android:paddingVertical="12dp"
17        android:paddingStart="12dp"
18        android:paddingEnd="0dp"
19        android:drawablePadding="8dp"
20        android:drawableStart="@drawable/ic_allapps_search"
21        android:background="@null"
22        android:hint="@string/widgets_full_sheet_search_bar_hint"
23        android:maxLines="1"
24        android:layout_weight="1"
25        android:inputType="text"
26        android:imeOptions="actionSearch"
27        android:textColor="?android:attr/textColorPrimary"
28        android:textColorHint="?android:attr/textColorSecondary"/>
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>