commit | a81f580fb71c3e867ccbdef1d034ab17835318fb | [log] [tgz] |
---|---|---|
author | Winson <winsonc@google.com> | Wed Jul 27 13:50:05 2016 -0700 |
committer | Winson <winsonc@google.com> | Wed Jul 27 13:50:05 2016 -0700 |
tree | 5d8fe3d4ceefeb8a443349625d9b90131b2b52d7 | |
parent | 8fcdee05bb87fee8085048a27c954626d59dbb9b [diff] |
Clearing search query after clearing input text. Bug: 30435142 Change-Id: I3f00e1339aba46f4ab3cd092e59a94b506179dcf
diff --git a/src/com/android/launcher3/allapps/AllAppsSearchBarController.java b/src/com/android/launcher3/allapps/AllAppsSearchBarController.java index 7746245..b965d74 100644 --- a/src/com/android/launcher3/allapps/AllAppsSearchBarController.java +++ b/src/com/android/launcher3/allapps/AllAppsSearchBarController.java
@@ -140,10 +140,11 @@ * Resets the search bar state. */ public void reset() { - mQuery = null; unfocusSearchField(); mCb.clearSearchResult(); mInput.setText(""); + // We need to reset this after we clear the input text + mQuery = null; hideKeyboard(); }