commit | 5f0804940ea851a53153a3cf768460599613d011 | [log] [tgz] |
---|---|---|
author | Hyunyoung Song <hyunyoungs@google.com> | Wed Feb 03 09:34:28 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Wed Feb 03 09:34:28 2021 +0000 |
tree | bc71515e99fc6480126b8b140163199d03346b60 | |
parent | 443288d3d52c4ed31b194ee95e16a687076381fa [diff] | |
parent | 351aea720fa2f948d44e0b10dd8246d9557e071b [diff] |
Merge "Logs stack trace when IME doesn't get attached when all apps swipes up" into sc-dev am: 351aea720f Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Launcher3/+/13443531 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: Ie70eb7c612983e56627bd5e1b67b88104fa0959c
diff --git a/src/com/android/launcher3/allapps/AllAppsInsetTransitionController.java b/src/com/android/launcher3/allapps/AllAppsInsetTransitionController.java index 1cf98e1..f6e54aa 100644 --- a/src/com/android/launcher3/allapps/AllAppsInsetTransitionController.java +++ b/src/com/android/launcher3/allapps/AllAppsInsetTransitionController.java
@@ -164,8 +164,11 @@ @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;