Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a727bf51 authored by Adam Powell's avatar Adam Powell Committed by Android (Google) Code Review
Browse files

Merge "Fix a regression in SearchView focusability" into lmp-dev

parents 79d91784 ea4ecd62
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -334,6 +334,10 @@ public class SearchView extends LinearLayout implements CollapsibleActionView {
            setInputType(inputType);
        }

        boolean focusable = true;
        focusable = a.getBoolean(R.styleable.SearchView_focusable, focusable);
        setFocusable(focusable);

        a.recycle();

        // Save voice intent for later queries/launching
+1 −0
Original line number Diff line number Diff line
@@ -7151,6 +7151,7 @@
        <attr name="queryBackground" format="reference" />
        <!-- Background for the section containing the action (e.g. voice search) -->
        <attr name="submitBackground" format="reference" />
        <attr name="focusable" />
    </declare-styleable>

    <declare-styleable name="Switch">