396441545f
desktopCarouselDetachProgress: - Controls whether desktop and fullscreen carousel is attached (RecentsView..DESKTOP_CAROUSEL_DETACH_PROGRESS) - When fully detached (progress==1), hide the carousel (RecentsView.applyAttachAlpha) - As the detach progress increase, we animate the other carousel away by using `getMaxHorizontalOffsetSize`, with additional maxOverscroll to make sure the other carousel won't be seen even if user overscroll RecentsView (RecentsView.updatePageOffsets) min/max scroll changes - When desktop and fullscreen carousel detaches, disallow scrolling to the detached carousel. This avoids quickswitching or scroll to the other carousel (RecentsView.getFirstViewIndex and RecentsView.getLastViewIndex) State machine changes: - On Overview states, desktop and fullscreen carousel is attached. Otherwise, they're detached, including in quick switch and home. (BaseState, RecentsState, OverviewState, BackgroundAppState) - StateController set/animate desktopCarouselDetachProgress between the above states (BaseRecentsViewStateController, FallbackRecentsStateController) - On swipe up gesture release and going to Overview, animate attaching back the 2 carousels (RecentsView.onPrepareGestureEndAnimation) Bug: 353948100 Test: quick switch; swipe from home/app; scroll in Overview; with normal/3p launcher Flag: com.android.launcher3.enable_large_desktop_windowing_tile Change-Id: Ic4217efb07db079825a3210afd306d9ef627c873
136 lines
4.4 KiB
Java
136 lines
4.4 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.uioverrides.states;
|
|
|
|
import static com.android.launcher3.Flags.enableScalingRevealHomeAnimation;
|
|
import static com.android.launcher3.logging.StatsLogManager.LAUNCHER_STATE_BACKGROUND;
|
|
|
|
import android.content.Context;
|
|
import android.graphics.Color;
|
|
|
|
import com.android.launcher3.DeviceProfile;
|
|
import com.android.launcher3.Launcher;
|
|
import com.android.launcher3.allapps.AllAppsTransitionController;
|
|
import com.android.quickstep.util.BaseDepthController;
|
|
import com.android.quickstep.util.LayoutUtils;
|
|
import com.android.quickstep.views.RecentsView;
|
|
|
|
/**
|
|
* State indicating that the Launcher is behind an app
|
|
*/
|
|
public class BackgroundAppState extends OverviewState {
|
|
|
|
private static final int STATE_FLAGS = FLAG_DISABLE_RESTORE | FLAG_RECENTS_VIEW_VISIBLE
|
|
| FLAG_WORKSPACE_INACCESSIBLE | FLAG_NON_INTERACTIVE | FLAG_CLOSE_POPUPS;
|
|
|
|
public BackgroundAppState(int id) {
|
|
this(id, LAUNCHER_STATE_BACKGROUND);
|
|
}
|
|
|
|
protected BackgroundAppState(int id, int logContainer) {
|
|
super(id, logContainer, STATE_FLAGS);
|
|
}
|
|
|
|
@Override
|
|
public float getVerticalProgress(Launcher launcher) {
|
|
if (launcher.getDeviceProfile().isVerticalBarLayout()) {
|
|
return super.getVerticalProgress(launcher);
|
|
}
|
|
RecentsView recentsView = launcher.getOverviewPanel();
|
|
int transitionLength = LayoutUtils.getShelfTrackingDistance(
|
|
launcher,
|
|
launcher.getDeviceProfile(),
|
|
recentsView.getPagedOrientationHandler(),
|
|
recentsView.getSizeStrategy());
|
|
AllAppsTransitionController controller = launcher.getAllAppsController();
|
|
float scrollRange = Math.max(controller.getShiftRange(), 1);
|
|
float progressDelta = (transitionLength / scrollRange);
|
|
return super.getVerticalProgress(launcher) + progressDelta;
|
|
}
|
|
|
|
@Override
|
|
public float[] getOverviewScaleAndOffset(Launcher launcher) {
|
|
return getOverviewScaleAndOffsetForBackgroundState(launcher.getOverviewPanel());
|
|
}
|
|
|
|
@Override
|
|
public float getOverviewFullscreenProgress() {
|
|
return 1;
|
|
}
|
|
|
|
@Override
|
|
public int getVisibleElements(Launcher launcher) {
|
|
return super.getVisibleElements(launcher)
|
|
& ~OVERVIEW_ACTIONS
|
|
& ~CLEAR_ALL_BUTTON
|
|
& ~VERTICAL_SWIPE_INDICATOR;
|
|
}
|
|
|
|
@Override
|
|
public boolean displayOverviewTasksAsGrid(DeviceProfile deviceProfile) {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean showTaskThumbnailSplash() {
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public boolean detachDesktopCarousel() {
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
protected float getDepthUnchecked(Context context) {
|
|
if (Launcher.getLauncher(context).areDesktopTasksVisible()) {
|
|
// Don't blur the background while desktop tasks are visible
|
|
return BaseDepthController.DEPTH_0_PERCENT;
|
|
} else if (enableScalingRevealHomeAnimation()) {
|
|
return BaseDepthController.DEPTH_70_PERCENT;
|
|
} else {
|
|
return 1f;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public int getWorkspaceScrimColor(Launcher launcher) {
|
|
return Color.TRANSPARENT;
|
|
}
|
|
|
|
@Override
|
|
public boolean isTaskbarAlignedWithHotseat(Launcher launcher) {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean disallowTaskbarGlobalDrag() {
|
|
// Enable global drag in overview
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean allowTaskbarInitialSplitSelection() {
|
|
// Disallow split select from taskbar items in overview
|
|
return false;
|
|
}
|
|
|
|
public static float[] getOverviewScaleAndOffsetForBackgroundState(
|
|
RecentsView recentsView) {
|
|
return new float[] {recentsView.getMaxScaleForFullScreen(), NO_OFFSET};
|
|
}
|
|
}
|