From bb918b3532f0f88177a9f38f55440121305c79ce Mon Sep 17 00:00:00 2001 From: Jon Miranda Date: Mon, 19 Sep 2016 09:31:56 -0700 Subject: Only reset search field when back key is hit if there is no query. Bug: 31432372 Change-Id: I93c7ee661597f934402f464c4f0182a8fad38d39 --- src/com/android/launcher3/allapps/AllAppsSearchBarController.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/com/android/launcher3/allapps/AllAppsSearchBarController.java b/src/com/android/launcher3/allapps/AllAppsSearchBarController.java index 41abb4c1d..365ab3185 100644 --- a/src/com/android/launcher3/allapps/AllAppsSearchBarController.java +++ b/src/com/android/launcher3/allapps/AllAppsSearchBarController.java @@ -127,10 +127,9 @@ public abstract class AllAppsSearchBarController @Override public boolean onBackKey() { - // Only hide the search field if there is no query, or if there - // are no filtered results + // Only hide the search field if there is no query String query = Utilities.trim(mInput.getEditableText().toString()); - if (query.isEmpty() || mApps.hasNoFilteredResults()) { + if (query.isEmpty()) { reset(); return true; } -- cgit v1.2.3