2021-03-09 21:23:35 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-03-15 07:00:49 +00:00
|
|
|
<com.android.launcher3.widget.picker.search.LauncherWidgetsSearchBar
|
2021-03-09 21:23:35 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:id="@+id/widgets_search_bar"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="horizontal"
|
2021-05-14 16:56:37 +01:00
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
|
android:background="@drawable/bg_widgets_searchbox">
|
2021-03-09 21:23:35 +00:00
|
|
|
|
2021-03-12 17:39:38 +00:00
|
|
|
<com.android.launcher3.ExtendedEditText
|
2021-03-09 21:23:35 +00:00
|
|
|
android:id="@+id/widgets_search_bar_edit_text"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2021-04-13 10:41:18 +01:00
|
|
|
android:paddingVertical="12dp"
|
|
|
|
|
android:paddingStart="12dp"
|
|
|
|
|
android:paddingEnd="0dp"
|
2021-03-09 21:23:35 +00:00
|
|
|
android:drawablePadding="8dp"
|
|
|
|
|
android:drawableStart="@drawable/ic_allapps_search"
|
|
|
|
|
android:background="@null"
|
|
|
|
|
android:hint="@string/widgets_full_sheet_search_bar_hint"
|
|
|
|
|
android:maxLines="1"
|
|
|
|
|
android:layout_weight="1"
|
2021-03-19 14:22:43 +00:00
|
|
|
android:inputType="text"
|
2021-04-13 10:41:18 +01:00
|
|
|
android:imeOptions="actionSearch"
|
2021-04-28 18:16:04 +01:00
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
2021-04-30 10:23:26 +01:00
|
|
|
android:textColorHint="?android:attr/textColorSecondary"/>
|
2021-03-09 21:23:35 +00:00
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
|
android:id="@+id/widgets_search_cancel_button"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_width="wrap_content"
|
2021-06-29 14:19:07 +01:00
|
|
|
android:padding="12dp"
|
2021-03-09 21:23:35 +00:00
|
|
|
android:src="@drawable/ic_gm_close_24"
|
2021-06-29 14:19:07 +01:00
|
|
|
android:background="@drawable/full_rounded_transparent_ripple"
|
2021-03-09 21:23:35 +00:00
|
|
|
android:layout_gravity="center"
|
2021-03-22 12:25:37 +00:00
|
|
|
android:contentDescription="@string/widgets_full_sheet_cancel_button_description"
|
2021-03-09 21:23:35 +00:00
|
|
|
android:visibility="gone"/>
|
2021-03-15 07:00:49 +00:00
|
|
|
</com.android.launcher3.widget.picker.search.LauncherWidgetsSearchBar>
|