mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 18:58:19 +00:00
If freeform tasks are shown, skip applying depth effect and scrim changes. These cause the background to flicker while showing freeform tasks and for example showing the transient taskbar. Bug: 263264985 Test: swipe up to show transient taskbar, observe launcher background does not blur or flicker to black Change-Id: I5b10d0f0c7065e903cb761488367c02d7e31d8b2
126 lines
4.3 KiB
Java
126 lines
4.3 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.logging.StatsLogManager.LAUNCHER_STATE_BACKGROUND;
|
|
import static com.android.quickstep.TaskAnimationManager.ENABLE_SHELL_TRANSITIONS;
|
|
|
|
import android.content.Context;
|
|
import android.graphics.Color;
|
|
|
|
import com.android.launcher3.BaseDraggingActivity;
|
|
import com.android.launcher3.DeviceProfile;
|
|
import com.android.launcher3.Launcher;
|
|
import com.android.launcher3.R;
|
|
import com.android.launcher3.allapps.AllAppsTransitionController;
|
|
import com.android.launcher3.config.FeatureFlags;
|
|
import com.android.quickstep.util.LayoutUtils;
|
|
import com.android.quickstep.views.DesktopTaskView;
|
|
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_OVERVIEW_UI
|
|
| 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());
|
|
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);
|
|
}
|
|
|
|
@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
|
|
protected float getDepthUnchecked(Context context) {
|
|
if (DesktopTaskView.DESKTOP_MODE_SUPPORTED) {
|
|
if (Launcher.getLauncher(context).areFreeformTasksVisible()) {
|
|
// Don't blur the background while freeform tasks are visible
|
|
return 0;
|
|
}
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
@Override
|
|
public int getWorkspaceScrimColor(Launcher launcher) {
|
|
DeviceProfile dp = launcher.getDeviceProfile();
|
|
if (dp.isTaskbarPresentInApps && !FeatureFlags.ENABLE_TASKBAR_IN_OVERVIEW.get()) {
|
|
return launcher.getColor(R.color.taskbar_background);
|
|
}
|
|
return Color.TRANSPARENT;
|
|
}
|
|
|
|
@Override
|
|
public boolean isTaskbarAlignedWithHotseat(Launcher launcher) {
|
|
if (ENABLE_SHELL_TRANSITIONS) return false;
|
|
return super.isTaskbarAlignedWithHotseat(launcher);
|
|
}
|
|
|
|
public static float[] getOverviewScaleAndOffsetForBackgroundState(
|
|
BaseDraggingActivity activity) {
|
|
return new float[] {
|
|
((RecentsView) activity.getOverviewPanel()).getMaxScaleForFullScreen(),
|
|
NO_OFFSET};
|
|
}
|
|
}
|