f54c6fa4b4
This reverts commit 853a5b9e0c.
Fixes SecondaryDisplayLauncher class by using lambda instead of method
reference for #getAllAppsItemLongClickListener. This change is necessary
because mDragLayer is late-init.
Test: Home Settings > Developer Options > Launch Secondary Display
Bug: 289261756
Flag: No
Change-Id: I7b83f81651dde360edea6ee7bea6cc82441e6bef
107 lines
4.2 KiB
Java
107 lines
4.2 KiB
Java
/*
|
|
* Copyright (C) 2022 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.taskbar.allapps;
|
|
|
|
import static com.android.launcher3.taskbar.TaskbarStashController.FLAG_STASHED_IN_TASKBAR_ALL_APPS;
|
|
import static com.android.launcher3.util.OnboardingPrefs.ALL_APPS_VISITED_COUNT;
|
|
|
|
import com.android.launcher3.AbstractFloatingView;
|
|
import com.android.launcher3.appprediction.AppsDividerView;
|
|
import com.android.launcher3.taskbar.NavbarButtonsViewController;
|
|
import com.android.launcher3.taskbar.TaskbarControllers;
|
|
import com.android.launcher3.taskbar.TaskbarStashController;
|
|
import com.android.launcher3.taskbar.overlay.TaskbarOverlayContext;
|
|
import com.android.launcher3.taskbar.overlay.TaskbarOverlayController;
|
|
import com.android.launcher3.util.DisplayController;
|
|
|
|
/**
|
|
* Handles the {@link TaskbarAllAppsContainerView} behavior and synchronizes its transitions with
|
|
* taskbar stashing.
|
|
*/
|
|
final class TaskbarAllAppsViewController {
|
|
|
|
private final TaskbarOverlayContext mContext;
|
|
private final TaskbarAllAppsSlideInView mSlideInView;
|
|
private final TaskbarAllAppsContainerView mAppsView;
|
|
private final TaskbarStashController mTaskbarStashController;
|
|
private final NavbarButtonsViewController mNavbarButtonsViewController;
|
|
private final TaskbarOverlayController mOverlayController;
|
|
|
|
TaskbarAllAppsViewController(
|
|
TaskbarOverlayContext context,
|
|
TaskbarAllAppsSlideInView slideInView,
|
|
TaskbarControllers taskbarControllers) {
|
|
|
|
mContext = context;
|
|
mSlideInView = slideInView;
|
|
mAppsView = mSlideInView.getAppsView();
|
|
mTaskbarStashController = taskbarControllers.taskbarStashController;
|
|
mNavbarButtonsViewController = taskbarControllers.navbarButtonsViewController;
|
|
mOverlayController = taskbarControllers.taskbarOverlayController;
|
|
|
|
mSlideInView.init(new TaskbarAllAppsCallbacks());
|
|
setUpAppDivider();
|
|
setUpTaskbarStashing();
|
|
}
|
|
|
|
/** Starts the {@link TaskbarAllAppsSlideInView} enter transition. */
|
|
void show(boolean animate) {
|
|
mSlideInView.show(animate);
|
|
}
|
|
|
|
/** Closes the {@link TaskbarAllAppsSlideInView}. */
|
|
void close(boolean animate) {
|
|
mSlideInView.close(animate);
|
|
}
|
|
|
|
private void setUpAppDivider() {
|
|
mAppsView.getFloatingHeaderView()
|
|
.findFixedRowByType(AppsDividerView.class)
|
|
.setShowAllAppsLabel(!mContext.getOnboardingPrefs().hasReachedMaxCount(
|
|
ALL_APPS_VISITED_COUNT));
|
|
mContext.getOnboardingPrefs().incrementEventCount(ALL_APPS_VISITED_COUNT);
|
|
}
|
|
|
|
private void setUpTaskbarStashing() {
|
|
if (DisplayController.isTransientTaskbar(mContext)) {
|
|
mTaskbarStashController.updateStateForFlag(FLAG_STASHED_IN_TASKBAR_ALL_APPS, true);
|
|
mTaskbarStashController.applyState(mOverlayController.getOpenDuration());
|
|
}
|
|
|
|
mNavbarButtonsViewController.setSlideInViewVisible(true);
|
|
mSlideInView.setOnCloseBeginListener(() -> {
|
|
mNavbarButtonsViewController.setSlideInViewVisible(false);
|
|
AbstractFloatingView.closeOpenContainer(
|
|
mContext, AbstractFloatingView.TYPE_ACTION_POPUP);
|
|
|
|
if (DisplayController.isTransientTaskbar(mContext)) {
|
|
mTaskbarStashController.updateStateForFlag(FLAG_STASHED_IN_TASKBAR_ALL_APPS, false);
|
|
mTaskbarStashController.applyState(mOverlayController.getCloseDuration());
|
|
}
|
|
});
|
|
}
|
|
|
|
class TaskbarAllAppsCallbacks {
|
|
int getOpenDuration() {
|
|
return mOverlayController.getOpenDuration();
|
|
}
|
|
|
|
int getCloseDuration() {
|
|
return mOverlayController.getCloseDuration();
|
|
}
|
|
}
|
|
}
|