mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 10:48:19 +00:00
> Removing multiple fragments > Exposing support to select preference root > Adding support for recreating preferences > Moving Developer options to same fragment Bug: 305084752 Flag: N/A Test: Manual Change-Id: I499be1938ef8ed58cbc7f9b0f4ad3510d4b306c8
26 lines
957 B
XML
26 lines
957 B
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:hint="@string/developer_options_filter_hint"
|
|
android:inputType="text"
|
|
android:maxLines="1"
|
|
android:imeOptions="actionDone"
|
|
/>
|
|
<Button
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:text="Apply"
|
|
android:visibility="invisible"
|
|
android:id="@+id/flag_apply_btn" />
|
|
</LinearLayout> |