From b0277191f386b0fb5eeaaff9cbcf1854676f1da3 Mon Sep 17 00:00:00 2001 From: Hyunyoung Song Date: Tue, 8 Sep 2020 00:51:00 -0700 Subject: [PATCH] Improve AA+ Search UI, fix IME double close Bug: 167573256 Change-Id: If0d76177a8589bee3283d8c06529cedc8aab6c31 --- res/values/strings.xml | 2 ++ .../launcher3/allapps/AllAppsTransitionController.java | 6 +----- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/res/values/strings.xml b/res/values/strings.xml index ad3e2b79f4..6ab81501f4 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -58,6 +58,8 @@ Search apps + + Search this phone and more... Loading apps… diff --git a/src/com/android/launcher3/allapps/AllAppsTransitionController.java b/src/com/android/launcher3/allapps/AllAppsTransitionController.java index 0268b9638f..4195a056fe 100644 --- a/src/com/android/launcher3/allapps/AllAppsTransitionController.java +++ b/src/com/android/launcher3/allapps/AllAppsTransitionController.java @@ -270,11 +270,7 @@ public class AllAppsTransitionController implements StateHandler, editText.requestFocus(); } } - if (Float.compare(mProgress, 1f) == 0) { - // Called when home gesture closes all apps container. - // TODO: should make the controller hide synchronously - mInsetController.hide(); - } + // TODO: should make the controller hide synchronously } } }