1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    android:orientation="horizontal"
4    android:layout_width="match_parent"
5    android:layout_height="wrap_content"
6    android:showDividers="middle">
7
8    <EditText
9        android:id="@+id/filter_box"
10        android:layout_width="0dp"
11        android:layout_weight="1"
12        android:layout_height="wrap_content"
13        android:layout_marginHorizontal="@dimen/developer_options_filter_margins"
14        android:background="@drawable/rounded_action_button"
15        android:layout_marginTop="4dp"
16        android:layout_marginLeft="16dp"
17        android:layout_marginRight="16dp"
18        android:padding="12dp"
19        android:drawableStart="@drawable/ic_allapps_search"
20        android:drawableTint="?android:attr/textColorSecondary"
21        android:drawablePadding="8dp"
22        android:hint="@string/developer_options_filter_hint"
23        android:inputType="text"
24        android:maxLines="1"
25        android:imeOptions="actionDone"
26        />
27</LinearLayout>