mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 18:58:19 +00:00
Launcher and SysUI/Shell have a lot of interactions that require careful synchronization and ordering (at-least with shell-transitions). As a result, they need to share the same apply token or else some operations can end up out-of-order despite being applied in-order. Bug: 242193885 Test: Open an app, quickswitch repeatedly. Change-Id: I4cbe8b5db28516db7a08b4022f1199f3f6b89591
1945 lines
91 KiB
Java
1945 lines
91 KiB
Java
/*
|
|
* Copyright (C) 2018 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.launcher3;
|
|
|
|
import static android.provider.Settings.Secure.LAUNCHER_TASKBAR_EDUCATION_SHOWING;
|
|
import static android.window.StartingWindowInfo.STARTING_WINDOW_TYPE_NONE;
|
|
import static android.window.StartingWindowInfo.STARTING_WINDOW_TYPE_SPLASH_SCREEN;
|
|
|
|
import static com.android.launcher3.BaseActivity.INVISIBLE_ALL;
|
|
import static com.android.launcher3.BaseActivity.INVISIBLE_BY_APP_TRANSITIONS;
|
|
import static com.android.launcher3.BaseActivity.INVISIBLE_BY_PENDING_FLAGS;
|
|
import static com.android.launcher3.BaseActivity.PENDING_INVISIBLE_BY_WALLPAPER_ANIMATION;
|
|
import static com.android.launcher3.LauncherAnimUtils.SCALE_PROPERTY;
|
|
import static com.android.launcher3.LauncherAnimUtils.VIEW_BACKGROUND_COLOR;
|
|
import static com.android.launcher3.LauncherState.ALL_APPS;
|
|
import static com.android.launcher3.LauncherState.BACKGROUND_APP;
|
|
import static com.android.launcher3.LauncherState.NORMAL;
|
|
import static com.android.launcher3.LauncherState.OVERVIEW;
|
|
import static com.android.launcher3.Utilities.mapBoundToRange;
|
|
import static com.android.launcher3.anim.Interpolators.ACCEL_1_5;
|
|
import static com.android.launcher3.anim.Interpolators.AGGRESSIVE_EASE;
|
|
import static com.android.launcher3.anim.Interpolators.DEACCEL_1_5;
|
|
import static com.android.launcher3.anim.Interpolators.DEACCEL_1_7;
|
|
import static com.android.launcher3.anim.Interpolators.EXAGGERATED_EASE;
|
|
import static com.android.launcher3.anim.Interpolators.LINEAR;
|
|
import static com.android.launcher3.config.FeatureFlags.ENABLE_BACK_SWIPE_HOME_ANIMATION;
|
|
import static com.android.launcher3.config.FeatureFlags.ENABLE_SCRIM_FOR_APP_LAUNCH;
|
|
import static com.android.launcher3.config.FeatureFlags.KEYGUARD_ANIMATION;
|
|
import static com.android.launcher3.config.FeatureFlags.SEPARATE_RECENTS_ACTIVITY;
|
|
import static com.android.launcher3.model.data.ItemInfo.NO_MATCHING_ID;
|
|
import static com.android.launcher3.statehandlers.DepthController.DEPTH;
|
|
import static com.android.launcher3.util.window.RefreshRateTracker.getSingleFrameMs;
|
|
import static com.android.launcher3.views.FloatingIconView.SHAPE_PROGRESS_DURATION;
|
|
import static com.android.launcher3.views.FloatingIconView.getFloatingIconView;
|
|
import static com.android.quickstep.TaskAnimationManager.ENABLE_SHELL_TRANSITIONS;
|
|
import static com.android.quickstep.TaskViewUtils.findTaskViewToLaunch;
|
|
import static com.android.systemui.shared.system.QuickStepContract.getWindowCornerRadius;
|
|
import static com.android.systemui.shared.system.QuickStepContract.supportsRoundedCornersOnWindows;
|
|
import static com.android.systemui.shared.system.RemoteAnimationTargetCompat.MODE_CLOSING;
|
|
import static com.android.systemui.shared.system.RemoteAnimationTargetCompat.MODE_OPENING;
|
|
|
|
import android.animation.Animator;
|
|
import android.animation.AnimatorListenerAdapter;
|
|
import android.animation.AnimatorSet;
|
|
import android.animation.ObjectAnimator;
|
|
import android.animation.ValueAnimator;
|
|
import android.content.ComponentName;
|
|
import android.content.Context;
|
|
import android.content.pm.PackageManager;
|
|
import android.content.res.Resources;
|
|
import android.graphics.Color;
|
|
import android.graphics.Matrix;
|
|
import android.graphics.Point;
|
|
import android.graphics.PointF;
|
|
import android.graphics.Rect;
|
|
import android.graphics.RectF;
|
|
import android.graphics.drawable.ColorDrawable;
|
|
import android.graphics.drawable.Drawable;
|
|
import android.os.CancellationSignal;
|
|
import android.os.Handler;
|
|
import android.os.IBinder;
|
|
import android.os.Looper;
|
|
import android.os.SystemProperties;
|
|
import android.os.UserHandle;
|
|
import android.provider.Settings;
|
|
import android.util.Pair;
|
|
import android.util.Size;
|
|
import android.view.CrossWindowBlurListeners;
|
|
import android.view.SurfaceControl;
|
|
import android.view.View;
|
|
import android.view.ViewRootImpl;
|
|
import android.view.ViewTreeObserver;
|
|
import android.view.animation.AnimationUtils;
|
|
import android.view.animation.Interpolator;
|
|
import android.view.animation.PathInterpolator;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.Nullable;
|
|
import androidx.core.graphics.ColorUtils;
|
|
|
|
import com.android.launcher3.DeviceProfile.OnDeviceProfileChangeListener;
|
|
import com.android.launcher3.LauncherAnimationRunner.RemoteAnimationFactory;
|
|
import com.android.launcher3.anim.AnimationSuccessListener;
|
|
import com.android.launcher3.anim.AnimatorListeners;
|
|
import com.android.launcher3.dragndrop.DragLayer;
|
|
import com.android.launcher3.icons.FastBitmapDrawable;
|
|
import com.android.launcher3.shortcuts.DeepShortcutView;
|
|
import com.android.launcher3.statehandlers.DepthController;
|
|
import com.android.launcher3.taskbar.LauncherTaskbarUIController;
|
|
import com.android.launcher3.testing.shared.ResourceUtils;
|
|
import com.android.launcher3.touch.PagedOrientationHandler;
|
|
import com.android.launcher3.util.ActivityOptionsWrapper;
|
|
import com.android.launcher3.util.DynamicResource;
|
|
import com.android.launcher3.util.ObjectWrapper;
|
|
import com.android.launcher3.util.RunnableList;
|
|
import com.android.launcher3.util.Themes;
|
|
import com.android.launcher3.views.FloatingIconView;
|
|
import com.android.launcher3.views.ScrimView;
|
|
import com.android.launcher3.widget.LauncherAppWidgetHostView;
|
|
import com.android.quickstep.LauncherBackAnimationController;
|
|
import com.android.quickstep.RemoteAnimationTargets;
|
|
import com.android.quickstep.SystemUiProxy;
|
|
import com.android.quickstep.TaskViewUtils;
|
|
import com.android.quickstep.util.MultiValueUpdateListener;
|
|
import com.android.quickstep.util.RectFSpringAnim;
|
|
import com.android.quickstep.util.RemoteAnimationProvider;
|
|
import com.android.quickstep.util.StaggeredWorkspaceAnim;
|
|
import com.android.quickstep.util.SurfaceTransactionApplier;
|
|
import com.android.quickstep.util.WorkspaceRevealAnim;
|
|
import com.android.quickstep.views.FloatingWidgetView;
|
|
import com.android.quickstep.views.RecentsView;
|
|
import com.android.systemui.shared.system.ActivityCompat;
|
|
import com.android.systemui.shared.system.ActivityOptionsCompat;
|
|
import com.android.systemui.shared.system.BlurUtils;
|
|
import com.android.systemui.shared.system.InteractionJankMonitorWrapper;
|
|
import com.android.systemui.shared.system.QuickStepContract;
|
|
import com.android.systemui.shared.system.RemoteAnimationAdapterCompat;
|
|
import com.android.systemui.shared.system.RemoteAnimationDefinitionCompat;
|
|
import com.android.systemui.shared.system.RemoteAnimationRunnerCompat;
|
|
import com.android.systemui.shared.system.RemoteAnimationTargetCompat;
|
|
import com.android.systemui.shared.system.RemoteTransitionCompat;
|
|
import com.android.systemui.shared.system.SyncRtSurfaceTransactionApplierCompat.SurfaceParams;
|
|
import com.android.systemui.shared.system.WindowManagerWrapper;
|
|
import com.android.wm.shell.startingsurface.IStartingWindowListener;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.LinkedHashMap;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Manages the opening and closing app transitions from Launcher
|
|
*/
|
|
public class QuickstepTransitionManager implements OnDeviceProfileChangeListener {
|
|
|
|
private static final boolean ENABLE_SHELL_STARTING_SURFACE =
|
|
SystemProperties.getBoolean("persist.debug.shell_starting_surface", true);
|
|
|
|
/** Duration of status bar animations. */
|
|
public static final int STATUS_BAR_TRANSITION_DURATION = 120;
|
|
|
|
/**
|
|
* Since our animations decelerate heavily when finishing, we want to start status bar
|
|
* animations x ms before the ending.
|
|
*/
|
|
public static final int STATUS_BAR_TRANSITION_PRE_DELAY = 96;
|
|
|
|
private static final String CONTROL_REMOTE_APP_TRANSITION_PERMISSION =
|
|
"android.permission.CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS";
|
|
|
|
private static final long APP_LAUNCH_DURATION = 500;
|
|
|
|
private static final long APP_LAUNCH_ALPHA_DURATION = 50;
|
|
private static final long APP_LAUNCH_ALPHA_START_DELAY = 25;
|
|
|
|
public static final int ANIMATION_NAV_FADE_IN_DURATION = 266;
|
|
public static final int ANIMATION_NAV_FADE_OUT_DURATION = 133;
|
|
public static final long ANIMATION_DELAY_NAV_FADE_IN =
|
|
APP_LAUNCH_DURATION - ANIMATION_NAV_FADE_IN_DURATION;
|
|
public static final Interpolator NAV_FADE_IN_INTERPOLATOR =
|
|
new PathInterpolator(0f, 0f, 0f, 1f);
|
|
public static final Interpolator NAV_FADE_OUT_INTERPOLATOR =
|
|
new PathInterpolator(0.2f, 0f, 1f, 1f);
|
|
|
|
public static final int RECENTS_LAUNCH_DURATION = 336;
|
|
private static final int LAUNCHER_RESUME_START_DELAY = 100;
|
|
private static final int CLOSING_TRANSITION_DURATION_MS = 250;
|
|
public static final int SPLIT_LAUNCH_DURATION = 370;
|
|
public static final int SPLIT_DIVIDER_ANIM_DURATION = 100;
|
|
|
|
public static final int CONTENT_ALPHA_DURATION = 217;
|
|
public static final int TASKBAR_TO_APP_DURATION = 600;
|
|
// TODO(b/236145847): Tune TASKBAR_TO_HOME_DURATION to 383 after conflict with unlock animation
|
|
// is solved.
|
|
public static final int TASKBAR_TO_HOME_DURATION = 300;
|
|
protected static final int CONTENT_SCALE_DURATION = 350;
|
|
protected static final int CONTENT_SCRIM_DURATION = 350;
|
|
|
|
private static final int MAX_NUM_TASKS = 5;
|
|
|
|
// Cross-fade duration between App Widget and App
|
|
private static final int WIDGET_CROSSFADE_DURATION_MILLIS = 125;
|
|
|
|
protected final BaseQuickstepLauncher mLauncher;
|
|
private final DragLayer mDragLayer;
|
|
|
|
final Handler mHandler;
|
|
|
|
private final float mClosingWindowTransY;
|
|
private final float mMaxShadowRadius;
|
|
|
|
private final StartingWindowListener mStartingWindowListener = new StartingWindowListener();
|
|
|
|
private DeviceProfile mDeviceProfile;
|
|
|
|
private RemoteAnimationProvider mRemoteAnimationProvider;
|
|
// Strong refs to runners which are cleared when the launcher activity is destroyed
|
|
private RemoteAnimationFactory mWallpaperOpenRunner;
|
|
private RemoteAnimationFactory mAppLaunchRunner;
|
|
private RemoteAnimationFactory mKeyguardGoingAwayRunner;
|
|
|
|
private RemoteAnimationFactory mWallpaperOpenTransitionRunner;
|
|
private RemoteTransitionCompat mLauncherOpenTransition;
|
|
|
|
private LauncherBackAnimationController mBackAnimationController;
|
|
private final AnimatorListenerAdapter mForceInvisibleListener = new AnimatorListenerAdapter() {
|
|
@Override
|
|
public void onAnimationStart(Animator animation) {
|
|
mLauncher.addForceInvisibleFlag(INVISIBLE_BY_APP_TRANSITIONS);
|
|
}
|
|
|
|
@Override
|
|
public void onAnimationEnd(Animator animation) {
|
|
mLauncher.clearForceInvisibleFlag(INVISIBLE_BY_APP_TRANSITIONS);
|
|
}
|
|
};
|
|
|
|
// Pairs of window starting type and starting window background color for starting tasks
|
|
// Will never be larger than MAX_NUM_TASKS
|
|
private LinkedHashMap<Integer, Pair<Integer, Integer>> mTaskStartParams;
|
|
|
|
private final Interpolator mOpeningXInterpolator;
|
|
private final Interpolator mOpeningInterpolator;
|
|
|
|
public QuickstepTransitionManager(Context context) {
|
|
mLauncher = Launcher.cast(Launcher.getLauncher(context));
|
|
mDragLayer = mLauncher.getDragLayer();
|
|
mHandler = new Handler(Looper.getMainLooper());
|
|
mDeviceProfile = mLauncher.getDeviceProfile();
|
|
mBackAnimationController = new LauncherBackAnimationController(mLauncher, this);
|
|
|
|
Resources res = mLauncher.getResources();
|
|
mClosingWindowTransY = res.getDimensionPixelSize(R.dimen.closing_window_trans_y);
|
|
mMaxShadowRadius = res.getDimensionPixelSize(R.dimen.max_shadow_radius);
|
|
|
|
mLauncher.addOnDeviceProfileChangeListener(this);
|
|
|
|
if (supportsSSplashScreen()) {
|
|
mTaskStartParams = new LinkedHashMap<Integer, Pair<Integer, Integer>>(MAX_NUM_TASKS) {
|
|
@Override
|
|
protected boolean removeEldestEntry(Entry<Integer, Pair<Integer, Integer>> entry) {
|
|
return size() > MAX_NUM_TASKS;
|
|
}
|
|
};
|
|
|
|
mStartingWindowListener.setTransitionManager(this);
|
|
SystemUiProxy.INSTANCE.get(mLauncher).setStartingWindowListener(
|
|
mStartingWindowListener);
|
|
}
|
|
|
|
mOpeningXInterpolator = AnimationUtils.loadInterpolator(context, R.interpolator.app_open_x);
|
|
mOpeningInterpolator = AnimationUtils.loadInterpolator(context,
|
|
R.interpolator.three_point_fast_out_extra_slow_in);
|
|
}
|
|
|
|
@Override
|
|
public void onDeviceProfileChanged(DeviceProfile dp) {
|
|
mDeviceProfile = dp;
|
|
}
|
|
|
|
/**
|
|
* @return ActivityOptions with remote animations that controls how the window of the opening
|
|
* targets are displayed.
|
|
*/
|
|
public ActivityOptionsWrapper getActivityLaunchOptions(View v) {
|
|
boolean fromRecents = isLaunchingFromRecents(v, null /* targets */);
|
|
RunnableList onEndCallback = new RunnableList();
|
|
mAppLaunchRunner = new AppLaunchAnimationRunner(v, onEndCallback);
|
|
RemoteAnimationRunnerCompat runner = new LauncherAnimationRunner(
|
|
mHandler, mAppLaunchRunner, true /* startAtFrontOfQueue */);
|
|
|
|
// Note that this duration is a guess as we do not know if the animation will be a
|
|
// recents launch or not for sure until we know the opening app targets.
|
|
long duration = fromRecents
|
|
? RECENTS_LAUNCH_DURATION
|
|
: APP_LAUNCH_DURATION;
|
|
|
|
long statusBarTransitionDelay = duration - STATUS_BAR_TRANSITION_DURATION
|
|
- STATUS_BAR_TRANSITION_PRE_DELAY;
|
|
RemoteAnimationAdapterCompat adapterCompat =
|
|
new RemoteAnimationAdapterCompat(runner, duration, statusBarTransitionDelay,
|
|
mLauncher.getIApplicationThread());
|
|
return new ActivityOptionsWrapper(
|
|
ActivityOptionsCompat.makeRemoteAnimation(adapterCompat), onEndCallback);
|
|
}
|
|
|
|
/**
|
|
* Whether the launch is a recents app transition and we should do a launch animation
|
|
* from the recents view. Note that if the remote animation targets are not provided, this
|
|
* may not always be correct as we may resolve the opening app to a task when the animation
|
|
* starts.
|
|
*
|
|
* @param v the view to launch from
|
|
* @param targets apps that are opening/closing
|
|
* @return true if the app is launching from recents, false if it most likely is not
|
|
*/
|
|
protected boolean isLaunchingFromRecents(@NonNull View v,
|
|
@Nullable RemoteAnimationTargetCompat[] targets) {
|
|
return mLauncher.getStateManager().getState().overviewUi
|
|
&& findTaskViewToLaunch(mLauncher.getOverviewPanel(), v, targets) != null;
|
|
}
|
|
|
|
/**
|
|
* Composes the animations for a launch from the recents list.
|
|
*
|
|
* @param anim the animator set to add to
|
|
* @param v the launching view
|
|
* @param appTargets the apps that are opening/closing
|
|
* @param launcherClosing true if the launcher app is closing
|
|
*/
|
|
protected void composeRecentsLaunchAnimator(@NonNull AnimatorSet anim, @NonNull View v,
|
|
@NonNull RemoteAnimationTargetCompat[] appTargets,
|
|
@NonNull RemoteAnimationTargetCompat[] wallpaperTargets,
|
|
@NonNull RemoteAnimationTargetCompat[] nonAppTargets, boolean launcherClosing) {
|
|
TaskViewUtils.composeRecentsLaunchAnimator(anim, v, appTargets, wallpaperTargets,
|
|
nonAppTargets, launcherClosing, mLauncher.getStateManager(),
|
|
mLauncher.getOverviewPanel(), mLauncher.getDepthController());
|
|
}
|
|
|
|
private boolean areAllTargetsTranslucent(@NonNull RemoteAnimationTargetCompat[] targets) {
|
|
boolean isAllOpeningTargetTrs = true;
|
|
for (int i = 0; i < targets.length; i++) {
|
|
RemoteAnimationTargetCompat target = targets[i];
|
|
if (target.mode == MODE_OPENING) {
|
|
isAllOpeningTargetTrs &= target.isTranslucent;
|
|
}
|
|
if (!isAllOpeningTargetTrs) break;
|
|
}
|
|
return isAllOpeningTargetTrs;
|
|
}
|
|
|
|
/**
|
|
* Compose the animations for a launch from the app icon.
|
|
*
|
|
* @param anim the animation to add to
|
|
* @param v the launching view with the icon
|
|
* @param appTargets the list of opening/closing apps
|
|
* @param launcherClosing true if launcher is closing
|
|
*/
|
|
private void composeIconLaunchAnimator(@NonNull AnimatorSet anim, @NonNull View v,
|
|
@NonNull RemoteAnimationTargetCompat[] appTargets,
|
|
@NonNull RemoteAnimationTargetCompat[] wallpaperTargets,
|
|
@NonNull RemoteAnimationTargetCompat[] nonAppTargets,
|
|
boolean launcherClosing) {
|
|
// Set the state animation first so that any state listeners are called
|
|
// before our internal listeners.
|
|
mLauncher.getStateManager().setCurrentAnimation(anim);
|
|
|
|
final int rotationChange = getRotationChange(appTargets);
|
|
// Note: the targetBounds are relative to the launcher
|
|
int startDelay = getSingleFrameMs(mLauncher);
|
|
Rect windowTargetBounds = getWindowTargetBounds(appTargets, rotationChange);
|
|
Animator windowAnimator = getOpeningWindowAnimators(v, appTargets, wallpaperTargets,
|
|
nonAppTargets, windowTargetBounds, areAllTargetsTranslucent(appTargets),
|
|
rotationChange);
|
|
windowAnimator.setStartDelay(startDelay);
|
|
anim.play(windowAnimator);
|
|
if (launcherClosing) {
|
|
// Delay animation by a frame to avoid jank.
|
|
Pair<AnimatorSet, Runnable> launcherContentAnimator =
|
|
getLauncherContentAnimator(true /* isAppOpening */, startDelay, false);
|
|
anim.play(launcherContentAnimator.first);
|
|
anim.addListener(new AnimatorListenerAdapter() {
|
|
@Override
|
|
public void onAnimationEnd(Animator animation) {
|
|
launcherContentAnimator.second.run();
|
|
}
|
|
});
|
|
} else {
|
|
anim.addListener(new AnimatorListenerAdapter() {
|
|
@Override
|
|
public void onAnimationStart(Animator animation) {
|
|
mLauncher.addOnResumeCallback(() ->
|
|
ObjectAnimator.ofFloat(mLauncher.getDepthController(), DEPTH,
|
|
mLauncher.getStateManager().getState().getDepth(
|
|
mLauncher)).start());
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
private void composeWidgetLaunchAnimator(
|
|
@NonNull AnimatorSet anim,
|
|
@NonNull LauncherAppWidgetHostView v,
|
|
@NonNull RemoteAnimationTargetCompat[] appTargets,
|
|
@NonNull RemoteAnimationTargetCompat[] wallpaperTargets,
|
|
@NonNull RemoteAnimationTargetCompat[] nonAppTargets) {
|
|
mLauncher.getStateManager().setCurrentAnimation(anim);
|
|
|
|
Rect windowTargetBounds = getWindowTargetBounds(appTargets, getRotationChange(appTargets));
|
|
anim.play(getOpeningWindowAnimatorsForWidget(v, appTargets, wallpaperTargets, nonAppTargets,
|
|
windowTargetBounds, areAllTargetsTranslucent(appTargets)));
|
|
|
|
anim.addListener(new AnimatorListenerAdapter() {
|
|
@Override
|
|
public void onAnimationStart(Animator animation) {
|
|
mLauncher.addOnResumeCallback(() ->
|
|
ObjectAnimator.ofFloat(mLauncher.getDepthController(), DEPTH,
|
|
mLauncher.getStateManager().getState().getDepth(
|
|
mLauncher)).start());
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Return the window bounds of the opening target.
|
|
* In multiwindow mode, we need to get the final size of the opening app window target to help
|
|
* figure out where the floating view should animate to.
|
|
*/
|
|
private Rect getWindowTargetBounds(@NonNull RemoteAnimationTargetCompat[] appTargets,
|
|
int rotationChange) {
|
|
RemoteAnimationTargetCompat target = null;
|
|
for (RemoteAnimationTargetCompat t : appTargets) {
|
|
if (t.mode != MODE_OPENING) continue;
|
|
target = t;
|
|
break;
|
|
}
|
|
if (target == null) return new Rect(0, 0, mDeviceProfile.widthPx, mDeviceProfile.heightPx);
|
|
final Rect bounds = new Rect(target.screenSpaceBounds);
|
|
if (target.localBounds != null) {
|
|
bounds.set(target.localBounds);
|
|
} else {
|
|
bounds.offsetTo(target.position.x, target.position.y);
|
|
}
|
|
if (rotationChange != 0) {
|
|
if ((rotationChange % 2) == 1) {
|
|
// undoing rotation, so our "original" parent size is actually flipped
|
|
Utilities.rotateBounds(bounds, mDeviceProfile.heightPx, mDeviceProfile.widthPx,
|
|
4 - rotationChange);
|
|
} else {
|
|
Utilities.rotateBounds(bounds, mDeviceProfile.widthPx, mDeviceProfile.heightPx,
|
|
4 - rotationChange);
|
|
}
|
|
}
|
|
if (mDeviceProfile.isTaskbarPresentInApps && !target.willShowImeOnTarget) {
|
|
// Animate to above the taskbar.
|
|
bounds.bottom -= target.contentInsets.bottom;
|
|
}
|
|
return bounds;
|
|
}
|
|
|
|
public void setRemoteAnimationProvider(final RemoteAnimationProvider animationProvider,
|
|
CancellationSignal cancellationSignal) {
|
|
mRemoteAnimationProvider = animationProvider;
|
|
cancellationSignal.setOnCancelListener(() -> {
|
|
if (animationProvider == mRemoteAnimationProvider) {
|
|
mRemoteAnimationProvider = null;
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Content is everything on screen except the background and the floating view (if any).
|
|
*
|
|
* @param isAppOpening True when this is called when an app is opening.
|
|
* False when this is called when an app is closing.
|
|
* @param startDelay Start delay duration.
|
|
* @param skipAllAppsScale True if we want to avoid scaling All Apps
|
|
*/
|
|
private Pair<AnimatorSet, Runnable> getLauncherContentAnimator(boolean isAppOpening,
|
|
int startDelay, boolean skipAllAppsScale) {
|
|
AnimatorSet launcherAnimator = new AnimatorSet();
|
|
Runnable endListener;
|
|
|
|
float[] alphas = isAppOpening
|
|
? new float[]{1, 0}
|
|
: new float[]{0, 1};
|
|
|
|
float[] scales = isAppOpening
|
|
? new float[]{1, mDeviceProfile.workspaceContentScale}
|
|
: new float[]{mDeviceProfile.workspaceContentScale, 1};
|
|
|
|
// Pause expensive view updates as they can lead to layer thrashing and skipped frames.
|
|
mLauncher.pauseExpensiveViewUpdates();
|
|
|
|
if (mLauncher.isInState(ALL_APPS)) {
|
|
// All Apps in portrait mode is full screen, so we only animate AllAppsContainerView.
|
|
final View appsView = mLauncher.getAppsView();
|
|
final float startAlpha = appsView.getAlpha();
|
|
final float startScale = SCALE_PROPERTY.get(appsView);
|
|
appsView.setAlpha(alphas[0]);
|
|
|
|
ObjectAnimator alpha = ObjectAnimator.ofFloat(appsView, View.ALPHA, alphas);
|
|
alpha.setDuration(CONTENT_ALPHA_DURATION);
|
|
alpha.setInterpolator(LINEAR);
|
|
appsView.setLayerType(View.LAYER_TYPE_HARDWARE, null);
|
|
alpha.addListener(new AnimatorListenerAdapter() {
|
|
@Override
|
|
public void onAnimationEnd(Animator animation) {
|
|
appsView.setLayerType(View.LAYER_TYPE_NONE, null);
|
|
}
|
|
});
|
|
|
|
if (!skipAllAppsScale) {
|
|
SCALE_PROPERTY.set(appsView, scales[0]);
|
|
ObjectAnimator scale = ObjectAnimator.ofFloat(appsView, SCALE_PROPERTY, scales);
|
|
scale.setInterpolator(AGGRESSIVE_EASE);
|
|
scale.setDuration(CONTENT_SCALE_DURATION);
|
|
launcherAnimator.play(scale);
|
|
}
|
|
|
|
launcherAnimator.play(alpha);
|
|
|
|
endListener = () -> {
|
|
appsView.setAlpha(startAlpha);
|
|
SCALE_PROPERTY.set(appsView, startScale);
|
|
appsView.setLayerType(View.LAYER_TYPE_NONE, null);
|
|
mLauncher.resumeExpensiveViewUpdates();
|
|
};
|
|
} else if (mLauncher.isInState(OVERVIEW)) {
|
|
endListener = composeViewContentAnimator(launcherAnimator, alphas, scales);
|
|
} else {
|
|
List<View> viewsToAnimate = new ArrayList<>();
|
|
Workspace<?> workspace = mLauncher.getWorkspace();
|
|
workspace.forEachVisiblePage(
|
|
view -> viewsToAnimate.add(((CellLayout) view).getShortcutsAndWidgets()));
|
|
|
|
// Do not scale hotseat as a whole when taskbar is present, and scale QSB only if it's
|
|
// not inline.
|
|
if (mDeviceProfile.isTaskbarPresent) {
|
|
if (!mDeviceProfile.isQsbInline) {
|
|
viewsToAnimate.add(mLauncher.getHotseat().getQsb());
|
|
}
|
|
} else {
|
|
viewsToAnimate.add(mLauncher.getHotseat());
|
|
}
|
|
|
|
viewsToAnimate.forEach(view -> {
|
|
view.setLayerType(View.LAYER_TYPE_HARDWARE, null);
|
|
|
|
ObjectAnimator scaleAnim = ObjectAnimator.ofFloat(view, SCALE_PROPERTY, scales)
|
|
.setDuration(CONTENT_SCALE_DURATION);
|
|
scaleAnim.setInterpolator(DEACCEL_1_5);
|
|
launcherAnimator.play(scaleAnim);
|
|
});
|
|
|
|
final boolean scrimEnabled = ENABLE_SCRIM_FOR_APP_LAUNCH.get();
|
|
if (scrimEnabled) {
|
|
boolean useTaskbarColor = mDeviceProfile.isTaskbarPresentInApps;
|
|
int scrimColor = useTaskbarColor
|
|
? mLauncher.getResources().getColor(R.color.taskbar_background)
|
|
: Themes.getAttrColor(mLauncher, R.attr.overviewScrimColor);
|
|
int scrimColorTrans = ColorUtils.setAlphaComponent(scrimColor, 0);
|
|
int[] colors = isAppOpening
|
|
? new int[]{scrimColorTrans, scrimColor}
|
|
: new int[]{scrimColor, scrimColorTrans};
|
|
ScrimView scrimView = mLauncher.getScrimView();
|
|
if (scrimView.getBackground() instanceof ColorDrawable) {
|
|
scrimView.setBackgroundColor(colors[0]);
|
|
|
|
ObjectAnimator scrim = ObjectAnimator.ofArgb(scrimView, VIEW_BACKGROUND_COLOR,
|
|
colors);
|
|
scrim.setDuration(CONTENT_SCRIM_DURATION);
|
|
scrim.setInterpolator(DEACCEL_1_5);
|
|
|
|
if (useTaskbarColor) {
|
|
// Hide the taskbar background color since it would duplicate the scrim.
|
|
scrim.addListener(new AnimatorListenerAdapter() {
|
|
@Override
|
|
public void onAnimationStart(Animator animation) {
|
|
LauncherTaskbarUIController taskbarUIController =
|
|
mLauncher.getTaskbarUIController();
|
|
if (taskbarUIController != null) {
|
|
taskbarUIController.forceHideBackground(true);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onAnimationEnd(Animator animation) {
|
|
LauncherTaskbarUIController taskbarUIController =
|
|
mLauncher.getTaskbarUIController();
|
|
if (taskbarUIController != null) {
|
|
taskbarUIController.forceHideBackground(false);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
launcherAnimator.play(scrim);
|
|
}
|
|
}
|
|
|
|
endListener = () -> {
|
|
viewsToAnimate.forEach(view -> {
|
|
SCALE_PROPERTY.set(view, 1f);
|
|
view.setLayerType(View.LAYER_TYPE_NONE, null);
|
|
});
|
|
if (scrimEnabled) {
|
|
mLauncher.getScrimView().setBackgroundColor(Color.TRANSPARENT);
|
|
}
|
|
mLauncher.resumeExpensiveViewUpdates();
|
|
};
|
|
}
|
|
|
|
launcherAnimator.setStartDelay(startDelay);
|
|
return new Pair<>(launcherAnimator, endListener);
|
|
}
|
|
|
|
/**
|
|
* Compose recents view alpha and translation Y animation when launcher opens/closes apps.
|
|
*
|
|
* @param anim the animator set to add to
|
|
* @param alphas the alphas to animate to over time
|
|
* @param scales the scale values to animator to over time
|
|
* @return listener to run when the animation ends
|
|
*/
|
|
protected Runnable composeViewContentAnimator(@NonNull AnimatorSet anim,
|
|
float[] alphas, float[] scales) {
|
|
RecentsView overview = mLauncher.getOverviewPanel();
|
|
ObjectAnimator alpha = ObjectAnimator.ofFloat(overview,
|
|
RecentsView.CONTENT_ALPHA, alphas);
|
|
alpha.setDuration(CONTENT_ALPHA_DURATION);
|
|
alpha.setInterpolator(LINEAR);
|
|
anim.play(alpha);
|
|
overview.setFreezeViewVisibility(true);
|
|
|
|
ObjectAnimator scaleAnim = ObjectAnimator.ofFloat(overview, SCALE_PROPERTY, scales);
|
|
scaleAnim.setInterpolator(AGGRESSIVE_EASE);
|
|
scaleAnim.setDuration(CONTENT_SCALE_DURATION);
|
|
anim.play(scaleAnim);
|
|
|
|
return () -> {
|
|
overview.setFreezeViewVisibility(false);
|
|
SCALE_PROPERTY.set(overview, 1f);
|
|
mLauncher.getStateManager().reapplyState();
|
|
mLauncher.resumeExpensiveViewUpdates();
|
|
};
|
|
}
|
|
|
|
/**
|
|
* @return Animator that controls the window of the opening targets from app icons.
|
|
*/
|
|
private Animator getOpeningWindowAnimators(View v,
|
|
RemoteAnimationTargetCompat[] appTargets,
|
|
RemoteAnimationTargetCompat[] wallpaperTargets,
|
|
RemoteAnimationTargetCompat[] nonAppTargets,
|
|
Rect windowTargetBounds, boolean appTargetsAreTranslucent, int rotationChange) {
|
|
RectF launcherIconBounds = new RectF();
|
|
FloatingIconView floatingView = FloatingIconView.getFloatingIconView(mLauncher, v,
|
|
!appTargetsAreTranslucent, launcherIconBounds, true /* isOpening */);
|
|
Rect crop = new Rect();
|
|
Matrix matrix = new Matrix();
|
|
|
|
RemoteAnimationTargets openingTargets = new RemoteAnimationTargets(appTargets,
|
|
wallpaperTargets, nonAppTargets, MODE_OPENING);
|
|
SurfaceTransactionApplier surfaceApplier =
|
|
new SurfaceTransactionApplier(floatingView);
|
|
openingTargets.addReleaseCheck(surfaceApplier);
|
|
RemoteAnimationTargetCompat navBarTarget = openingTargets.getNavBarRemoteAnimationTarget();
|
|
|
|
int[] dragLayerBounds = new int[2];
|
|
mDragLayer.getLocationOnScreen(dragLayerBounds);
|
|
|
|
final boolean hasSplashScreen;
|
|
if (supportsSSplashScreen()) {
|
|
int taskId = openingTargets.getFirstAppTargetTaskId();
|
|
Pair<Integer, Integer> defaultParams = Pair.create(STARTING_WINDOW_TYPE_NONE, 0);
|
|
Pair<Integer, Integer> taskParams =
|
|
mTaskStartParams.getOrDefault(taskId, defaultParams);
|
|
mTaskStartParams.remove(taskId);
|
|
hasSplashScreen = taskParams.first == STARTING_WINDOW_TYPE_SPLASH_SCREEN;
|
|
} else {
|
|
hasSplashScreen = false;
|
|
}
|
|
|
|
AnimOpenProperties prop = new AnimOpenProperties(mLauncher.getResources(), mDeviceProfile,
|
|
windowTargetBounds, launcherIconBounds, v, dragLayerBounds[0], dragLayerBounds[1],
|
|
hasSplashScreen, floatingView.isDifferentFromAppIcon());
|
|
int left = prop.cropCenterXStart - prop.cropWidthStart / 2;
|
|
int top = prop.cropCenterYStart - prop.cropHeightStart / 2;
|
|
int right = left + prop.cropWidthStart;
|
|
int bottom = top + prop.cropHeightStart;
|
|
// Set the crop here so we can calculate the corner radius below.
|
|
crop.set(left, top, right, bottom);
|
|
|
|
RectF floatingIconBounds = new RectF();
|
|
RectF tmpRectF = new RectF();
|
|
Point tmpPos = new Point();
|
|
|
|
AnimatorSet animatorSet = new AnimatorSet();
|
|
ValueAnimator appAnimator = ValueAnimator.ofFloat(0, 1);
|
|
appAnimator.setDuration(APP_LAUNCH_DURATION);
|
|
appAnimator.setInterpolator(LINEAR);
|
|
appAnimator.addListener(floatingView);
|
|
appAnimator.addListener(new AnimatorListenerAdapter() {
|
|
@Override
|
|
public void onAnimationStart(Animator animation) {
|
|
LauncherTaskbarUIController taskbarController = mLauncher.getTaskbarUIController();
|
|
if (taskbarController != null && taskbarController.shouldShowEdu()) {
|
|
// LAUNCHER_TASKBAR_EDUCATION_SHOWING is set to true here, when the education
|
|
// flow is about to start, to avoid a race condition with other components
|
|
// that would show something else to the user as soon as the app is opened.
|
|
Settings.Secure.putInt(mLauncher.getContentResolver(),
|
|
LAUNCHER_TASKBAR_EDUCATION_SHOWING, 1);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onAnimationEnd(Animator animation) {
|
|
if (v instanceof BubbleTextView) {
|
|
((BubbleTextView) v).setStayPressed(false);
|
|
}
|
|
LauncherTaskbarUIController taskbarController = mLauncher.getTaskbarUIController();
|
|
if (taskbarController != null) {
|
|
taskbarController.showEdu();
|
|
}
|
|
openingTargets.release();
|
|
}
|
|
});
|
|
|
|
final float initialWindowRadius = supportsRoundedCornersOnWindows(mLauncher.getResources())
|
|
? Math.max(crop.width(), crop.height()) / 2f
|
|
: 0f;
|
|
final float finalWindowRadius = mDeviceProfile.isMultiWindowMode
|
|
? 0 : getWindowCornerRadius(mLauncher);
|
|
final float finalShadowRadius = appTargetsAreTranslucent ? 0 : mMaxShadowRadius;
|
|
|
|
MultiValueUpdateListener listener = new MultiValueUpdateListener() {
|
|
FloatProp mDx = new FloatProp(0, prop.dX, 0, APP_LAUNCH_DURATION,
|
|
mOpeningXInterpolator);
|
|
FloatProp mDy = new FloatProp(0, prop.dY, 0, APP_LAUNCH_DURATION,
|
|
mOpeningInterpolator);
|
|
|
|
FloatProp mIconScaleToFitScreen = new FloatProp(prop.initialAppIconScale,
|
|
prop.finalAppIconScale, 0, APP_LAUNCH_DURATION, mOpeningInterpolator);
|
|
FloatProp mIconAlpha = new FloatProp(prop.iconAlphaStart, 0f,
|
|
APP_LAUNCH_ALPHA_START_DELAY, APP_LAUNCH_ALPHA_DURATION, LINEAR);
|
|
|
|
FloatProp mWindowRadius = new FloatProp(initialWindowRadius, finalWindowRadius, 0,
|
|
APP_LAUNCH_DURATION, mOpeningInterpolator);
|
|
FloatProp mShadowRadius = new FloatProp(0, finalShadowRadius, 0,
|
|
APP_LAUNCH_DURATION, mOpeningInterpolator);
|
|
|
|
FloatProp mCropRectCenterX = new FloatProp(prop.cropCenterXStart, prop.cropCenterXEnd,
|
|
0, APP_LAUNCH_DURATION, mOpeningInterpolator);
|
|
FloatProp mCropRectCenterY = new FloatProp(prop.cropCenterYStart, prop.cropCenterYEnd,
|
|
0, APP_LAUNCH_DURATION, mOpeningInterpolator);
|
|
FloatProp mCropRectWidth = new FloatProp(prop.cropWidthStart, prop.cropWidthEnd, 0,
|
|
APP_LAUNCH_DURATION, mOpeningInterpolator);
|
|
FloatProp mCropRectHeight = new FloatProp(prop.cropHeightStart, prop.cropHeightEnd, 0,
|
|
APP_LAUNCH_DURATION, mOpeningInterpolator);
|
|
|
|
FloatProp mNavFadeOut = new FloatProp(1f, 0f, 0, ANIMATION_NAV_FADE_OUT_DURATION,
|
|
NAV_FADE_OUT_INTERPOLATOR);
|
|
FloatProp mNavFadeIn = new FloatProp(0f, 1f, ANIMATION_DELAY_NAV_FADE_IN,
|
|
ANIMATION_NAV_FADE_IN_DURATION, NAV_FADE_IN_INTERPOLATOR);
|
|
|
|
@Override
|
|
public void onUpdate(float percent, boolean initOnly) {
|
|
// Calculate the size of the scaled icon.
|
|
float iconWidth = launcherIconBounds.width() * mIconScaleToFitScreen.value;
|
|
float iconHeight = launcherIconBounds.height() * mIconScaleToFitScreen.value;
|
|
|
|
int left = (int) (mCropRectCenterX.value - mCropRectWidth.value / 2);
|
|
int top = (int) (mCropRectCenterY.value - mCropRectHeight.value / 2);
|
|
int right = (int) (left + mCropRectWidth.value);
|
|
int bottom = (int) (top + mCropRectHeight.value);
|
|
crop.set(left, top, right, bottom);
|
|
|
|
final int windowCropWidth = crop.width();
|
|
final int windowCropHeight = crop.height();
|
|
if (rotationChange != 0) {
|
|
Utilities.rotateBounds(crop, mDeviceProfile.widthPx,
|
|
mDeviceProfile.heightPx, rotationChange);
|
|
}
|
|
|
|
// Scale the size of the icon to match the size of the window crop.
|
|
float scaleX = iconWidth / windowCropWidth;
|
|
float scaleY = iconHeight / windowCropHeight;
|
|
float scale = Math.min(1f, Math.max(scaleX, scaleY));
|
|
|
|
float scaledCropWidth = windowCropWidth * scale;
|
|
float scaledCropHeight = windowCropHeight * scale;
|
|
float offsetX = (scaledCropWidth - iconWidth) / 2;
|
|
float offsetY = (scaledCropHeight - iconHeight) / 2;
|
|
|
|
// Calculate the window position to match the icon position.
|
|
tmpRectF.set(launcherIconBounds);
|
|
tmpRectF.offset(dragLayerBounds[0], dragLayerBounds[1]);
|
|
tmpRectF.offset(mDx.value, mDy.value);
|
|
Utilities.scaleRectFAboutCenter(tmpRectF, mIconScaleToFitScreen.value);
|
|
float windowTransX0 = tmpRectF.left - offsetX - crop.left * scale;
|
|
float windowTransY0 = tmpRectF.top - offsetY - crop.top * scale;
|
|
|
|
// Calculate the icon position.
|
|
floatingIconBounds.set(launcherIconBounds);
|
|
floatingIconBounds.offset(mDx.value, mDy.value);
|
|
Utilities.scaleRectFAboutCenter(floatingIconBounds, mIconScaleToFitScreen.value);
|
|
floatingIconBounds.left -= offsetX;
|
|
floatingIconBounds.top -= offsetY;
|
|
floatingIconBounds.right += offsetX;
|
|
floatingIconBounds.bottom += offsetY;
|
|
|
|
if (initOnly) {
|
|
// For the init pass, we want full alpha since the window is not yet ready.
|
|
floatingView.update(1f, 255, floatingIconBounds, percent, 0f,
|
|
mWindowRadius.value * scale, true /* isOpening */);
|
|
return;
|
|
}
|
|
|
|
ArrayList<SurfaceParams> params = new ArrayList<>();
|
|
for (int i = appTargets.length - 1; i >= 0; i--) {
|
|
RemoteAnimationTargetCompat target = appTargets[i];
|
|
SurfaceParams.Builder builder = new SurfaceParams.Builder(target.leash);
|
|
|
|
if (target.mode == MODE_OPENING) {
|
|
matrix.setScale(scale, scale);
|
|
if (rotationChange == 1) {
|
|
matrix.postTranslate(windowTransY0,
|
|
mDeviceProfile.widthPx - (windowTransX0 + scaledCropWidth));
|
|
} else if (rotationChange == 2) {
|
|
matrix.postTranslate(
|
|
mDeviceProfile.widthPx - (windowTransX0 + scaledCropWidth),
|
|
mDeviceProfile.heightPx - (windowTransY0 + scaledCropHeight));
|
|
} else if (rotationChange == 3) {
|
|
matrix.postTranslate(
|
|
mDeviceProfile.heightPx - (windowTransY0 + scaledCropHeight),
|
|
windowTransX0);
|
|
} else {
|
|
matrix.postTranslate(windowTransX0, windowTransY0);
|
|
}
|
|
|
|
floatingView.update(mIconAlpha.value, 255, floatingIconBounds, percent, 0f,
|
|
mWindowRadius.value * scale, true /* isOpening */);
|
|
builder.withMatrix(matrix)
|
|
.withWindowCrop(crop)
|
|
.withAlpha(1f - mIconAlpha.value)
|
|
.withCornerRadius(mWindowRadius.value)
|
|
.withShadowRadius(mShadowRadius.value);
|
|
} else if (target.mode == MODE_CLOSING) {
|
|
if (target.localBounds != null) {
|
|
final Rect localBounds = target.localBounds;
|
|
tmpPos.set(target.localBounds.left, target.localBounds.top);
|
|
} else {
|
|
tmpPos.set(target.position.x, target.position.y);
|
|
}
|
|
final Rect crop = new Rect(target.screenSpaceBounds);
|
|
crop.offsetTo(0, 0);
|
|
|
|
if ((rotationChange % 2) == 1) {
|
|
int tmp = crop.right;
|
|
crop.right = crop.bottom;
|
|
crop.bottom = tmp;
|
|
tmp = tmpPos.x;
|
|
tmpPos.x = tmpPos.y;
|
|
tmpPos.y = tmp;
|
|
}
|
|
matrix.setTranslate(tmpPos.x, tmpPos.y);
|
|
builder.withMatrix(matrix)
|
|
.withWindowCrop(crop)
|
|
.withAlpha(1f);
|
|
}
|
|
params.add(builder.build());
|
|
}
|
|
|
|
if (navBarTarget != null) {
|
|
final SurfaceParams.Builder navBuilder =
|
|
new SurfaceParams.Builder(navBarTarget.leash);
|
|
if (mNavFadeIn.value > mNavFadeIn.getStartValue()) {
|
|
matrix.setScale(scale, scale);
|
|
matrix.postTranslate(windowTransX0, windowTransY0);
|
|
navBuilder.withMatrix(matrix)
|
|
.withWindowCrop(crop)
|
|
.withAlpha(mNavFadeIn.value);
|
|
} else {
|
|
navBuilder.withAlpha(mNavFadeOut.value);
|
|
}
|
|
params.add(navBuilder.build());
|
|
}
|
|
|
|
surfaceApplier.scheduleApply(params.toArray(new SurfaceParams[params.size()]));
|
|
}
|
|
};
|
|
appAnimator.addUpdateListener(listener);
|
|
// Since we added a start delay, call update here to init the FloatingIconView properly.
|
|
listener.onUpdate(0, true /* initOnly */);
|
|
|
|
// If app targets are translucent, do not animate the background as it causes a visible
|
|
// flicker when it resets itself at the end of its animation.
|
|
if (appTargetsAreTranslucent) {
|
|
animatorSet.play(appAnimator);
|
|
} else {
|
|
animatorSet.playTogether(appAnimator, getBackgroundAnimator());
|
|
}
|
|
return animatorSet;
|
|
}
|
|
|
|
private Animator getOpeningWindowAnimatorsForWidget(LauncherAppWidgetHostView v,
|
|
RemoteAnimationTargetCompat[] appTargets,
|
|
RemoteAnimationTargetCompat[] wallpaperTargets,
|
|
RemoteAnimationTargetCompat[] nonAppTargets, Rect windowTargetBounds,
|
|
boolean appTargetsAreTranslucent) {
|
|
final RectF widgetBackgroundBounds = new RectF();
|
|
final Rect appWindowCrop = new Rect();
|
|
final Matrix matrix = new Matrix();
|
|
RemoteAnimationTargets openingTargets = new RemoteAnimationTargets(appTargets,
|
|
wallpaperTargets, nonAppTargets, MODE_OPENING);
|
|
|
|
RemoteAnimationTargetCompat openingTarget = openingTargets.getFirstAppTarget();
|
|
int fallbackBackgroundColor = 0;
|
|
if (openingTarget != null && supportsSSplashScreen()) {
|
|
fallbackBackgroundColor = mTaskStartParams.containsKey(openingTarget.taskId)
|
|
? mTaskStartParams.get(openingTarget.taskId).second : 0;
|
|
mTaskStartParams.remove(openingTarget.taskId);
|
|
}
|
|
if (fallbackBackgroundColor == 0) {
|
|
fallbackBackgroundColor =
|
|
FloatingWidgetView.getDefaultBackgroundColor(mLauncher, openingTarget);
|
|
}
|
|
|
|
final float finalWindowRadius = mDeviceProfile.isMultiWindowMode
|
|
? 0 : getWindowCornerRadius(mLauncher);
|
|
final FloatingWidgetView floatingView = FloatingWidgetView.getFloatingWidgetView(mLauncher,
|
|
v, widgetBackgroundBounds,
|
|
new Size(windowTargetBounds.width(), windowTargetBounds.height()),
|
|
finalWindowRadius, appTargetsAreTranslucent, fallbackBackgroundColor);
|
|
final float initialWindowRadius = supportsRoundedCornersOnWindows(mLauncher.getResources())
|
|
? floatingView.getInitialCornerRadius() : 0;
|
|
|
|
SurfaceTransactionApplier surfaceApplier = new SurfaceTransactionApplier(floatingView);
|
|
openingTargets.addReleaseCheck(surfaceApplier);
|
|
|
|
RemoteAnimationTargetCompat navBarTarget = openingTargets.getNavBarRemoteAnimationTarget();
|
|
|
|
AnimatorSet animatorSet = new AnimatorSet();
|
|
ValueAnimator appAnimator = ValueAnimator.ofFloat(0, 1);
|
|
appAnimator.setDuration(APP_LAUNCH_DURATION);
|
|
appAnimator.setInterpolator(LINEAR);
|
|
appAnimator.addListener(floatingView);
|
|
appAnimator.addListener(new AnimatorListenerAdapter() {
|
|
@Override
|
|
public void onAnimationEnd(Animator animation) {
|
|
openingTargets.release();
|
|
}
|
|
});
|
|
floatingView.setFastFinishRunnable(animatorSet::end);
|
|
|
|
appAnimator.addUpdateListener(new MultiValueUpdateListener() {
|
|
float mAppWindowScale = 1;
|
|
final FloatProp mWidgetForegroundAlpha = new FloatProp(1 /* start */,
|
|
0 /* end */, 0 /* delay */,
|
|
WIDGET_CROSSFADE_DURATION_MILLIS / 2 /* duration */, LINEAR);
|
|
final FloatProp mWidgetFallbackBackgroundAlpha = new FloatProp(0 /* start */,
|
|
1 /* end */, 0 /* delay */, 75 /* duration */, LINEAR);
|
|
final FloatProp mPreviewAlpha = new FloatProp(0 /* start */, 1 /* end */,
|
|
WIDGET_CROSSFADE_DURATION_MILLIS / 2 /* delay */,
|
|
WIDGET_CROSSFADE_DURATION_MILLIS / 2 /* duration */, LINEAR);
|
|
final FloatProp mWindowRadius = new FloatProp(initialWindowRadius, finalWindowRadius,
|
|
0 /* start */, APP_LAUNCH_DURATION, mOpeningInterpolator);
|
|
final FloatProp mCornerRadiusProgress = new FloatProp(0, 1, 0, APP_LAUNCH_DURATION,
|
|
mOpeningInterpolator);
|
|
|
|
// Window & widget background positioning bounds
|
|
final FloatProp mDx = new FloatProp(widgetBackgroundBounds.centerX(),
|
|
windowTargetBounds.centerX(), 0 /* delay */, APP_LAUNCH_DURATION,
|
|
mOpeningXInterpolator);
|
|
final FloatProp mDy = new FloatProp(widgetBackgroundBounds.centerY(),
|
|
windowTargetBounds.centerY(), 0 /* delay */, APP_LAUNCH_DURATION,
|
|
mOpeningInterpolator);
|
|
final FloatProp mWidth = new FloatProp(widgetBackgroundBounds.width(),
|
|
windowTargetBounds.width(), 0 /* delay */, APP_LAUNCH_DURATION,
|
|
mOpeningInterpolator);
|
|
final FloatProp mHeight = new FloatProp(widgetBackgroundBounds.height(),
|
|
windowTargetBounds.height(), 0 /* delay */, APP_LAUNCH_DURATION,
|
|
mOpeningInterpolator);
|
|
|
|
final FloatProp mNavFadeOut = new FloatProp(1f, 0f, 0, ANIMATION_NAV_FADE_OUT_DURATION,
|
|
NAV_FADE_OUT_INTERPOLATOR);
|
|
final FloatProp mNavFadeIn = new FloatProp(0f, 1f, ANIMATION_DELAY_NAV_FADE_IN,
|
|
ANIMATION_NAV_FADE_IN_DURATION, NAV_FADE_IN_INTERPOLATOR);
|
|
|
|
@Override
|
|
public void onUpdate(float percent, boolean initOnly) {
|
|
widgetBackgroundBounds.set(mDx.value - mWidth.value / 2f,
|
|
mDy.value - mHeight.value / 2f, mDx.value + mWidth.value / 2f,
|
|
mDy.value + mHeight.value / 2f);
|
|
// Set app window scaling factor to match widget background width
|
|
mAppWindowScale = widgetBackgroundBounds.width() / windowTargetBounds.width();
|
|
// Crop scaled app window to match widget
|
|
appWindowCrop.set(0 /* left */, 0 /* top */,
|
|
Math.round(windowTargetBounds.width()) /* right */,
|
|
Math.round(widgetBackgroundBounds.height() / mAppWindowScale) /* bottom */);
|
|
matrix.setTranslate(widgetBackgroundBounds.left, widgetBackgroundBounds.top);
|
|
matrix.postScale(mAppWindowScale, mAppWindowScale, widgetBackgroundBounds.left,
|
|
widgetBackgroundBounds.top);
|
|
|
|
ArrayList<SurfaceParams> params = new ArrayList<>();
|
|
float floatingViewAlpha = appTargetsAreTranslucent ? 1 - mPreviewAlpha.value : 1;
|
|
for (int i = appTargets.length - 1; i >= 0; i--) {
|
|
RemoteAnimationTargetCompat target = appTargets[i];
|
|
SurfaceParams.Builder builder = new SurfaceParams.Builder(target.leash);
|
|
if (target.mode == MODE_OPENING) {
|
|
floatingView.update(widgetBackgroundBounds, floatingViewAlpha,
|
|
mWidgetForegroundAlpha.value, mWidgetFallbackBackgroundAlpha.value,
|
|
mCornerRadiusProgress.value);
|
|
builder.withMatrix(matrix)
|
|
.withWindowCrop(appWindowCrop)
|
|
.withAlpha(mPreviewAlpha.value)
|
|
.withCornerRadius(mWindowRadius.value / mAppWindowScale);
|
|
}
|
|
params.add(builder.build());
|
|
}
|
|
|
|
if (navBarTarget != null) {
|
|
final SurfaceParams.Builder navBuilder =
|
|
new SurfaceParams.Builder(navBarTarget.leash);
|
|
if (mNavFadeIn.value > mNavFadeIn.getStartValue()) {
|
|
navBuilder.withMatrix(matrix)
|
|
.withWindowCrop(appWindowCrop)
|
|
.withAlpha(mNavFadeIn.value);
|
|
} else {
|
|
navBuilder.withAlpha(mNavFadeOut.value);
|
|
}
|
|
params.add(navBuilder.build());
|
|
}
|
|
|
|
surfaceApplier.scheduleApply(params.toArray(new SurfaceParams[params.size()]));
|
|
}
|
|
});
|
|
|
|
// If app targets are translucent, do not animate the background as it causes a visible
|
|
// flicker when it resets itself at the end of its animation.
|
|
if (appTargetsAreTranslucent) {
|
|
animatorSet.play(appAnimator);
|
|
} else {
|
|
animatorSet.playTogether(appAnimator, getBackgroundAnimator());
|
|
}
|
|
return animatorSet;
|
|
}
|
|
|
|
/**
|
|
* Returns animator that controls depth/blur of the background.
|
|
*/
|
|
private ObjectAnimator getBackgroundAnimator() {
|
|
// When launching an app from overview that doesn't map to a task, we still want to just
|
|
// blur the wallpaper instead of the launcher surface as well
|
|
boolean allowBlurringLauncher = mLauncher.getStateManager().getState() != OVERVIEW
|
|
&& BlurUtils.supportsBlursOnWindows();
|
|
|
|
MyDepthController depthController = new MyDepthController(mLauncher);
|
|
ObjectAnimator backgroundRadiusAnim = ObjectAnimator.ofFloat(depthController, DEPTH,
|
|
BACKGROUND_APP.getDepth(mLauncher))
|
|
.setDuration(APP_LAUNCH_DURATION);
|
|
|
|
if (allowBlurringLauncher) {
|
|
// Create a temporary effect layer, that lives on top of launcher, so we can apply
|
|
// the blur to it. The EffectLayer will be fullscreen, which will help with caching
|
|
// optimizations on the SurfaceFlinger side:
|
|
// - Results would be able to be cached as a texture
|
|
// - There won't be texture allocation overhead, because EffectLayers don't have
|
|
// buffers
|
|
ViewRootImpl viewRootImpl = mLauncher.getDragLayer().getViewRootImpl();
|
|
SurfaceControl parent = viewRootImpl != null
|
|
? viewRootImpl.getSurfaceControl()
|
|
: null;
|
|
SurfaceControl dimLayer = new SurfaceControl.Builder()
|
|
.setName("Blur layer")
|
|
.setParent(parent)
|
|
.setOpaque(false)
|
|
.setHidden(false)
|
|
.setEffectLayer()
|
|
.build();
|
|
|
|
backgroundRadiusAnim.addListener(AnimatorListeners.forEndCallback(() ->
|
|
new SurfaceControl.Transaction().remove(dimLayer).apply()));
|
|
}
|
|
|
|
return backgroundRadiusAnim;
|
|
}
|
|
|
|
/**
|
|
* Registers remote animations used when closing apps to home screen.
|
|
*/
|
|
public void registerRemoteAnimations() {
|
|
if (SEPARATE_RECENTS_ACTIVITY.get()) {
|
|
return;
|
|
}
|
|
if (hasControlRemoteAppTransitionPermission()) {
|
|
mWallpaperOpenRunner = createWallpaperOpenRunner(false /* fromUnlock */);
|
|
|
|
RemoteAnimationDefinitionCompat definition = new RemoteAnimationDefinitionCompat();
|
|
definition.addRemoteAnimation(WindowManagerWrapper.TRANSIT_WALLPAPER_OPEN,
|
|
WindowManagerWrapper.ACTIVITY_TYPE_STANDARD,
|
|
new RemoteAnimationAdapterCompat(
|
|
new LauncherAnimationRunner(mHandler, mWallpaperOpenRunner,
|
|
false /* startAtFrontOfQueue */),
|
|
CLOSING_TRANSITION_DURATION_MS, 0 /* statusBarTransitionDelay */,
|
|
mLauncher.getIApplicationThread()));
|
|
|
|
if (KEYGUARD_ANIMATION.get()) {
|
|
mKeyguardGoingAwayRunner = createWallpaperOpenRunner(true /* fromUnlock */);
|
|
definition.addRemoteAnimation(
|
|
WindowManagerWrapper.TRANSIT_KEYGUARD_GOING_AWAY_ON_WALLPAPER,
|
|
new RemoteAnimationAdapterCompat(
|
|
new LauncherAnimationRunner(
|
|
mHandler, mKeyguardGoingAwayRunner,
|
|
true /* startAtFrontOfQueue */),
|
|
CLOSING_TRANSITION_DURATION_MS, 0 /* statusBarTransitionDelay */,
|
|
mLauncher.getIApplicationThread()));
|
|
}
|
|
|
|
new ActivityCompat(mLauncher).registerRemoteAnimations(definition);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Registers remote animations used when closing apps to home screen.
|
|
*/
|
|
public void registerRemoteTransitions() {
|
|
if (ENABLE_SHELL_TRANSITIONS) {
|
|
SystemUiProxy.INSTANCE.get(mLauncher).shareTransactionQueue();
|
|
}
|
|
if (SEPARATE_RECENTS_ACTIVITY.get()) {
|
|
return;
|
|
}
|
|
if (hasControlRemoteAppTransitionPermission()) {
|
|
mWallpaperOpenTransitionRunner = createWallpaperOpenRunner(false /* fromUnlock */);
|
|
mLauncherOpenTransition = RemoteAnimationAdapterCompat.buildRemoteTransition(
|
|
new LauncherAnimationRunner(mHandler, mWallpaperOpenTransitionRunner,
|
|
false /* startAtFrontOfQueue */), mLauncher.getIApplicationThread());
|
|
mLauncherOpenTransition.addHomeOpenCheck(mLauncher.getComponentName());
|
|
SystemUiProxy.INSTANCE.get(mLauncher).registerRemoteTransition(mLauncherOpenTransition);
|
|
}
|
|
if (mBackAnimationController != null) {
|
|
mBackAnimationController.registerBackCallbacks(mHandler);
|
|
}
|
|
}
|
|
|
|
public void onActivityDestroyed() {
|
|
unregisterRemoteAnimations();
|
|
unregisterRemoteTransitions();
|
|
mStartingWindowListener.setTransitionManager(null);
|
|
SystemUiProxy.INSTANCE.get(mLauncher).setStartingWindowListener(null);
|
|
}
|
|
|
|
private void unregisterRemoteAnimations() {
|
|
if (SEPARATE_RECENTS_ACTIVITY.get()) {
|
|
return;
|
|
}
|
|
if (hasControlRemoteAppTransitionPermission()) {
|
|
new ActivityCompat(mLauncher).unregisterRemoteAnimations();
|
|
|
|
// Also clear strong references to the runners registered with the remote animation
|
|
// definition so we don't have to wait for the system gc
|
|
mWallpaperOpenRunner = null;
|
|
mAppLaunchRunner = null;
|
|
mKeyguardGoingAwayRunner = null;
|
|
}
|
|
}
|
|
|
|
private void unregisterRemoteTransitions() {
|
|
if (ENABLE_SHELL_TRANSITIONS) {
|
|
SystemUiProxy.INSTANCE.get(mLauncher).unshareTransactionQueue();
|
|
}
|
|
if (SEPARATE_RECENTS_ACTIVITY.get()) {
|
|
return;
|
|
}
|
|
if (hasControlRemoteAppTransitionPermission()) {
|
|
if (mLauncherOpenTransition == null) return;
|
|
SystemUiProxy.INSTANCE.get(mLauncher).unregisterRemoteTransition(
|
|
mLauncherOpenTransition);
|
|
mLauncherOpenTransition = null;
|
|
mWallpaperOpenTransitionRunner = null;
|
|
}
|
|
if (mBackAnimationController != null) {
|
|
mBackAnimationController.unregisterBackCallbacks();
|
|
mBackAnimationController = null;
|
|
}
|
|
}
|
|
|
|
private boolean launcherIsATargetWithMode(RemoteAnimationTargetCompat[] targets, int mode) {
|
|
for (RemoteAnimationTargetCompat target : targets) {
|
|
if (target.mode == mode && target.taskInfo != null
|
|
// Compare component name instead of task-id because transitions will promote
|
|
// the target up to the root task while getTaskId returns the leaf.
|
|
&& target.taskInfo.topActivity != null
|
|
&& target.taskInfo.topActivity.equals(mLauncher.getComponentName())) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
private boolean hasMultipleTargetsWithMode(RemoteAnimationTargetCompat[] targets, int mode) {
|
|
int numTargets = 0;
|
|
for (RemoteAnimationTargetCompat target : targets) {
|
|
if (target.mode == mode) {
|
|
numTargets++;
|
|
}
|
|
if (numTargets > 1) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* @return Runner that plays when user goes to Launcher
|
|
* ie. pressing home, swiping up from nav bar.
|
|
*/
|
|
RemoteAnimationFactory createWallpaperOpenRunner(boolean fromUnlock) {
|
|
return new WallpaperOpenLauncherAnimationRunner(mHandler, fromUnlock);
|
|
}
|
|
|
|
/**
|
|
* Animator that controls the transformations of the windows when unlocking the device.
|
|
*/
|
|
private Animator getUnlockWindowAnimator(RemoteAnimationTargetCompat[] appTargets,
|
|
RemoteAnimationTargetCompat[] wallpaperTargets) {
|
|
SurfaceTransactionApplier surfaceApplier = new SurfaceTransactionApplier(mDragLayer);
|
|
ValueAnimator unlockAnimator = ValueAnimator.ofFloat(0, 1);
|
|
unlockAnimator.setDuration(CLOSING_TRANSITION_DURATION_MS);
|
|
float cornerRadius = mDeviceProfile.isMultiWindowMode ? 0 :
|
|
QuickStepContract.getWindowCornerRadius(mLauncher);
|
|
unlockAnimator.addListener(new AnimatorListenerAdapter() {
|
|
@Override
|
|
public void onAnimationStart(Animator animation) {
|
|
SurfaceParams[] params = new SurfaceParams[appTargets.length];
|
|
for (int i = appTargets.length - 1; i >= 0; i--) {
|
|
RemoteAnimationTargetCompat target = appTargets[i];
|
|
params[i] = new SurfaceParams.Builder(target.leash)
|
|
.withAlpha(1f)
|
|
.withWindowCrop(target.screenSpaceBounds)
|
|
.withCornerRadius(cornerRadius)
|
|
.build();
|
|
}
|
|
surfaceApplier.scheduleApply(params);
|
|
}
|
|
});
|
|
return unlockAnimator;
|
|
}
|
|
|
|
private static int getRotationChange(RemoteAnimationTargetCompat[] appTargets) {
|
|
int rotationChange = 0;
|
|
for (RemoteAnimationTargetCompat target : appTargets) {
|
|
if (Math.abs(target.rotationChange) > Math.abs(rotationChange)) {
|
|
rotationChange = target.rotationChange;
|
|
}
|
|
}
|
|
return rotationChange;
|
|
}
|
|
|
|
/**
|
|
* Returns view on launcher that corresponds to the closing app in the list of app targets
|
|
*/
|
|
private @Nullable View findLauncherView(RemoteAnimationTargetCompat[] appTargets) {
|
|
for (RemoteAnimationTargetCompat appTarget : appTargets) {
|
|
if (appTarget.mode == MODE_CLOSING) {
|
|
View launcherView = findLauncherView(appTarget);
|
|
if (launcherView != null) {
|
|
return launcherView;
|
|
}
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Returns view on launcher that corresponds to the {@param runningTaskTarget}.
|
|
*/
|
|
private @Nullable View findLauncherView(RemoteAnimationTargetCompat runningTaskTarget) {
|
|
if (runningTaskTarget == null || runningTaskTarget.taskInfo == null) {
|
|
return null;
|
|
}
|
|
|
|
final ComponentName[] taskInfoActivities = new ComponentName[] {
|
|
runningTaskTarget.taskInfo.baseActivity,
|
|
runningTaskTarget.taskInfo.origActivity,
|
|
runningTaskTarget.taskInfo.realActivity,
|
|
runningTaskTarget.taskInfo.topActivity};
|
|
|
|
String packageName = null;
|
|
for (ComponentName component : taskInfoActivities) {
|
|
if (component != null && component.getPackageName() != null) {
|
|
packageName = component.getPackageName();
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (packageName == null) {
|
|
return null;
|
|
}
|
|
|
|
// Find the associated item info for the launch cookie (if available), note that predicted
|
|
// apps actually have an id of -1, so use another default id here
|
|
final ArrayList<IBinder> launchCookies = runningTaskTarget.taskInfo.launchCookies == null
|
|
? new ArrayList<>()
|
|
: runningTaskTarget.taskInfo.launchCookies;
|
|
|
|
int launchCookieItemId = NO_MATCHING_ID;
|
|
for (IBinder cookie : launchCookies) {
|
|
Integer itemId = ObjectWrapper.unwrap(cookie);
|
|
if (itemId != null) {
|
|
launchCookieItemId = itemId;
|
|
break;
|
|
}
|
|
}
|
|
|
|
return mLauncher.getFirstMatchForAppClose(launchCookieItemId, packageName,
|
|
UserHandle.of(runningTaskTarget.taskInfo.userId), true /* supportsAllAppsState */);
|
|
}
|
|
|
|
private @NonNull RectF getDefaultWindowTargetRect() {
|
|
RecentsView recentsView = mLauncher.getOverviewPanel();
|
|
PagedOrientationHandler orientationHandler = recentsView.getPagedOrientationHandler();
|
|
DeviceProfile dp = mLauncher.getDeviceProfile();
|
|
final int halfIconSize = dp.iconSizePx / 2;
|
|
float primaryDimension = orientationHandler
|
|
.getPrimaryValue(dp.availableWidthPx, dp.availableHeightPx);
|
|
float secondaryDimension = orientationHandler
|
|
.getSecondaryValue(dp.availableWidthPx, dp.availableHeightPx);
|
|
final float targetX = primaryDimension / 2f;
|
|
final float targetY = secondaryDimension - dp.hotseatBarSizePx;
|
|
return new RectF(targetX - halfIconSize, targetY - halfIconSize,
|
|
targetX + halfIconSize, targetY + halfIconSize);
|
|
}
|
|
|
|
/**
|
|
* Closing animator that animates the window into its final location on the workspace.
|
|
*/
|
|
private RectFSpringAnim getClosingWindowAnimators(AnimatorSet animation,
|
|
RemoteAnimationTargetCompat[] targets, View launcherView, PointF velocityPxPerS,
|
|
RectF closingWindowStartRect, float startWindowCornerRadius) {
|
|
FloatingIconView floatingIconView = null;
|
|
FloatingWidgetView floatingWidget = null;
|
|
RectF targetRect = new RectF();
|
|
|
|
RemoteAnimationTargetCompat runningTaskTarget = null;
|
|
boolean isTransluscent = false;
|
|
for (RemoteAnimationTargetCompat target : targets) {
|
|
if (target.mode == MODE_CLOSING) {
|
|
runningTaskTarget = target;
|
|
isTransluscent = runningTaskTarget.isTranslucent;
|
|
break;
|
|
}
|
|
}
|
|
|
|
// Get floating view and target rect.
|
|
if (launcherView instanceof LauncherAppWidgetHostView) {
|
|
Size windowSize = new Size(mDeviceProfile.availableWidthPx,
|
|
mDeviceProfile.availableHeightPx);
|
|
int fallbackBackgroundColor =
|
|
FloatingWidgetView.getDefaultBackgroundColor(mLauncher, runningTaskTarget);
|
|
floatingWidget = FloatingWidgetView.getFloatingWidgetView(mLauncher,
|
|
(LauncherAppWidgetHostView) launcherView, targetRect, windowSize,
|
|
mDeviceProfile.isMultiWindowMode ? 0 : getWindowCornerRadius(mLauncher),
|
|
isTransluscent, fallbackBackgroundColor);
|
|
} else if (launcherView != null) {
|
|
floatingIconView = getFloatingIconView(mLauncher, launcherView,
|
|
true /* hideOriginal */, targetRect, false /* isOpening */);
|
|
} else {
|
|
targetRect.set(getDefaultWindowTargetRect());
|
|
}
|
|
|
|
RectFSpringAnim anim = new RectFSpringAnim(closingWindowStartRect, targetRect, mLauncher,
|
|
mDeviceProfile);
|
|
|
|
// Hook up floating views to the closing window animators.
|
|
final int rotationChange = getRotationChange(targets);
|
|
Rect windowTargetBounds = getWindowTargetBounds(targets, rotationChange);
|
|
if (floatingIconView != null) {
|
|
anim.addAnimatorListener(floatingIconView);
|
|
floatingIconView.setOnTargetChangeListener(anim::onTargetPositionChanged);
|
|
floatingIconView.setFastFinishRunnable(anim::end);
|
|
FloatingIconView finalFloatingIconView = floatingIconView;
|
|
|
|
// We want the window alpha to be 0 once this threshold is met, so that the
|
|
// FolderIconView can be seen morphing into the icon shape.
|
|
final float windowAlphaThreshold = 1f - SHAPE_PROGRESS_DURATION;
|
|
|
|
RectFSpringAnim.OnUpdateListener runner = new SpringAnimRunner(targets, targetRect,
|
|
windowTargetBounds, startWindowCornerRadius) {
|
|
@Override
|
|
public void onUpdate(RectF currentRectF, float progress) {
|
|
finalFloatingIconView.update(1f, 255 /* fgAlpha */, currentRectF, progress,
|
|
windowAlphaThreshold, getCornerRadius(progress), false);
|
|
|
|
super.onUpdate(currentRectF, progress);
|
|
}
|
|
};
|
|
anim.addOnUpdateListener(runner);
|
|
} else if (floatingWidget != null) {
|
|
anim.addAnimatorListener(floatingWidget);
|
|
floatingWidget.setOnTargetChangeListener(anim::onTargetPositionChanged);
|
|
floatingWidget.setFastFinishRunnable(anim::end);
|
|
|
|
final float floatingWidgetAlpha = isTransluscent ? 0 : 1;
|
|
FloatingWidgetView finalFloatingWidget = floatingWidget;
|
|
RectFSpringAnim.OnUpdateListener runner = new SpringAnimRunner(targets, targetRect,
|
|
windowTargetBounds, startWindowCornerRadius) {
|
|
@Override
|
|
public void onUpdate(RectF currentRectF, float progress) {
|
|
final float fallbackBackgroundAlpha =
|
|
1 - mapBoundToRange(progress, 0.8f, 1, 0, 1, EXAGGERATED_EASE);
|
|
final float foregroundAlpha =
|
|
mapBoundToRange(progress, 0.5f, 1, 0, 1, EXAGGERATED_EASE);
|
|
finalFloatingWidget.update(currentRectF, floatingWidgetAlpha, foregroundAlpha,
|
|
fallbackBackgroundAlpha, 1 - progress);
|
|
|
|
super.onUpdate(currentRectF, progress);
|
|
}
|
|
};
|
|
anim.addOnUpdateListener(runner);
|
|
} else {
|
|
// If no floating icon or widget is present, animate the to the default window
|
|
// target rect.
|
|
anim.addOnUpdateListener(new SpringAnimRunner(
|
|
targets, targetRect, windowTargetBounds, startWindowCornerRadius));
|
|
}
|
|
|
|
// Use a fixed velocity to start the animation.
|
|
animation.addListener(new AnimatorListenerAdapter() {
|
|
@Override
|
|
public void onAnimationStart(Animator animation) {
|
|
anim.start(mLauncher, mDeviceProfile, velocityPxPerS);
|
|
}
|
|
});
|
|
return anim;
|
|
}
|
|
|
|
/**
|
|
* Closing window animator that moves the window down and offscreen.
|
|
*/
|
|
private Animator getFallbackClosingWindowAnimators(RemoteAnimationTargetCompat[] appTargets) {
|
|
final int rotationChange = getRotationChange(appTargets);
|
|
SurfaceTransactionApplier surfaceApplier = new SurfaceTransactionApplier(mDragLayer);
|
|
Matrix matrix = new Matrix();
|
|
Point tmpPos = new Point();
|
|
Rect tmpRect = new Rect();
|
|
ValueAnimator closingAnimator = ValueAnimator.ofFloat(0, 1);
|
|
int duration = CLOSING_TRANSITION_DURATION_MS;
|
|
float windowCornerRadius = mDeviceProfile.isMultiWindowMode
|
|
? 0 : getWindowCornerRadius(mLauncher);
|
|
float startShadowRadius = areAllTargetsTranslucent(appTargets) ? 0 : mMaxShadowRadius;
|
|
closingAnimator.setDuration(duration);
|
|
closingAnimator.addUpdateListener(new MultiValueUpdateListener() {
|
|
FloatProp mDy = new FloatProp(0, mClosingWindowTransY, 0, duration, DEACCEL_1_7);
|
|
FloatProp mScale = new FloatProp(1f, 1f, 0, duration, DEACCEL_1_7);
|
|
FloatProp mAlpha = new FloatProp(1f, 0f, 25, 125, LINEAR);
|
|
FloatProp mShadowRadius = new FloatProp(startShadowRadius, 0, 0, duration,
|
|
DEACCEL_1_7);
|
|
|
|
@Override
|
|
public void onUpdate(float percent, boolean initOnly) {
|
|
SurfaceParams[] params = new SurfaceParams[appTargets.length];
|
|
for (int i = appTargets.length - 1; i >= 0; i--) {
|
|
RemoteAnimationTargetCompat target = appTargets[i];
|
|
SurfaceParams.Builder builder = new SurfaceParams.Builder(target.leash);
|
|
|
|
if (target.localBounds != null) {
|
|
tmpPos.set(target.localBounds.left, target.localBounds.top);
|
|
} else {
|
|
tmpPos.set(target.position.x, target.position.y);
|
|
}
|
|
|
|
final Rect crop = new Rect(target.screenSpaceBounds);
|
|
crop.offsetTo(0, 0);
|
|
if (target.mode == MODE_CLOSING) {
|
|
tmpRect.set(target.screenSpaceBounds);
|
|
if ((rotationChange % 2) != 0) {
|
|
final int right = crop.right;
|
|
crop.right = crop.bottom;
|
|
crop.bottom = right;
|
|
}
|
|
matrix.setScale(mScale.value, mScale.value,
|
|
tmpRect.centerX(),
|
|
tmpRect.centerY());
|
|
matrix.postTranslate(0, mDy.value);
|
|
matrix.postTranslate(tmpPos.x, tmpPos.y);
|
|
builder.withMatrix(matrix)
|
|
.withWindowCrop(crop)
|
|
.withAlpha(mAlpha.value)
|
|
.withCornerRadius(windowCornerRadius)
|
|
.withShadowRadius(mShadowRadius.value);
|
|
} else if (target.mode == MODE_OPENING) {
|
|
matrix.setTranslate(tmpPos.x, tmpPos.y);
|
|
builder.withMatrix(matrix)
|
|
.withWindowCrop(crop)
|
|
.withAlpha(1f);
|
|
}
|
|
params[i] = builder.build();
|
|
}
|
|
surfaceApplier.scheduleApply(params);
|
|
}
|
|
});
|
|
|
|
return closingAnimator;
|
|
}
|
|
|
|
private boolean supportsSSplashScreen() {
|
|
return hasControlRemoteAppTransitionPermission()
|
|
&& Utilities.ATLEAST_S
|
|
&& ENABLE_SHELL_STARTING_SURFACE;
|
|
}
|
|
|
|
/**
|
|
* Returns true if we have permission to control remote app transisions
|
|
*/
|
|
public boolean hasControlRemoteAppTransitionPermission() {
|
|
return mLauncher.checkSelfPermission(CONTROL_REMOTE_APP_TRANSITION_PERMISSION)
|
|
== PackageManager.PERMISSION_GRANTED;
|
|
}
|
|
|
|
private void addCujInstrumentation(Animator anim, int cuj) {
|
|
anim.addListener(new AnimationSuccessListener() {
|
|
@Override
|
|
public void onAnimationStart(Animator animation) {
|
|
mDragLayer.getViewTreeObserver().addOnDrawListener(
|
|
new ViewTreeObserver.OnDrawListener() {
|
|
boolean mHandled = false;
|
|
|
|
@Override
|
|
public void onDraw() {
|
|
if (mHandled) {
|
|
return;
|
|
}
|
|
mHandled = true;
|
|
|
|
InteractionJankMonitorWrapper.begin(mDragLayer, cuj);
|
|
|
|
mDragLayer.post(() ->
|
|
mDragLayer.getViewTreeObserver().removeOnDrawListener(
|
|
this));
|
|
}
|
|
});
|
|
super.onAnimationStart(animation);
|
|
}
|
|
|
|
@Override
|
|
public void onAnimationCancel(Animator animation) {
|
|
super.onAnimationCancel(animation);
|
|
InteractionJankMonitorWrapper.cancel(cuj);
|
|
}
|
|
|
|
@Override
|
|
public void onAnimationSuccess(Animator animator) {
|
|
InteractionJankMonitorWrapper.end(cuj);
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Creates the {@link RectFSpringAnim} and {@link AnimatorSet} required to animate
|
|
* the transition.
|
|
*/
|
|
public Pair<RectFSpringAnim, AnimatorSet> createWallpaperOpenAnimations(
|
|
RemoteAnimationTargetCompat[] appTargets,
|
|
RemoteAnimationTargetCompat[] wallpaperTargets,
|
|
boolean fromUnlock,
|
|
RectF startRect,
|
|
float startWindowCornerRadius) {
|
|
AnimatorSet anim = null;
|
|
RectFSpringAnim rectFSpringAnim = null;
|
|
|
|
RemoteAnimationProvider provider = mRemoteAnimationProvider;
|
|
if (provider != null) {
|
|
anim = provider.createWindowAnimation(appTargets, wallpaperTargets);
|
|
}
|
|
|
|
if (anim == null) {
|
|
anim = new AnimatorSet();
|
|
|
|
final boolean launcherIsForceInvisibleOrOpening = mLauncher.isForceInvisible()
|
|
|| launcherIsATargetWithMode(appTargets, MODE_OPENING);
|
|
|
|
View launcherView = findLauncherView(appTargets);
|
|
boolean playFallBackAnimation = (launcherView == null
|
|
&& launcherIsForceInvisibleOrOpening)
|
|
|| mLauncher.getWorkspace().isOverlayShown()
|
|
|| hasMultipleTargetsWithMode(appTargets, MODE_CLOSING);
|
|
|
|
boolean playWorkspaceReveal = true;
|
|
boolean skipAllAppsScale = false;
|
|
if (fromUnlock) {
|
|
anim.play(getUnlockWindowAnimator(appTargets, wallpaperTargets));
|
|
} else if (ENABLE_BACK_SWIPE_HOME_ANIMATION.get()
|
|
&& !playFallBackAnimation) {
|
|
// Use a fixed velocity to start the animation.
|
|
float velocityPxPerS = DynamicResource.provider(mLauncher)
|
|
.getDimension(R.dimen.unlock_staggered_velocity_dp_per_s);
|
|
PointF velocity = new PointF(0, -velocityPxPerS);
|
|
rectFSpringAnim = getClosingWindowAnimators(
|
|
anim, appTargets, launcherView, velocity, startRect,
|
|
startWindowCornerRadius);
|
|
if (!mLauncher.isInState(LauncherState.ALL_APPS)) {
|
|
anim.play(new StaggeredWorkspaceAnim(mLauncher, velocity.y,
|
|
true /* animateOverviewScrim */, launcherView).getAnimators());
|
|
|
|
if (!areAllTargetsTranslucent(appTargets)) {
|
|
anim.play(ObjectAnimator.ofFloat(mLauncher.getDepthController(), DEPTH,
|
|
BACKGROUND_APP.getDepth(mLauncher), NORMAL.getDepth(mLauncher)));
|
|
}
|
|
|
|
// We play StaggeredWorkspaceAnim as a part of the closing window animation.
|
|
playWorkspaceReveal = false;
|
|
} else {
|
|
// Skip scaling all apps, otherwise FloatingIconView will get wrong
|
|
// layout bounds.
|
|
skipAllAppsScale = true;
|
|
}
|
|
} else {
|
|
anim.play(getFallbackClosingWindowAnimators(appTargets));
|
|
}
|
|
|
|
// Normally, we run the launcher content animation when we are transitioning
|
|
// home, but if home is already visible, then we don't want to animate the
|
|
// contents of launcher unless we know that we are animating home as a result
|
|
// of the home button press with quickstep, which will result in launcher being
|
|
// started on touch down, prior to the animation home (and won't be in the
|
|
// targets list because it is already visible). In that case, we force
|
|
// invisibility on touch down, and only reset it after the animation to home
|
|
// is initialized.
|
|
if (launcherIsForceInvisibleOrOpening) {
|
|
addCujInstrumentation(
|
|
anim, InteractionJankMonitorWrapper.CUJ_APP_CLOSE_TO_HOME);
|
|
// Only register the content animation for cancellation when state changes
|
|
mLauncher.getStateManager().setCurrentAnimation(anim);
|
|
|
|
if (mLauncher.isInState(LauncherState.ALL_APPS)) {
|
|
Pair<AnimatorSet, Runnable> contentAnimator =
|
|
getLauncherContentAnimator(false, LAUNCHER_RESUME_START_DELAY,
|
|
skipAllAppsScale);
|
|
anim.play(contentAnimator.first);
|
|
anim.addListener(new AnimatorListenerAdapter() {
|
|
@Override
|
|
public void onAnimationEnd(Animator animation) {
|
|
contentAnimator.second.run();
|
|
}
|
|
});
|
|
} else {
|
|
if (playWorkspaceReveal) {
|
|
anim.play(new WorkspaceRevealAnim(mLauncher, false).getAnimators());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return new Pair(rectFSpringAnim, anim);
|
|
}
|
|
|
|
/**
|
|
* Remote animation runner for animation from the app to Launcher, including recents.
|
|
*/
|
|
protected class WallpaperOpenLauncherAnimationRunner implements RemoteAnimationFactory {
|
|
|
|
private final Handler mHandler;
|
|
private final boolean mFromUnlock;
|
|
|
|
public WallpaperOpenLauncherAnimationRunner(Handler handler, boolean fromUnlock) {
|
|
mHandler = handler;
|
|
mFromUnlock = fromUnlock;
|
|
}
|
|
|
|
@Override
|
|
public void onCreateAnimation(int transit,
|
|
RemoteAnimationTargetCompat[] appTargets,
|
|
RemoteAnimationTargetCompat[] wallpaperTargets,
|
|
RemoteAnimationTargetCompat[] nonAppTargets,
|
|
LauncherAnimationRunner.AnimationResult result) {
|
|
if (mLauncher.isDestroyed()) {
|
|
AnimatorSet anim = new AnimatorSet();
|
|
anim.play(getFallbackClosingWindowAnimators(appTargets));
|
|
result.setAnimation(anim, mLauncher.getApplicationContext());
|
|
return;
|
|
}
|
|
|
|
if (mLauncher.hasSomeInvisibleFlag(PENDING_INVISIBLE_BY_WALLPAPER_ANIMATION)) {
|
|
mLauncher.addForceInvisibleFlag(INVISIBLE_BY_PENDING_FLAGS);
|
|
mLauncher.getStateManager().moveToRestState();
|
|
}
|
|
|
|
Pair<RectFSpringAnim, AnimatorSet> pair = createWallpaperOpenAnimations(
|
|
appTargets, wallpaperTargets, mFromUnlock,
|
|
new RectF(0, 0, mDeviceProfile.widthPx, mDeviceProfile.heightPx),
|
|
QuickStepContract.getWindowCornerRadius(mLauncher));
|
|
|
|
mLauncher.clearForceInvisibleFlag(INVISIBLE_ALL);
|
|
result.setAnimation(pair.second, mLauncher);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Remote animation runner for animation to launch an app.
|
|
*/
|
|
private class AppLaunchAnimationRunner implements RemoteAnimationFactory {
|
|
|
|
private final View mV;
|
|
private final RunnableList mOnEndCallback;
|
|
|
|
AppLaunchAnimationRunner(View v, RunnableList onEndCallback) {
|
|
mV = v;
|
|
mOnEndCallback = onEndCallback;
|
|
}
|
|
|
|
@Override
|
|
public void onCreateAnimation(int transit,
|
|
RemoteAnimationTargetCompat[] appTargets,
|
|
RemoteAnimationTargetCompat[] wallpaperTargets,
|
|
RemoteAnimationTargetCompat[] nonAppTargets,
|
|
LauncherAnimationRunner.AnimationResult result) {
|
|
AnimatorSet anim = new AnimatorSet();
|
|
boolean launcherClosing =
|
|
launcherIsATargetWithMode(appTargets, MODE_CLOSING);
|
|
|
|
final boolean launchingFromWidget = mV instanceof LauncherAppWidgetHostView;
|
|
final boolean launchingFromRecents = isLaunchingFromRecents(mV, appTargets);
|
|
final boolean skipFirstFrame;
|
|
if (launchingFromWidget) {
|
|
composeWidgetLaunchAnimator(anim, (LauncherAppWidgetHostView) mV, appTargets,
|
|
wallpaperTargets, nonAppTargets);
|
|
addCujInstrumentation(
|
|
anim, InteractionJankMonitorWrapper.CUJ_APP_LAUNCH_FROM_WIDGET);
|
|
skipFirstFrame = true;
|
|
} else if (launchingFromRecents) {
|
|
composeRecentsLaunchAnimator(anim, mV, appTargets, wallpaperTargets, nonAppTargets,
|
|
launcherClosing);
|
|
addCujInstrumentation(
|
|
anim, InteractionJankMonitorWrapper.CUJ_APP_LAUNCH_FROM_RECENTS);
|
|
skipFirstFrame = true;
|
|
} else {
|
|
composeIconLaunchAnimator(anim, mV, appTargets, wallpaperTargets, nonAppTargets,
|
|
launcherClosing);
|
|
addCujInstrumentation(anim, InteractionJankMonitorWrapper.CUJ_APP_LAUNCH_FROM_ICON);
|
|
skipFirstFrame = false;
|
|
}
|
|
|
|
if (launcherClosing) {
|
|
anim.addListener(mForceInvisibleListener);
|
|
}
|
|
|
|
result.setAnimation(anim, mLauncher, mOnEndCallback::executeAllAndDestroy,
|
|
skipFirstFrame);
|
|
}
|
|
|
|
@Override
|
|
public void onAnimationCancelled() {
|
|
mOnEndCallback.executeAllAndDestroy();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Class that holds all the variables for the app open animation.
|
|
*/
|
|
static class AnimOpenProperties {
|
|
|
|
public final int cropCenterXStart;
|
|
public final int cropCenterYStart;
|
|
public final int cropWidthStart;
|
|
public final int cropHeightStart;
|
|
|
|
public final int cropCenterXEnd;
|
|
public final int cropCenterYEnd;
|
|
public final int cropWidthEnd;
|
|
public final int cropHeightEnd;
|
|
|
|
public final float dX;
|
|
public final float dY;
|
|
|
|
public final float initialAppIconScale;
|
|
public final float finalAppIconScale;
|
|
|
|
public final float iconAlphaStart;
|
|
|
|
AnimOpenProperties(Resources r, DeviceProfile dp, Rect windowTargetBounds,
|
|
RectF launcherIconBounds, View view, int dragLayerLeft, int dragLayerTop,
|
|
boolean hasSplashScreen, boolean hasDifferentAppIcon) {
|
|
// Scale the app icon to take up the entire screen. This simplifies the math when
|
|
// animating the app window position / scale.
|
|
float smallestSize = Math.min(windowTargetBounds.height(), windowTargetBounds.width());
|
|
float maxScaleX = smallestSize / launcherIconBounds.width();
|
|
float maxScaleY = smallestSize / launcherIconBounds.height();
|
|
float iconStartScale = 1f;
|
|
if (view instanceof BubbleTextView && !(view.getParent() instanceof DeepShortcutView)) {
|
|
Drawable dr = ((BubbleTextView) view).getIcon();
|
|
if (dr instanceof FastBitmapDrawable) {
|
|
iconStartScale = ((FastBitmapDrawable) dr).getAnimatedScale();
|
|
}
|
|
}
|
|
|
|
initialAppIconScale = iconStartScale;
|
|
finalAppIconScale = Math.max(maxScaleX, maxScaleY);
|
|
|
|
// Animate the app icon to the center of the window bounds in screen coordinates.
|
|
float centerX = windowTargetBounds.centerX() - dragLayerLeft;
|
|
float centerY = windowTargetBounds.centerY() - dragLayerTop;
|
|
|
|
dX = centerX - launcherIconBounds.centerX();
|
|
dY = centerY - launcherIconBounds.centerY();
|
|
|
|
iconAlphaStart = hasSplashScreen && !hasDifferentAppIcon ? 0 : 1f;
|
|
|
|
final int windowIconSize = ResourceUtils.getDimenByName("starting_surface_icon_size",
|
|
r, 108);
|
|
|
|
cropCenterXStart = windowTargetBounds.centerX();
|
|
cropCenterYStart = windowTargetBounds.centerY();
|
|
|
|
cropWidthStart = windowIconSize;
|
|
cropHeightStart = windowIconSize;
|
|
|
|
cropWidthEnd = windowTargetBounds.width();
|
|
cropHeightEnd = windowTargetBounds.height();
|
|
|
|
cropCenterXEnd = windowTargetBounds.centerX();
|
|
cropCenterYEnd = windowTargetBounds.centerY();
|
|
}
|
|
}
|
|
|
|
private static class StartingWindowListener extends IStartingWindowListener.Stub {
|
|
private QuickstepTransitionManager mTransitionManager;
|
|
|
|
public void setTransitionManager(QuickstepTransitionManager transitionManager) {
|
|
mTransitionManager = transitionManager;
|
|
}
|
|
|
|
@Override
|
|
public void onTaskLaunching(int taskId, int supportedType, int color) {
|
|
mTransitionManager.mTaskStartParams.put(taskId, Pair.create(supportedType, color));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* RectFSpringAnim update listener to be used for app to home animation.
|
|
*/
|
|
private class SpringAnimRunner implements RectFSpringAnim.OnUpdateListener {
|
|
private final RemoteAnimationTargetCompat[] mAppTargets;
|
|
private final Matrix mMatrix = new Matrix();
|
|
private final Point mTmpPos = new Point();
|
|
private final Rect mCurrentRect = new Rect();
|
|
private final float mStartRadius;
|
|
private final float mEndRadius;
|
|
private final SurfaceTransactionApplier mSurfaceApplier;
|
|
private final Rect mWindowTargetBounds = new Rect();
|
|
|
|
private final Rect mTmpRect = new Rect();
|
|
|
|
SpringAnimRunner(RemoteAnimationTargetCompat[] appTargets, RectF targetRect,
|
|
Rect windowTargetBounds, float startWindowCornerRadius) {
|
|
mAppTargets = appTargets;
|
|
mStartRadius = startWindowCornerRadius;
|
|
mEndRadius = Math.max(1, targetRect.width()) / 2f;
|
|
mSurfaceApplier = new SurfaceTransactionApplier(mDragLayer);
|
|
mWindowTargetBounds.set(windowTargetBounds);
|
|
}
|
|
|
|
public float getCornerRadius(float progress) {
|
|
return Utilities.mapRange(progress, mStartRadius, mEndRadius);
|
|
}
|
|
|
|
@Override
|
|
public void onUpdate(RectF currentRectF, float progress) {
|
|
SurfaceParams[] params = new SurfaceParams[mAppTargets.length];
|
|
for (int i = mAppTargets.length - 1; i >= 0; i--) {
|
|
RemoteAnimationTargetCompat target = mAppTargets[i];
|
|
SurfaceParams.Builder builder = new SurfaceParams.Builder(target.leash);
|
|
|
|
if (target.localBounds != null) {
|
|
mTmpPos.set(target.localBounds.left, target.localBounds.top);
|
|
} else {
|
|
mTmpPos.set(target.position.x, target.position.y);
|
|
}
|
|
|
|
if (target.mode == MODE_CLOSING) {
|
|
currentRectF.round(mCurrentRect);
|
|
|
|
// Scale the target window to match the currentRectF.
|
|
final float scale;
|
|
|
|
// We need to infer the crop (we crop the window to match the currentRectF).
|
|
if (mWindowTargetBounds.height() > mWindowTargetBounds.width()) {
|
|
scale = Math.min(1f, currentRectF.width() / mWindowTargetBounds.width());
|
|
|
|
int unscaledHeight = (int) (mCurrentRect.height() * (1f / scale));
|
|
int croppedHeight = mWindowTargetBounds.height() - unscaledHeight;
|
|
mTmpRect.set(0, 0, mWindowTargetBounds.width(),
|
|
mWindowTargetBounds.height() - croppedHeight);
|
|
} else {
|
|
scale = Math.min(1f, currentRectF.height() / mWindowTargetBounds.height());
|
|
|
|
int unscaledWidth = (int) (mCurrentRect.width() * (1f / scale));
|
|
int croppedWidth = mWindowTargetBounds.width() - unscaledWidth;
|
|
mTmpRect.set(0, 0, mWindowTargetBounds.width() - croppedWidth,
|
|
mWindowTargetBounds.height());
|
|
}
|
|
|
|
// Match size and position of currentRect.
|
|
mMatrix.setScale(scale, scale);
|
|
mMatrix.postTranslate(mCurrentRect.left, mCurrentRect.top);
|
|
|
|
builder.withMatrix(mMatrix)
|
|
.withWindowCrop(mTmpRect)
|
|
.withAlpha(getWindowAlpha(progress))
|
|
.withCornerRadius(getCornerRadius(progress) / scale);
|
|
} else if (target.mode == MODE_OPENING) {
|
|
mMatrix.setTranslate(mTmpPos.x, mTmpPos.y);
|
|
builder.withMatrix(mMatrix)
|
|
.withAlpha(1f);
|
|
}
|
|
params[i] = builder.build();
|
|
}
|
|
mSurfaceApplier.scheduleApply(params);
|
|
}
|
|
|
|
protected float getWindowAlpha(float progress) {
|
|
// Alpha interpolates between [1, 0] between progress values [start, end]
|
|
final float start = 0f;
|
|
final float end = 0.85f;
|
|
|
|
if (progress <= start) {
|
|
return 1f;
|
|
}
|
|
if (progress >= end) {
|
|
return 0f;
|
|
}
|
|
return Utilities.mapToRange(progress, start, end, 1, 0, ACCEL_1_5);
|
|
}
|
|
}
|
|
|
|
private static class MyDepthController extends DepthController {
|
|
MyDepthController(Launcher l) {
|
|
super(l);
|
|
setCrossWindowBlursEnabled(
|
|
CrossWindowBlurListeners.getInstance().isCrossWindowBlurEnabled());
|
|
}
|
|
|
|
@Override
|
|
public void setSurface(SurfaceControl surface) {
|
|
super.setSurface(surface);
|
|
}
|
|
}
|
|
}
|