2019-01-16 18:51:53 -08:00
|
|
|
/*
|
|
|
|
|
* 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 com.android.launcher3.anim.Interpolators.AGGRESSIVE_EASE;
|
|
|
|
|
import static com.android.launcher3.anim.Interpolators.LINEAR;
|
2019-01-29 16:42:26 -08:00
|
|
|
import static com.android.quickstep.TaskViewUtils.findTaskViewToLaunch;
|
2019-01-16 18:51:53 -08:00
|
|
|
|
|
|
|
|
import android.animation.AnimatorSet;
|
|
|
|
|
import android.animation.ObjectAnimator;
|
|
|
|
|
import android.content.Context;
|
|
|
|
|
import android.view.View;
|
|
|
|
|
|
2019-09-10 15:19:05 -07:00
|
|
|
import androidx.annotation.NonNull;
|
|
|
|
|
import androidx.annotation.Nullable;
|
|
|
|
|
|
2020-09-14 23:25:37 -07:00
|
|
|
import com.android.quickstep.TaskViewUtils;
|
2019-01-16 18:51:53 -08:00
|
|
|
import com.android.quickstep.views.RecentsView;
|
|
|
|
|
import com.android.systemui.shared.system.RemoteAnimationTargetCompat;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* A {@link QuickstepAppTransitionManagerImpl} that also implements recents transitions from
|
|
|
|
|
* {@link RecentsView}.
|
|
|
|
|
*/
|
|
|
|
|
public final class LauncherAppTransitionManagerImpl extends QuickstepAppTransitionManagerImpl {
|
|
|
|
|
|
|
|
|
|
public LauncherAppTransitionManagerImpl(Context context) {
|
|
|
|
|
super(context);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
protected boolean isLaunchingFromRecents(@NonNull View v,
|
|
|
|
|
@Nullable RemoteAnimationTargetCompat[] targets) {
|
|
|
|
|
return mLauncher.getStateManager().getState().overviewUi
|
2020-09-14 23:25:37 -07:00
|
|
|
&& findTaskViewToLaunch(mLauncher.getOverviewPanel(), v, targets) != null;
|
2019-01-16 18:51:53 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
protected void composeRecentsLaunchAnimator(@NonNull AnimatorSet anim, @NonNull View v,
|
2019-09-10 15:19:05 -07:00
|
|
|
@NonNull RemoteAnimationTargetCompat[] appTargets,
|
|
|
|
|
@NonNull RemoteAnimationTargetCompat[] wallpaperTargets, boolean launcherClosing) {
|
2020-09-14 23:25:37 -07:00
|
|
|
TaskViewUtils.composeRecentsLaunchAnimator(anim, v, appTargets, wallpaperTargets,
|
|
|
|
|
launcherClosing, mLauncher.getStateManager(), mLauncher.getOverviewPanel(),
|
|
|
|
|
mLauncher.getDepthController());
|
2019-01-16 18:51:53 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
protected Runnable composeViewContentAnimator(@NonNull AnimatorSet anim, float[] alphas,
|
|
|
|
|
float[] trans) {
|
|
|
|
|
RecentsView overview = mLauncher.getOverviewPanel();
|
|
|
|
|
ObjectAnimator alpha = ObjectAnimator.ofFloat(overview,
|
|
|
|
|
RecentsView.CONTENT_ALPHA, alphas);
|
|
|
|
|
alpha.setDuration(CONTENT_ALPHA_DURATION);
|
|
|
|
|
alpha.setInterpolator(LINEAR);
|
|
|
|
|
anim.play(alpha);
|
2019-06-05 12:07:07 -07:00
|
|
|
overview.setFreezeViewVisibility(true);
|
2019-01-16 18:51:53 -08:00
|
|
|
|
|
|
|
|
ObjectAnimator transY = ObjectAnimator.ofFloat(overview, View.TRANSLATION_Y, trans);
|
|
|
|
|
transY.setInterpolator(AGGRESSIVE_EASE);
|
|
|
|
|
transY.setDuration(CONTENT_TRANSLATION_DURATION);
|
|
|
|
|
anim.play(transY);
|
|
|
|
|
|
2019-06-05 12:07:07 -07:00
|
|
|
return () -> {
|
|
|
|
|
overview.setFreezeViewVisibility(false);
|
2020-04-30 17:04:39 -07:00
|
|
|
overview.setTranslationY(0);
|
2019-06-05 12:07:07 -07:00
|
|
|
mLauncher.getStateManager().reapplyState();
|
|
|
|
|
};
|
2019-01-16 18:51:53 -08:00
|
|
|
}
|
|
|
|
|
}
|