From 50165042edc5954bc71c3e66b60cb87748784f8f Mon Sep 17 00:00:00 2001 From: Hyunyoung Song Date: Fri, 29 Jan 2021 23:35:22 -0800 Subject: [PATCH] Logs stack trace when IME doesn't get attached when all apps swipes up Bug: 178904132 Test: Manual Change-Id: I3b62a1a8e927ca8bac4db07053f781260fbff515 --- .../allapps/AllAppsInsetTransitionController.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/com/android/launcher3/allapps/AllAppsInsetTransitionController.java b/src/com/android/launcher3/allapps/AllAppsInsetTransitionController.java index 1cf98e1c9b..f6e54aaec4 100644 --- a/src/com/android/launcher3/allapps/AllAppsInsetTransitionController.java +++ b/src/com/android/launcher3/allapps/AllAppsInsetTransitionController.java @@ -164,8 +164,11 @@ public class AllAppsInsetTransitionController { @Override public void onCancelled(@Nullable WindowInsetsAnimationController controller) { if (DEBUG) { - Log.d(TAG, "Listener.onCancelled ctrl=" + controller - + " mAnimationController=" + mAnimationController); + // Keep the verbose logging to chase down IME not showing up issue. + // b/178904132 + Log.e(TAG, "Listener.onCancelled ctrl=" + controller + + " mAnimationController=" + mAnimationController, + new Exception()); } if (mState == State.DRAG_START_BOTTOM) { mState = State.DRAG_START_BOTTOM_IME_CANCELLED;