AppWindowAnimationHelper and TransformParams were being very tightly intertwined, to the point that you really had to understand subtle nuances of both in order to get a desired behavior. This makes making changes really difficult, because there are lots of "traps" to know about and navigate. To help alleviate this burden, cleaned up some of these traps and give AWAH and TP distinct roles: - A caller who needs to animate an app window needs both AWAH and TP. TP defines specific parameters of how the app window should be controlled, and AWAH simply reads from TP in order to provide the desired behavior. - Only the caller should write to TP; AWAH should no longer change anything in a TP that is passed to it. For instance, instead of repurposing TP.currentRect, AWAH now has its own mCurrentRect to update based on passed parameters. - TP is a very basic class that just holds various values that callers can set one at a time. The order should not matter (setting one value will never set another one), and defaults make sense. - Commented the setter methods in TP so developers shouldn't have to follow the code to see how they are used. Bug: 149870691 Change-Id: Ia48f4453c29549271a3fc6538128a1a77439e015
214 lines
9.8 KiB
Java
214 lines
9.8 KiB
Java
/*
|
|
* 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;
|
|
|
|
import static com.android.launcher3.anim.Interpolators.LINEAR;
|
|
import static com.android.launcher3.anim.Interpolators.TOUCH_RESPONSE_INTERPOLATOR;
|
|
import static com.android.launcher3.config.FeatureFlags.ENABLE_QUICKSTEP_LIVE_TILE;
|
|
import static com.android.systemui.shared.system.RemoteAnimationTargetCompat.MODE_OPENING;
|
|
|
|
import android.animation.Animator;
|
|
import android.animation.AnimatorListenerAdapter;
|
|
import android.animation.ValueAnimator;
|
|
import android.content.ComponentName;
|
|
import android.graphics.RectF;
|
|
import android.view.View;
|
|
|
|
import com.android.launcher3.BaseActivity;
|
|
import com.android.launcher3.BaseDraggingActivity;
|
|
import com.android.launcher3.ItemInfo;
|
|
import com.android.launcher3.Utilities;
|
|
import com.android.quickstep.util.AppWindowAnimationHelper;
|
|
import com.android.quickstep.util.MultiValueUpdateListener;
|
|
import com.android.quickstep.views.RecentsView;
|
|
import com.android.quickstep.views.TaskView;
|
|
import com.android.systemui.shared.recents.model.Task;
|
|
import com.android.systemui.shared.system.RemoteAnimationTargetCompat;
|
|
import com.android.systemui.shared.system.SyncRtSurfaceTransactionApplierCompat;
|
|
import com.android.systemui.shared.system.SyncRtSurfaceTransactionApplierCompat.SurfaceParams;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Collections;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Utility class for helpful methods related to {@link TaskView} objects and their tasks.
|
|
*/
|
|
public final class TaskViewUtils {
|
|
|
|
private TaskViewUtils() {}
|
|
|
|
/**
|
|
* Try to find a TaskView that corresponds with the component of the launched view.
|
|
*
|
|
* If this method returns a non-null TaskView, it will be used in composeRecentsLaunchAnimation.
|
|
* Otherwise, we will assume we are using a normal app transition, but it's possible that the
|
|
* opening remote target (which we don't get until onAnimationStart) will resolve to a TaskView.
|
|
*/
|
|
public static TaskView findTaskViewToLaunch(
|
|
BaseDraggingActivity activity, View v, RemoteAnimationTargetCompat[] targets) {
|
|
RecentsView recentsView = activity.getOverviewPanel();
|
|
if (v instanceof TaskView) {
|
|
TaskView taskView = (TaskView) v;
|
|
return recentsView.isTaskViewVisible(taskView) ? taskView : null;
|
|
}
|
|
|
|
// It's possible that the launched view can still be resolved to a visible task view, check
|
|
// the task id of the opening task and see if we can find a match.
|
|
if (v.getTag() instanceof ItemInfo) {
|
|
ItemInfo itemInfo = (ItemInfo) v.getTag();
|
|
ComponentName componentName = itemInfo.getTargetComponent();
|
|
int userId = itemInfo.user.getIdentifier();
|
|
if (componentName != null) {
|
|
for (int i = 0; i < recentsView.getTaskViewCount(); i++) {
|
|
TaskView taskView = recentsView.getTaskViewAt(i);
|
|
if (recentsView.isTaskViewVisible(taskView)) {
|
|
Task.TaskKey key = taskView.getTask().key;
|
|
if (componentName.equals(key.getComponent()) && userId == key.userId) {
|
|
return taskView;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (targets == null) {
|
|
return null;
|
|
}
|
|
// Resolve the opening task id
|
|
int openingTaskId = -1;
|
|
for (RemoteAnimationTargetCompat target : targets) {
|
|
if (target.mode == MODE_OPENING) {
|
|
openingTaskId = target.taskId;
|
|
break;
|
|
}
|
|
}
|
|
|
|
// If there is no opening task id, fall back to the normal app icon launch animation
|
|
if (openingTaskId == -1) {
|
|
return null;
|
|
}
|
|
|
|
// If the opening task id is not currently visible in overview, then fall back to normal app
|
|
// icon launch animation
|
|
TaskView taskView = recentsView.getTaskView(openingTaskId);
|
|
if (taskView == null || !recentsView.isTaskViewVisible(taskView)) {
|
|
return null;
|
|
}
|
|
return taskView;
|
|
}
|
|
|
|
/**
|
|
* @return Animator that controls the window of the opening targets for the recents launch
|
|
* animation.
|
|
*/
|
|
public static ValueAnimator getRecentsWindowAnimator(TaskView v, boolean skipViewChanges,
|
|
RemoteAnimationTargetCompat[] appTargets,
|
|
RemoteAnimationTargetCompat[] wallpaperTargets, final AppWindowAnimationHelper inOutHelper) {
|
|
SyncRtSurfaceTransactionApplierCompat applier =
|
|
new SyncRtSurfaceTransactionApplierCompat(v);
|
|
final RemoteAnimationTargets targets =
|
|
new RemoteAnimationTargets(appTargets, wallpaperTargets, MODE_OPENING);
|
|
targets.addDependentTransactionApplier(applier);
|
|
AppWindowAnimationHelper.TransformParams params =
|
|
new AppWindowAnimationHelper.TransformParams()
|
|
.setSyncTransactionApplier(applier)
|
|
.setTargetSet(targets)
|
|
.setLauncherOnTop(true);
|
|
|
|
final RecentsView recentsView = v.getRecentsView();
|
|
final ValueAnimator appAnimator = ValueAnimator.ofFloat(0, 1);
|
|
appAnimator.setInterpolator(TOUCH_RESPONSE_INTERPOLATOR);
|
|
appAnimator.addUpdateListener(new MultiValueUpdateListener() {
|
|
|
|
// Defer fading out the view until after the app window gets faded in
|
|
final FloatProp mViewAlpha = new FloatProp(1f, 0f, 75, 75, LINEAR);
|
|
final FloatProp mTaskAlpha = new FloatProp(0f, 1f, 0, 75, LINEAR);
|
|
|
|
|
|
final RectF mThumbnailRect;
|
|
|
|
{
|
|
inOutHelper.setTaskAlphaCallback((t, alpha) -> mTaskAlpha.value);
|
|
|
|
inOutHelper.prepareAnimation(
|
|
BaseActivity.fromContext(v.getContext()).getDeviceProfile(),
|
|
true /* isOpening */);
|
|
inOutHelper.fromTaskThumbnailView(v.getThumbnail(), (RecentsView) v.getParent(),
|
|
targets.apps.length == 0 ? null : targets.apps[0]);
|
|
|
|
mThumbnailRect = new RectF(inOutHelper.getTargetRect());
|
|
mThumbnailRect.offset(-v.getTranslationX(), -v.getTranslationY());
|
|
Utilities.scaleRectFAboutCenter(mThumbnailRect, 1 / v.getScaleX());
|
|
}
|
|
|
|
@Override
|
|
public void onUpdate(float percent) {
|
|
// TODO: Take into account the current fullscreen progress for animating the insets
|
|
params.setProgress(1 - percent);
|
|
RectF taskBounds;
|
|
if (ENABLE_QUICKSTEP_LIVE_TILE.get()) {
|
|
List<SurfaceParams> surfaceParamsList = new ArrayList<>();
|
|
// Append the surface transform params for the app that's being opened.
|
|
Collections.addAll(surfaceParamsList, inOutHelper.computeSurfaceParams(params));
|
|
|
|
AppWindowAnimationHelper liveTileAnimationHelper =
|
|
v.getRecentsView().getClipAnimationHelper();
|
|
if (liveTileAnimationHelper != null) {
|
|
// Append the surface transform params for the live tile app.
|
|
AppWindowAnimationHelper.TransformParams liveTileParams =
|
|
v.getRecentsView().getLiveTileParams(true /* mightNeedToRefill */);
|
|
if (liveTileParams != null) {
|
|
SurfaceParams[] liveTileSurfaceParams =
|
|
liveTileAnimationHelper.computeSurfaceParams(liveTileParams);
|
|
if (liveTileSurfaceParams != null) {
|
|
Collections.addAll(surfaceParamsList, liveTileSurfaceParams);
|
|
}
|
|
}
|
|
}
|
|
// Apply surface transform using the surface params list.
|
|
AppWindowAnimationHelper.applySurfaceParams(params.getSyncTransactionApplier(),
|
|
surfaceParamsList.toArray(new SurfaceParams[surfaceParamsList.size()]));
|
|
// Get the task bounds for the app that's being opened after surface transform
|
|
// update.
|
|
taskBounds = inOutHelper.updateCurrentRect(params);
|
|
} else {
|
|
taskBounds = inOutHelper.applyTransform(params);
|
|
}
|
|
|
|
int taskIndex = recentsView.indexOfChild(v);
|
|
int centerTaskIndex = recentsView.getCurrentPage();
|
|
boolean parallaxCenterAndAdjacentTask = taskIndex != centerTaskIndex;
|
|
if (!skipViewChanges && parallaxCenterAndAdjacentTask) {
|
|
float scale = taskBounds.width() / mThumbnailRect.width();
|
|
v.setScaleX(scale);
|
|
v.setScaleY(scale);
|
|
v.setTranslationX(taskBounds.centerX() - mThumbnailRect.centerX());
|
|
v.setTranslationY(taskBounds.centerY() - mThumbnailRect.centerY());
|
|
v.setAlpha(mViewAlpha.value);
|
|
}
|
|
}
|
|
});
|
|
appAnimator.addListener(new AnimatorListenerAdapter() {
|
|
@Override
|
|
public void onAnimationEnd(Animator animation) {
|
|
targets.release();
|
|
}
|
|
});
|
|
return appAnimator;
|
|
}
|
|
}
|