From 4ba188aa5f37a53608525436e62d4f189dfe5646 Mon Sep 17 00:00:00 2001 From: hyunyoungs Date: Fri, 22 Jul 2022 13:16:21 -0700 Subject: [PATCH] Fix testSearchDeadzoneForTablets failure Bug: 239868630 Bug: 240116666 Test: testSearchDeadzoneForTablets passes Change-Id: I8b20cf56191058b6033ae929be6726a2c88825c8 --- .../android/launcher3/allapps/AllAppsTransitionController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/android/launcher3/allapps/AllAppsTransitionController.java b/src/com/android/launcher3/allapps/AllAppsTransitionController.java index e0f1b3d757..75ded3faf9 100644 --- a/src/com/android/launcher3/allapps/AllAppsTransitionController.java +++ b/src/com/android/launcher3/allapps/AllAppsTransitionController.java @@ -234,6 +234,7 @@ public class AllAppsTransitionController // Reset pull back progress and alpha after switching states. ALL_APPS_PULL_BACK_TRANSLATION.set(this, 0f); ALL_APPS_PULL_BACK_ALPHA.set(this, 1f); + mLauncher.getAppsView().getSearchUiManager().getEditText().hideKeyboard(); }); } @@ -241,7 +242,6 @@ public class AllAppsTransitionController if (Float.compare(mProgress, targetProgress) == 0) { setAlphas(toState, config, builder); // Fail fast - onProgressAnimationEnd(); return; }