2021-09-10 18:27:53 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2015 The Android Open Source Project
|
2019-10-17 12:05:38 -07:00
|
|
|
*
|
|
|
|
|
* 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.touch;
|
2017-12-12 12:02:29 -08:00
|
|
|
|
|
|
|
|
import static com.android.launcher3.LauncherState.ALL_APPS;
|
|
|
|
|
import static com.android.launcher3.LauncherState.NORMAL;
|
2022-05-02 10:34:17 +00:00
|
|
|
import static com.android.launcher3.anim.Interpolators.DECELERATED_EASE;
|
|
|
|
|
import static com.android.launcher3.anim.Interpolators.EMPHASIZED_ACCELERATE;
|
|
|
|
|
import static com.android.launcher3.anim.Interpolators.EMPHASIZED_DECELERATE;
|
2022-02-14 18:35:58 +00:00
|
|
|
import static com.android.launcher3.anim.Interpolators.FINAL_FRAME;
|
|
|
|
|
import static com.android.launcher3.anim.Interpolators.INSTANT;
|
2021-09-10 18:27:53 -07:00
|
|
|
import static com.android.launcher3.anim.Interpolators.LINEAR;
|
|
|
|
|
import static com.android.launcher3.states.StateAnimationConfig.ANIM_ALL_APPS_FADE;
|
2022-05-02 10:34:17 +00:00
|
|
|
import static com.android.launcher3.states.StateAnimationConfig.ANIM_DEPTH;
|
|
|
|
|
import static com.android.launcher3.states.StateAnimationConfig.ANIM_HOTSEAT_FADE;
|
2022-05-06 14:19:52 +00:00
|
|
|
import static com.android.launcher3.states.StateAnimationConfig.ANIM_HOTSEAT_SCALE;
|
2022-05-02 10:34:17 +00:00
|
|
|
import static com.android.launcher3.states.StateAnimationConfig.ANIM_HOTSEAT_TRANSLATE;
|
2021-09-10 18:27:53 -07:00
|
|
|
import static com.android.launcher3.states.StateAnimationConfig.ANIM_SCRIM_FADE;
|
2022-05-02 10:34:17 +00:00
|
|
|
import static com.android.launcher3.states.StateAnimationConfig.ANIM_VERTICAL_PROGRESS;
|
2022-05-13 21:54:23 +00:00
|
|
|
import static com.android.launcher3.states.StateAnimationConfig.ANIM_WORKSPACE_FADE;
|
2022-05-02 10:34:17 +00:00
|
|
|
import static com.android.launcher3.states.StateAnimationConfig.ANIM_WORKSPACE_SCALE;
|
2017-12-12 12:02:29 -08:00
|
|
|
|
|
|
|
|
import android.view.MotionEvent;
|
2021-09-10 18:27:53 -07:00
|
|
|
import android.view.animation.Interpolator;
|
2017-12-12 12:02:29 -08:00
|
|
|
|
2018-03-14 17:51:49 -07:00
|
|
|
import com.android.launcher3.AbstractFloatingView;
|
2017-12-12 12:02:29 -08:00
|
|
|
import com.android.launcher3.Launcher;
|
2018-03-28 11:21:49 -07:00
|
|
|
import com.android.launcher3.LauncherState;
|
2021-09-10 18:27:53 -07:00
|
|
|
import com.android.launcher3.anim.Interpolators;
|
|
|
|
|
import com.android.launcher3.states.StateAnimationConfig;
|
2017-12-12 12:02:29 -08:00
|
|
|
|
|
|
|
|
/**
|
2018-03-14 17:51:49 -07:00
|
|
|
* TouchController to switch between NORMAL and ALL_APPS state.
|
2017-12-12 12:02:29 -08:00
|
|
|
*/
|
2018-03-14 17:51:49 -07:00
|
|
|
public class AllAppsSwipeController extends AbstractStateChangeTouchController {
|
2017-12-12 12:02:29 -08:00
|
|
|
|
2021-09-10 18:27:53 -07:00
|
|
|
private static final float ALLAPPS_STAGGERED_FADE_THRESHOLD = 0.5f;
|
|
|
|
|
|
2022-05-02 10:34:17 +00:00
|
|
|
// Custom timing for NORMAL -> ALL_APPS on phones only.
|
|
|
|
|
private static final float WORKSPACE_MOTION_START = 0.1667f;
|
|
|
|
|
private static final float ALL_APPS_STATE_TRANSITION = 0.305f;
|
|
|
|
|
private static final float ALL_APPS_FADE_END = 0.4717f;
|
2022-05-13 21:54:23 +00:00
|
|
|
private static final float ALL_APPS_FULL_DEPTH_PROGRESS = 0.5f;
|
2022-05-02 10:34:17 +00:00
|
|
|
|
2021-09-10 18:27:53 -07:00
|
|
|
public static final Interpolator ALLAPPS_STAGGERED_FADE_EARLY_RESPONDER =
|
|
|
|
|
Interpolators.clampToProgress(LINEAR, 0, ALLAPPS_STAGGERED_FADE_THRESHOLD);
|
|
|
|
|
public static final Interpolator ALLAPPS_STAGGERED_FADE_LATE_RESPONDER =
|
|
|
|
|
Interpolators.clampToProgress(LINEAR, ALLAPPS_STAGGERED_FADE_THRESHOLD, 1f);
|
|
|
|
|
|
2022-05-02 10:34:17 +00:00
|
|
|
// Custom interpolators for NORMAL -> ALL_APPS on phones only.
|
2022-05-13 21:54:23 +00:00
|
|
|
// The blur to All Apps is set to be complete when the interpolator is at 0.5.
|
2022-05-02 10:34:17 +00:00
|
|
|
public static final Interpolator BLUR =
|
|
|
|
|
Interpolators.clampToProgress(
|
2022-05-13 21:54:23 +00:00
|
|
|
Interpolators.mapToProgress(
|
|
|
|
|
EMPHASIZED_DECELERATE, 0f, ALL_APPS_FULL_DEPTH_PROGRESS),
|
|
|
|
|
WORKSPACE_MOTION_START, ALL_APPS_STATE_TRANSITION);
|
|
|
|
|
public static final Interpolator WORKSPACE_FADE =
|
|
|
|
|
Interpolators.clampToProgress(FINAL_FRAME, 0f, ALL_APPS_STATE_TRANSITION);
|
2022-05-02 10:34:17 +00:00
|
|
|
public static final Interpolator WORKSPACE_SCALE =
|
|
|
|
|
Interpolators.clampToProgress(
|
|
|
|
|
EMPHASIZED_DECELERATE, WORKSPACE_MOTION_START, ALL_APPS_STATE_TRANSITION);
|
2022-05-13 21:54:23 +00:00
|
|
|
public static final Interpolator HOTSEAT_FADE = WORKSPACE_FADE;
|
2022-05-06 14:19:52 +00:00
|
|
|
public static final Interpolator HOTSEAT_SCALE = HOTSEAT_FADE;
|
2022-05-02 10:34:17 +00:00
|
|
|
public static final Interpolator HOTSEAT_TRANSLATE =
|
|
|
|
|
Interpolators.clampToProgress(
|
|
|
|
|
EMPHASIZED_ACCELERATE, WORKSPACE_MOTION_START, ALL_APPS_STATE_TRANSITION);
|
|
|
|
|
public static final Interpolator SCRIM_FADE =
|
|
|
|
|
Interpolators.clampToProgress(
|
|
|
|
|
Interpolators.mapToProgress(LINEAR, 0f, 0.8f),
|
|
|
|
|
WORKSPACE_MOTION_START, ALL_APPS_STATE_TRANSITION);
|
|
|
|
|
public static final Interpolator ALL_APPS_FADE =
|
|
|
|
|
Interpolators.clampToProgress(
|
|
|
|
|
Interpolators.mapToProgress(DECELERATED_EASE, 0.2f, 1.0f),
|
|
|
|
|
ALL_APPS_STATE_TRANSITION, ALL_APPS_FADE_END);
|
|
|
|
|
public static final Interpolator ALL_APPS_VERTICAL_PROGRESS =
|
|
|
|
|
Interpolators.clampToProgress(
|
|
|
|
|
Interpolators.mapToProgress(EMPHASIZED_DECELERATE, 0.4f, 1.0f),
|
|
|
|
|
ALL_APPS_STATE_TRANSITION, 1.0f);
|
|
|
|
|
|
2017-12-12 12:02:29 -08:00
|
|
|
public AllAppsSwipeController(Launcher l) {
|
2019-08-15 17:24:07 -07:00
|
|
|
super(l, SingleAxisSwipeDetector.VERTICAL);
|
2017-12-12 12:02:29 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
2018-03-14 17:51:49 -07:00
|
|
|
protected boolean canInterceptTouch(MotionEvent ev) {
|
|
|
|
|
if (mCurrentAnimation != null) {
|
|
|
|
|
// If we are already animating from a previous state, we can intercept.
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
if (AbstractFloatingView.getTopOpenView(mLauncher) != null) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2017-12-12 12:02:29 -08:00
|
|
|
if (!mLauncher.isInState(NORMAL) && !mLauncher.isInState(ALL_APPS)) {
|
|
|
|
|
// Don't listen for the swipe gesture if we are already in some other state.
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if (mLauncher.isInState(ALL_APPS) && !mLauncher.getAppsView().shouldContainerScroll(ev)) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-28 11:21:49 -07:00
|
|
|
@Override
|
|
|
|
|
protected LauncherState getTargetState(LauncherState fromState, boolean isDragTowardPositive) {
|
2018-04-06 14:22:46 -07:00
|
|
|
if (fromState == NORMAL && isDragTowardPositive) {
|
|
|
|
|
return ALL_APPS;
|
|
|
|
|
} else if (fromState == ALL_APPS && !isDragTowardPositive) {
|
|
|
|
|
return NORMAL;
|
|
|
|
|
}
|
|
|
|
|
return fromState;
|
2018-03-28 11:21:49 -07:00
|
|
|
}
|
|
|
|
|
|
2017-12-12 12:02:29 -08:00
|
|
|
@Override
|
2021-03-23 17:22:28 -07:00
|
|
|
protected float initCurrentAnimation() {
|
2018-03-14 17:51:49 -07:00
|
|
|
float range = getShiftRange();
|
2021-09-10 18:27:53 -07:00
|
|
|
StateAnimationConfig config = getConfigForStates(mFromState, mToState);
|
|
|
|
|
config.duration = (long) (2 * range);
|
|
|
|
|
|
2018-03-14 17:51:49 -07:00
|
|
|
mCurrentAnimation = mLauncher.getStateManager()
|
2021-09-10 18:27:53 -07:00
|
|
|
.createAnimationToNewWorkspace(mToState, config);
|
2018-03-14 17:51:49 -07:00
|
|
|
float startVerticalShift = mFromState.getVerticalProgress(mLauncher) * range;
|
|
|
|
|
float endVerticalShift = mToState.getVerticalProgress(mLauncher) * range;
|
|
|
|
|
float totalShift = endVerticalShift - startVerticalShift;
|
|
|
|
|
return 1 / totalShift;
|
2017-12-12 12:02:29 -08:00
|
|
|
}
|
2021-09-10 18:27:53 -07:00
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
protected StateAnimationConfig getConfigForStates(LauncherState fromState,
|
|
|
|
|
LauncherState toState) {
|
|
|
|
|
StateAnimationConfig config = super.getConfigForStates(fromState, toState);
|
|
|
|
|
if (fromState == NORMAL && toState == ALL_APPS) {
|
2022-02-14 18:35:58 +00:00
|
|
|
applyNormalToAllAppsAnimConfig(mLauncher, config);
|
2021-09-10 18:27:53 -07:00
|
|
|
} else if (fromState == ALL_APPS && toState == NORMAL) {
|
2022-02-14 18:35:58 +00:00
|
|
|
applyAllAppsToNormalConfig(mLauncher, config);
|
2021-09-10 18:27:53 -07:00
|
|
|
}
|
|
|
|
|
return config;
|
|
|
|
|
}
|
2021-10-04 13:09:40 -07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Applies Animation config values for transition from all apps to home
|
|
|
|
|
*/
|
2022-02-14 18:35:58 +00:00
|
|
|
public static void applyAllAppsToNormalConfig(Launcher launcher, StateAnimationConfig config) {
|
|
|
|
|
boolean isTablet = launcher.getDeviceProfile().isTablet;
|
2021-10-04 13:09:40 -07:00
|
|
|
config.setInterpolator(ANIM_SCRIM_FADE, ALLAPPS_STAGGERED_FADE_LATE_RESPONDER);
|
2022-02-14 18:35:58 +00:00
|
|
|
config.setInterpolator(ANIM_ALL_APPS_FADE, isTablet
|
|
|
|
|
? FINAL_FRAME : ALLAPPS_STAGGERED_FADE_EARLY_RESPONDER);
|
2021-10-04 13:09:40 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Applies Animation config values for transition from home to all apps
|
|
|
|
|
*/
|
2022-02-14 18:35:58 +00:00
|
|
|
public static void applyNormalToAllAppsAnimConfig(Launcher launcher,
|
|
|
|
|
StateAnimationConfig config) {
|
2022-05-02 10:34:17 +00:00
|
|
|
if (launcher.getDeviceProfile().isTablet) {
|
|
|
|
|
config.setInterpolator(ANIM_SCRIM_FADE, ALLAPPS_STAGGERED_FADE_EARLY_RESPONDER);
|
|
|
|
|
config.setInterpolator(ANIM_ALL_APPS_FADE, INSTANT);
|
|
|
|
|
} else {
|
|
|
|
|
config.setInterpolator(ANIM_DEPTH, BLUR);
|
2022-05-13 21:54:23 +00:00
|
|
|
config.setInterpolator(ANIM_WORKSPACE_FADE, WORKSPACE_FADE);
|
2022-05-02 10:34:17 +00:00
|
|
|
config.setInterpolator(ANIM_WORKSPACE_SCALE, WORKSPACE_SCALE);
|
|
|
|
|
config.setInterpolator(ANIM_HOTSEAT_FADE, HOTSEAT_FADE);
|
2022-05-06 14:19:52 +00:00
|
|
|
config.setInterpolator(ANIM_HOTSEAT_SCALE, HOTSEAT_SCALE);
|
2022-05-02 10:34:17 +00:00
|
|
|
config.setInterpolator(ANIM_HOTSEAT_TRANSLATE, HOTSEAT_TRANSLATE);
|
|
|
|
|
config.setInterpolator(ANIM_SCRIM_FADE, SCRIM_FADE);
|
|
|
|
|
config.setInterpolator(ANIM_ALL_APPS_FADE, ALL_APPS_FADE);
|
|
|
|
|
config.setInterpolator(ANIM_VERTICAL_PROGRESS, ALL_APPS_VERTICAL_PROGRESS);
|
|
|
|
|
}
|
2021-10-04 13:09:40 -07:00
|
|
|
}
|
2017-12-12 12:02:29 -08:00
|
|
|
}
|