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

Commit c8913dac authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Ensuring that we remove the input consumer after moving expanded PiP"

parents 6b2cde6b 2824d7c1
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -268,7 +268,10 @@ public class PipMenuActivity extends Activity {
            mMenuContainerAnimator.addUpdateListener(mMenuBgUpdateListener);
            mMenuContainerAnimator.start();
        } else {
            // If we are already visible, then just start the delayed dismiss and unregister any
            // existing input consumers from the previous drag
            repostDelayedFinish(POST_INTERACTION_DISMISS_DELAY);
            notifyUnregisterInputConsumer();
        }
    }

@@ -416,6 +419,12 @@ public class PipMenuActivity extends Activity {
        sendMessage(m, "Could not notify controller to register input consumer");
    }

    private void notifyUnregisterInputConsumer() {
        Message m = Message.obtain();
        m.what = PipMenuActivityController.MESSAGE_UNREGISTER_INPUT_CONSUMER;
        sendMessage(m, "Could not notify controller to unregister input consumer");
    }

    private void notifyMenuVisibility(boolean visible) {
        mMenuVisible = visible;
        Message m = Message.obtain();
+5 −0
Original line number Diff line number Diff line
@@ -63,6 +63,7 @@ public class PipMenuActivityController {
    public static final int MESSAGE_DISMISS_PIP = 103;
    public static final int MESSAGE_UPDATE_ACTIVITY_CALLBACK = 104;
    public static final int MESSAGE_REGISTER_INPUT_CONSUMER = 105;
    public static final int MESSAGE_UNREGISTER_INPUT_CONSUMER = 106;

    /**
     * A listener interface to receive notification on changes in PIP.
@@ -135,6 +136,10 @@ public class PipMenuActivityController {
                    mInputConsumerController.registerInputConsumer();
                    break;
                }
                case MESSAGE_UNREGISTER_INPUT_CONSUMER: {
                    mInputConsumerController.unregisterInputConsumer();
                    break;
                }
                case MESSAGE_UPDATE_ACTIVITY_CALLBACK: {
                    mToActivityMessenger = msg.replyTo;
                    mStartActivityRequested = false;
+4 −4
Original line number Diff line number Diff line
@@ -504,8 +504,8 @@ public class PipTouchHandler {
                return false;
            }

            try {
            if (ENABLE_DISMISS_DRAG_TO_TARGET) {
                try {
                    mHandler.removeCallbacks(mShowDismissAffordance);
                    PointF vel = mTouchState.getVelocity();
                    final float velocity = PointF.length(vel.x, vel.y);
@@ -520,10 +520,10 @@ public class PipTouchHandler {
                            return true;
                        }
                    }
                }
                } finally {
                    mDismissViewController.destroyDismissTarget();
                }
            }

            if (touchState.isDragging()) {
                final boolean onLeft = mMotionHelper.getBounds().left < mMovementBounds.centerX();