mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-20 03:08:19 +00:00
187 lines
7.7 KiB
Java
187 lines
7.7 KiB
Java
/*
|
|
* Copyright (C) 2017 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;
|
|
|
|
import static com.android.launcher3.AbstractFloatingView.TYPE_ALL;
|
|
import static com.android.launcher3.AbstractFloatingView.TYPE_HIDE_BACK_BUTTON;
|
|
import static com.android.launcher3.LauncherState.ALL_APPS;
|
|
import static com.android.launcher3.LauncherState.NORMAL;
|
|
import static com.android.launcher3.LauncherState.OVERVIEW;
|
|
import static com.android.launcher3.allapps.DiscoveryBounce.HOME_BOUNCE_SEEN;
|
|
import static com.android.launcher3.allapps.DiscoveryBounce.SHELF_BOUNCE_SEEN;
|
|
|
|
import android.content.Context;
|
|
|
|
import com.android.launcher3.AbstractFloatingView;
|
|
import com.android.launcher3.DeviceProfile;
|
|
import com.android.launcher3.Launcher;
|
|
import com.android.launcher3.LauncherState;
|
|
import com.android.launcher3.LauncherStateManager;
|
|
import com.android.launcher3.LauncherStateManager.StateHandler;
|
|
import com.android.launcher3.anim.AnimatorPlaybackController;
|
|
import com.android.launcher3.util.TouchController;
|
|
import com.android.quickstep.OverviewInteractionState;
|
|
import com.android.quickstep.RecentsModel;
|
|
import com.android.quickstep.views.RecentsView;
|
|
import com.android.systemui.shared.system.WindowManagerWrapper;
|
|
|
|
public class UiFactory {
|
|
|
|
public static TouchController[] createTouchControllers(Launcher launcher) {
|
|
boolean swipeUpEnabled = OverviewInteractionState.getInstance(launcher)
|
|
.isSwipeUpGestureEnabled();
|
|
if (!swipeUpEnabled) {
|
|
return new TouchController[] {
|
|
launcher.getDragController(),
|
|
new OverviewToAllAppsTouchController(launcher),
|
|
new LauncherTaskViewController(launcher)};
|
|
}
|
|
if (launcher.getDeviceProfile().isVerticalBarLayout()) {
|
|
return new TouchController[] {
|
|
launcher.getDragController(),
|
|
new OverviewToAllAppsTouchController(launcher),
|
|
new LandscapeEdgeSwipeController(launcher),
|
|
new LauncherTaskViewController(launcher)};
|
|
} else {
|
|
return new TouchController[] {
|
|
launcher.getDragController(),
|
|
new PortraitStatesTouchController(launcher),
|
|
new LauncherTaskViewController(launcher)};
|
|
}
|
|
}
|
|
|
|
public static void setOnTouchControllersChangedListener(Context context, Runnable listener) {
|
|
OverviewInteractionState.getInstance(context).setOnSwipeUpSettingChangedListener(listener);
|
|
}
|
|
|
|
public static StateHandler[] getStateHandler(Launcher launcher) {
|
|
return new StateHandler[] {
|
|
launcher.getAllAppsController(), launcher.getWorkspace(),
|
|
new RecentsViewStateController(launcher)};
|
|
}
|
|
|
|
public static void onLauncherStateOrFocusChanged(Launcher launcher) {
|
|
boolean shouldBackButtonBeHidden = launcher != null
|
|
&& launcher.getStateManager().getState().hideBackButton
|
|
&& launcher.hasWindowFocus();
|
|
if (shouldBackButtonBeHidden) {
|
|
// Show the back button if there is a floating view visible.
|
|
shouldBackButtonBeHidden = AbstractFloatingView.getTopOpenViewWithType(launcher,
|
|
TYPE_ALL & ~TYPE_HIDE_BACK_BUTTON) == null;
|
|
}
|
|
OverviewInteractionState.getInstance(launcher)
|
|
.setBackButtonVisible(!shouldBackButtonBeHidden);
|
|
}
|
|
|
|
public static void resetOverview(Launcher launcher) {
|
|
RecentsView recents = launcher.getOverviewPanel();
|
|
recents.reset();
|
|
}
|
|
|
|
public static void onCreate(Launcher launcher) {
|
|
if (!launcher.getSharedPrefs().getBoolean(HOME_BOUNCE_SEEN, false)) {
|
|
launcher.getStateManager().addStateListener(new LauncherStateManager.StateListener() {
|
|
@Override
|
|
public void onStateSetImmediately(LauncherState state) {
|
|
}
|
|
|
|
@Override
|
|
public void onStateTransitionStart(LauncherState toState) {
|
|
}
|
|
|
|
@Override
|
|
public void onStateTransitionComplete(LauncherState finalState) {
|
|
boolean swipeUpEnabled = OverviewInteractionState.getInstance(launcher)
|
|
.isSwipeUpGestureEnabled();
|
|
LauncherState prevState = launcher.getStateManager().getLastState();
|
|
|
|
if (((swipeUpEnabled && finalState == OVERVIEW) || (!swipeUpEnabled
|
|
&& finalState == ALL_APPS && prevState == NORMAL))) {
|
|
launcher.getSharedPrefs().edit().putBoolean(HOME_BOUNCE_SEEN, true).apply();
|
|
launcher.getStateManager().removeStateListener(this);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
if (!launcher.getSharedPrefs().getBoolean(SHELF_BOUNCE_SEEN, false)) {
|
|
launcher.getStateManager().addStateListener(new LauncherStateManager.StateListener() {
|
|
@Override
|
|
public void onStateSetImmediately(LauncherState state) {
|
|
}
|
|
|
|
@Override
|
|
public void onStateTransitionStart(LauncherState toState) {
|
|
}
|
|
|
|
@Override
|
|
public void onStateTransitionComplete(LauncherState finalState) {
|
|
LauncherState prevState = launcher.getStateManager().getLastState();
|
|
|
|
if (finalState == ALL_APPS && prevState == OVERVIEW) {
|
|
launcher.getSharedPrefs().edit().putBoolean(SHELF_BOUNCE_SEEN, true).apply();
|
|
launcher.getStateManager().removeStateListener(this);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
public static void onStart(Context context) {
|
|
RecentsModel model = RecentsModel.getInstance(context);
|
|
if (model != null) {
|
|
model.onStart();
|
|
}
|
|
}
|
|
|
|
public static void onLauncherStateOrResumeChanged(Launcher launcher) {
|
|
LauncherState state = launcher.getStateManager().getState();
|
|
DeviceProfile profile = launcher.getDeviceProfile();
|
|
WindowManagerWrapper.getInstance().setShelfHeight(
|
|
state != ALL_APPS && launcher.isUserActive() && !profile.isVerticalBarLayout(),
|
|
profile.hotseatBarSizePx);
|
|
|
|
if (state == NORMAL) {
|
|
launcher.<RecentsView>getOverviewPanel().setSwipeDownShouldLaunchApp(false);
|
|
}
|
|
}
|
|
|
|
public static void onTrimMemory(Context context, int level) {
|
|
RecentsModel model = RecentsModel.getInstance(context);
|
|
if (model != null) {
|
|
model.onTrimMemory(level);
|
|
}
|
|
}
|
|
|
|
private static class LauncherTaskViewController extends TaskViewTouchController<Launcher> {
|
|
|
|
public LauncherTaskViewController(Launcher activity) {
|
|
super(activity);
|
|
}
|
|
|
|
@Override
|
|
protected boolean isRecentsInteractive() {
|
|
return mActivity.isInState(OVERVIEW);
|
|
}
|
|
|
|
@Override
|
|
protected void onUserControlledAnimationCreated(AnimatorPlaybackController animController) {
|
|
mActivity.getStateManager().setCurrentUserControlledAnimation(animController);
|
|
}
|
|
}
|
|
}
|