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

Commit f65c6ade authored by Bo Majewski's avatar Bo Majewski Committed by Android (Google) Code Review
Browse files

Merge "[DocsUI, Search]: Remove level 15 API" into main

parents 4d0c210b edff81ea
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -317,11 +317,8 @@ public class SearchViewManager implements

                @Override
                public void onTextChanged(CharSequence s, int start, int before, int count) {
                    if (!s.isEmpty()) {
                        dockedSearchClear.setVisibility(View.VISIBLE);
                    } else {
                        dockedSearchClear.setVisibility(View.INVISIBLE);
                    }
                    dockedSearchClear.setVisibility(
                            TextUtils.isEmpty(s) ? View.INVISIBLE : View.VISIBLE);
                    onQueryTextChange(s.toString());
                }