commit | 4ff4e01423a32924c041b589d0cd42f3aaf832d1 | [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 | a23749df2c8cff76a951ac1e1edee246faa1304a | |
parent | 5a0c4e79063a79a2a47a220705649d2cac1c58e1 [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: I829b7712a8d01f777e18c605d500e1d80813f5b3
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;