mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-17 09:38:19 +00:00
Legacy feature flags will be locked to their current values in code. All new feature development should use aconfig flags Bug: 332588958 Flag: None Test: Presubmit Change-Id: Ie72dd8276b7135620de279835d6721a34f82ede4
27 lines
1.1 KiB
XML
27 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:showDividers="middle">
|
|
|
|
<EditText
|
|
android:id="@+id/filter_box"
|
|
android:layout_width="0dp"
|
|
android:layout_weight="1"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="@dimen/developer_options_filter_margins"
|
|
android:background="@drawable/rounded_action_button"
|
|
android:layout_marginTop="4dp"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:padding="12dp"
|
|
android:drawableStart="@drawable/ic_allapps_search"
|
|
android:drawableTint="?android:attr/textColorSecondary"
|
|
android:drawablePadding="8dp"
|
|
android:hint="@string/developer_options_filter_hint"
|
|
android:inputType="text"
|
|
android:maxLines="1"
|
|
android:imeOptions="actionDone"
|
|
/>
|
|
</LinearLayout> |