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

Commit 91886308 authored by Tony's avatar Tony
Browse files

Add ScreenPinnedInputConsumer

When screen pinning is active, swipe up and hold to stop it.

Bug: 130828539
Change-Id: I343050d2a224ac723143cd3be4f78bc321f1a026
parent 9aaa9267
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -296,10 +296,6 @@ public class TaskSystemShortcut<T extends SystemShortcut> extends SystemShortcut
            if (sysUiProxy == null) {
                return null;
            }
            if (SysUINavigationMode.getMode(activity) == SysUINavigationMode.Mode.NO_BUTTON) {
                // TODO(b/130225926): Temporarily disable pinning while gesture nav is enabled
                return null;
            }
            if (!ActivityManagerWrapper.getInstance().isScreenPinningEnabled()) {
                return null;
            }
+7 −0
Original line number Diff line number Diff line
@@ -72,6 +72,7 @@ import com.android.quickstep.inputconsumers.DeviceLockedInputConsumer;
import com.android.quickstep.inputconsumers.InputConsumer;
import com.android.quickstep.inputconsumers.OtherActivityInputConsumer;
import com.android.quickstep.inputconsumers.OverviewInputConsumer;
import com.android.quickstep.inputconsumers.ScreenPinnedInputConsumer;
import com.android.systemui.shared.recents.IOverviewProxy;
import com.android.systemui.shared.recents.ISystemUiProxy;
import com.android.systemui.shared.system.ActivityManagerWrapper;
@@ -466,6 +467,12 @@ public class TouchInteractionService extends Service implements
                        mInputMonitorCompat);
            }

            if (ActivityManagerWrapper.getInstance().isScreenPinningActive()) {
                // Note: we only allow accessibility to wrap this, and it replaces the previous
                // base input consumer (which should be NO_OP anyway since topTaskLocked == true).
                base = new ScreenPinnedInputConsumer(this, mISystemUiProxy, activityControl);
            }

            if ((mSystemUiStateFlags & SYSUI_STATE_A11Y_BUTTON_CLICKABLE) != 0) {
                base = new AccessibilityInputConsumer(this, mISystemUiProxy,
                        (mSystemUiStateFlags & SYSUI_STATE_A11Y_BUTTON_LONG_CLICKABLE) != 0, base,
+1 −0
Original line number Diff line number Diff line
@@ -30,6 +30,7 @@ public interface InputConsumer {
    int TYPE_ASSISTANT = 1 << 3;
    int TYPE_DEVICE_LOCKED = 1 << 4;
    int TYPE_ACCESSIBILITY = 1 << 5;
    int TYPE_SCREEN_PINNED = 1 << 6;

    InputConsumer NO_OP = () -> TYPE_NO_OP;

+88 −0
Original line number Diff line number Diff line
/*
 * Copyright (C) 2019 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.android.quickstep.inputconsumers;

import android.content.Context;
import android.os.RemoteException;
import android.util.Log;
import android.view.HapticFeedbackConstants;
import android.view.MotionEvent;

import com.android.launcher3.BaseDraggingActivity;
import com.android.launcher3.R;
import com.android.quickstep.ActivityControlHelper;
import com.android.quickstep.util.MotionPauseDetector;
import com.android.systemui.shared.recents.ISystemUiProxy;

/**
 * An input consumer that detects swipe up and hold to exit screen pinning mode.
 */
public class ScreenPinnedInputConsumer implements InputConsumer {

    private static final String TAG = "ScreenPinnedConsumer";

    private final float mMotionPauseMinDisplacement;
    private final MotionPauseDetector mMotionPauseDetector;

    private float mTouchDownY;

    public ScreenPinnedInputConsumer(Context context, ISystemUiProxy sysuiProxy,
            ActivityControlHelper activityControl) {
        mMotionPauseMinDisplacement = context.getResources().getDimension(
                R.dimen.motion_pause_detector_min_displacement_from_app);
        mMotionPauseDetector = new MotionPauseDetector(context, true /* makePauseHarderToTrigger*/);
        mMotionPauseDetector.setOnMotionPauseListener(isPaused -> {
            if (isPaused) {
                try {
                    sysuiProxy.stopScreenPinning();
                    BaseDraggingActivity launcherActivity = activityControl.getCreatedActivity();
                    if (launcherActivity != null) {
                        launcherActivity.getRootView().performHapticFeedback(
                                HapticFeedbackConstants.LONG_PRESS,
                                HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
                    }
                    mMotionPauseDetector.clear();
                } catch (RemoteException e) {
                    Log.e(TAG, "Unable to stop screen pinning ", e);
                }
            }
        });
    }

    @Override
    public int getType() {
        return TYPE_SCREEN_PINNED;
    }

    @Override
    public void onMotionEvent(MotionEvent ev) {
        float y = ev.getY();
        switch (ev.getAction()) {
            case MotionEvent.ACTION_DOWN:
                mTouchDownY = y;
                break;
            case MotionEvent.ACTION_MOVE:
                float displacement = mTouchDownY - y;
                mMotionPauseDetector.setDisallowPause(displacement < mMotionPauseMinDisplacement);
                mMotionPauseDetector.addPosition(y, ev.getEventTime());
                break;
            case MotionEvent.ACTION_CANCEL:
            case MotionEvent.ACTION_UP:
                mMotionPauseDetector.clear();
                break;
        }
    }
}
+1 −0
Original line number Diff line number Diff line
@@ -36,6 +36,7 @@

    <!-- These speeds are in dp / ms -->
    <dimen name="motion_pause_detector_speed_very_slow">0.0285dp</dimen>
    <dimen name="motion_pause_detector_speed_slow">0.15dp</dimen>
    <dimen name="motion_pause_detector_speed_somewhat_fast">0.285dp</dimen>
    <dimen name="motion_pause_detector_speed_fast">0.5dp</dimen>
    <dimen name="motion_pause_detector_min_displacement_from_app">36dp</dimen>
Loading