Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 351aea72 authored by Hyunyoung Song's avatar Hyunyoung Song Committed by Android (Google) Code Review
Browse files

Merge "Logs stack trace when IME doesn't get attached when all apps swipes up" into sc-dev

parents d0f5aa0d 50165042
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -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;