blob: bbe44c005ed6813c65784c6a5da0ce99beb7069a [file] [log] [blame]
Sunny Goyal4c7f2152017-10-17 17:17:16 -07001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package com.android.launcher3;
17
18import static android.view.View.IMPORTANT_FOR_ACCESSIBILITY_AUTO;
19import static android.view.View.IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS;
Sunny Goyal3e3f44c2017-10-23 17:14:52 -070020import static android.view.accessibility.AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED;
Vadim Tryshev1b0c5032018-05-23 12:54:27 -070021
Sunny Goyal0c723352017-12-12 12:02:29 -080022import static com.android.launcher3.anim.Interpolators.ACCEL_2;
Sunny Goyal623eddd2018-03-02 12:24:41 -080023import static com.android.launcher3.states.RotationHelper.REQUEST_NONE;
Sunny Goyal0c723352017-12-12 12:02:29 -080024
Tony Wickham6becf7c2018-04-19 11:39:34 -070025import android.graphics.Rect;
Sunny Goyal0c723352017-12-12 12:02:29 -080026import android.view.animation.Interpolator;
Sunny Goyalbe93f262017-10-20 17:05:27 -070027
Sunny Goyalc99cb172017-10-19 16:15:09 -070028import com.android.launcher3.states.SpringLoadedState;
Sunny Goyal623eddd2018-03-02 12:24:41 -080029import com.android.launcher3.uioverrides.AllAppsState;
Sunny Goyal6c6c2f42018-03-02 14:57:46 -080030import com.android.launcher3.uioverrides.FastOverviewState;
Sunny Goyal85525172017-11-06 13:00:42 -080031import com.android.launcher3.uioverrides.OverviewState;
Sunny Goyal75c59ac2018-01-15 14:23:11 -080032import com.android.launcher3.uioverrides.UiFactory;
Sunny Goyale39690b2018-08-02 13:35:07 -070033import com.android.launcher3.userevent.nano.LauncherLogProto.Action;
Sunny Goyal4c7f2152017-10-17 17:17:16 -070034import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
35
Sunny Goyalcd7c0aa2017-10-19 12:36:27 -070036import java.util.Arrays;
37
Sunny Goyal4c7f2152017-10-17 17:17:16 -070038
39/**
Sunny Goyalbe93f262017-10-20 17:05:27 -070040 * Base state for various states used for the Launcher
Sunny Goyal4c7f2152017-10-17 17:17:16 -070041 */
Sunny Goyalcd7c0aa2017-10-19 12:36:27 -070042public class LauncherState {
Sunny Goyal4c7f2152017-10-17 17:17:16 -070043
Sunny Goyal7185dd62018-03-14 17:51:49 -070044
45 /**
46 * Set of elements indicating various workspace elements which change visibility across states
47 * Note that workspace is not included here as in that case, we animate individual pages
48 */
49 public static final int NONE = 0;
Tony Wickhambd6f05e2018-03-21 08:16:33 -070050 public static final int HOTSEAT_ICONS = 1 << 0;
Sunny Goyal81b4c7b2018-03-26 12:10:31 -070051 public static final int HOTSEAT_SEARCH_BOX = 1 << 1;
Tony Wickhambd6f05e2018-03-21 08:16:33 -070052 public static final int ALL_APPS_HEADER = 1 << 2;
53 public static final int ALL_APPS_HEADER_EXTRA = 1 << 3; // e.g. app predictions
54 public static final int ALL_APPS_CONTENT = 1 << 4;
Sunny Goyal56e10192018-05-22 13:22:25 -070055 public static final int VERTICAL_SWIPE_INDICATOR = 1 << 5;
Sunny Goyal7185dd62018-03-14 17:51:49 -070056
Sunny Goyal927447e2018-05-04 13:19:29 -070057 protected static final int FLAG_MULTI_PAGE = 1 << 0;
58 protected static final int FLAG_DISABLE_ACCESSIBILITY = 1 << 1;
59 protected static final int FLAG_DISABLE_RESTORE = 1 << 2;
60 protected static final int FLAG_WORKSPACE_ICONS_CAN_BE_DRAGGED = 1 << 3;
61 protected static final int FLAG_DISABLE_PAGE_CLIPPING = 1 << 4;
62 protected static final int FLAG_PAGE_BACKGROUNDS = 1 << 5;
63 protected static final int FLAG_DISABLE_INTERACTION = 1 << 6;
64 protected static final int FLAG_OVERVIEW_UI = 1 << 7;
65 protected static final int FLAG_HIDE_BACK_BUTTON = 1 << 8;
Sunny Goyal5d1873a2018-05-08 11:10:44 -070066 protected static final int FLAG_HAS_SYS_UI_SCRIM = 1 << 9;
Sunny Goyal6c6c2f42018-03-02 14:57:46 -080067
Sunny Goyal0c723352017-12-12 12:02:29 -080068 protected static final PageAlphaProvider DEFAULT_ALPHA_PROVIDER =
69 new PageAlphaProvider(ACCEL_2) {
70 @Override
71 public float getPageAlpha(int pageIndex) {
72 return 1;
73 }
74 };
Sunny Goyalcd7c0aa2017-10-19 12:36:27 -070075
Sunny Goyal6c6c2f42018-03-02 14:57:46 -080076 private static final LauncherState[] sAllStates = new LauncherState[5];
Sunny Goyalcd7c0aa2017-10-19 12:36:27 -070077
Sunny Goyal75c59ac2018-01-15 14:23:11 -080078 /**
79 * TODO: Create a separate class for NORMAL state.
80 */
Sunny Goyal5d1873a2018-05-08 11:10:44 -070081 public static final LauncherState NORMAL = new LauncherState(0, ContainerType.WORKSPACE, 0,
82 FLAG_DISABLE_RESTORE | FLAG_WORKSPACE_ICONS_CAN_BE_DRAGGED | FLAG_HIDE_BACK_BUTTON |
83 FLAG_HAS_SYS_UI_SCRIM);
Sunny Goyalcd7c0aa2017-10-19 12:36:27 -070084
Sunny Goyal7185dd62018-03-14 17:51:49 -070085 /**
86 * Various Launcher states arranged in the increasing order of UI layers
87 */
88 public static final LauncherState SPRING_LOADED = new SpringLoadedState(1);
89 public static final LauncherState OVERVIEW = new OverviewState(2);
90 public static final LauncherState FAST_OVERVIEW = new FastOverviewState(3);
91 public static final LauncherState ALL_APPS = new AllAppsState(4);
Sunny Goyal6c6c2f42018-03-02 14:57:46 -080092
Tony Wickham6becf7c2018-04-19 11:39:34 -070093 protected static final Rect sTempRect = new Rect();
94
Sunny Goyalcd7c0aa2017-10-19 12:36:27 -070095 public final int ordinal;
96
Sunny Goyalf9403d92017-10-18 10:55:56 -070097 /**
98 * Used for containerType in {@link com.android.launcher3.logging.UserEventDispatcher}
99 */
Sunny Goyal4c7f2152017-10-17 17:17:16 -0700100 public final int containerType;
101
Sunny Goyalf9403d92017-10-18 10:55:56 -0700102 /**
103 * True if the state can be persisted across activity restarts.
104 */
Sunny Goyalbc683e92017-12-06 10:25:07 -0800105 public final boolean disableRestore;
Sunny Goyalf9403d92017-10-18 10:55:56 -0700106
107 /**
108 * True if workspace has multiple pages visible.
109 */
Sunny Goyal4c7f2152017-10-17 17:17:16 -0700110 public final boolean hasMultipleVisiblePages;
Sunny Goyalf9403d92017-10-18 10:55:56 -0700111
112 /**
113 * Accessibility flag for workspace and its pages.
114 * @see android.view.View#setImportantForAccessibility(int)
115 */
Sunny Goyal4c7f2152017-10-17 17:17:16 -0700116 public final int workspaceAccessibilityFlag;
117
Sunny Goyalbe93f262017-10-20 17:05:27 -0700118 /**
119 * Properties related to state transition animation
120 *
121 * @see WorkspaceStateTransitionAnimation
122 */
Sunny Goyal6639a5d2018-02-28 15:09:36 -0800123 public final boolean hasWorkspacePageBackground;
Sunny Goyal6639a5d2018-02-28 15:09:36 -0800124
Sunny Goyal4c7f2152017-10-17 17:17:16 -0700125 public final int transitionDuration;
126
Sunny Goyalbe93f262017-10-20 17:05:27 -0700127 /**
Tony Wickham53370672017-12-05 10:10:55 -0800128 * True if the state allows workspace icons to be dragged.
129 */
130 public final boolean workspaceIconsCanBeDragged;
131
Sunny Goyalbc683e92017-12-06 10:25:07 -0800132 /**
133 * True if the workspace pages should not be clipped relative to the workspace bounds
134 * for this state.
135 */
136 public final boolean disablePageClipping;
137
Sunny Goyal6c6c2f42018-03-02 14:57:46 -0800138 /**
139 * True if launcher can not be directly interacted in this state;
140 */
141 public final boolean disableInteraction;
142
143 /**
144 * True if the state has overview panel visible.
145 */
146 public final boolean overviewUi;
147
Tony Wickham76cf2362018-03-20 14:13:16 -0700148 /**
149 * True if the back button should be hidden when in this state (assuming no floating views are
150 * open, launcher has window focus, etc).
151 */
152 public final boolean hideBackButton;
153
Sunny Goyal5d1873a2018-05-08 11:10:44 -0700154 public final boolean hasSysUiScrim;
155
Sunny Goyal228153d2018-01-04 15:35:22 -0800156 public LauncherState(int id, int containerType, int transitionDuration, int flags) {
Sunny Goyal4c7f2152017-10-17 17:17:16 -0700157 this.containerType = containerType;
158 this.transitionDuration = transitionDuration;
159
Sunny Goyal6639a5d2018-02-28 15:09:36 -0800160 this.hasWorkspacePageBackground = (flags & FLAG_PAGE_BACKGROUNDS) != 0;
Sunny Goyal4c7f2152017-10-17 17:17:16 -0700161 this.hasMultipleVisiblePages = (flags & FLAG_MULTI_PAGE) != 0;
Sunny Goyal4c7f2152017-10-17 17:17:16 -0700162 this.workspaceAccessibilityFlag = (flags & FLAG_DISABLE_ACCESSIBILITY) != 0
163 ? IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS
164 : IMPORTANT_FOR_ACCESSIBILITY_AUTO;
Sunny Goyalbc683e92017-12-06 10:25:07 -0800165 this.disableRestore = (flags & FLAG_DISABLE_RESTORE) != 0;
Tony Wickham53370672017-12-05 10:10:55 -0800166 this.workspaceIconsCanBeDragged = (flags & FLAG_WORKSPACE_ICONS_CAN_BE_DRAGGED) != 0;
Sunny Goyalbc683e92017-12-06 10:25:07 -0800167 this.disablePageClipping = (flags & FLAG_DISABLE_PAGE_CLIPPING) != 0;
Sunny Goyal6c6c2f42018-03-02 14:57:46 -0800168 this.disableInteraction = (flags & FLAG_DISABLE_INTERACTION) != 0;
169 this.overviewUi = (flags & FLAG_OVERVIEW_UI) != 0;
Tony Wickham76cf2362018-03-20 14:13:16 -0700170 this.hideBackButton = (flags & FLAG_HIDE_BACK_BUTTON) != 0;
Sunny Goyal5d1873a2018-05-08 11:10:44 -0700171 this.hasSysUiScrim = (flags & FLAG_HAS_SYS_UI_SCRIM) != 0;
Sunny Goyalcd7c0aa2017-10-19 12:36:27 -0700172
173 this.ordinal = id;
174 sAllStates[id] = this;
175 }
176
177 public static LauncherState[] values() {
178 return Arrays.copyOf(sAllStates, sAllStates.length);
Sunny Goyal4c7f2152017-10-17 17:17:16 -0700179 }
Sunny Goyalc99cb172017-10-19 16:15:09 -0700180
181 public float[] getWorkspaceScaleAndTranslation(Launcher launcher) {
Sunny Goyal9328a512017-12-21 12:40:38 -0800182 return new float[] {1, 0, 0};
Sunny Goyalc99cb172017-10-19 16:15:09 -0700183 }
184
Tonye9054e32018-03-15 12:48:51 +0000185 /**
Tony0c955592018-04-04 10:23:36 -0700186 * Returns 2 floats designating how to transition overview:
187 * scale for the current and adjacent pages
188 * translationY factor where 0 is top aligned and 0.5 is centered vertically
Tonye9054e32018-03-15 12:48:51 +0000189 */
Tony0c955592018-04-04 10:23:36 -0700190 public float[] getOverviewScaleAndTranslationYFactor(Launcher launcher) {
Tony Wickhamb2ddf102018-05-16 12:23:12 -0700191 return new float[] {1.1f, 0f};
Tony3bb5e8e2018-03-14 12:05:00 +0000192 }
193
Sunny Goyal3e3f44c2017-10-23 17:14:52 -0700194 public void onStateEnabled(Launcher launcher) {
195 dispatchWindowStateChanged(launcher);
196 }
Sunny Goyalc99cb172017-10-19 16:15:09 -0700197
198 public void onStateDisabled(Launcher launcher) { }
Sunny Goyalbe93f262017-10-20 17:05:27 -0700199
Sunny Goyal7185dd62018-03-14 17:51:49 -0700200 public int getVisibleElements(Launcher launcher) {
Tony Wickhambd6f05e2018-03-21 08:16:33 -0700201 if (launcher.getDeviceProfile().isVerticalBarLayout()) {
Sunny Goyal56e10192018-05-22 13:22:25 -0700202 return HOTSEAT_ICONS | VERTICAL_SWIPE_INDICATOR;
Tony Wickhambd6f05e2018-03-21 08:16:33 -0700203 }
Sunny Goyal56e10192018-05-22 13:22:25 -0700204 return HOTSEAT_ICONS | HOTSEAT_SEARCH_BOX | VERTICAL_SWIPE_INDICATOR;
Sunny Goyal7185dd62018-03-14 17:51:49 -0700205 }
206
Sunny Goyal228153d2018-01-04 15:35:22 -0800207 /**
208 * Fraction shift in the vertical translation UI and related properties
209 *
210 * @see com.android.launcher3.allapps.AllAppsTransitionController
211 */
212 public float getVerticalProgress(Launcher launcher) {
213 return 1f;
214 }
215
Sunny Goyal927447e2018-05-04 13:19:29 -0700216 public float getWorkspaceScrimAlpha(Launcher launcher) {
217 return 0;
218 }
219
Sunny Goyal3e3f44c2017-10-23 17:14:52 -0700220 public String getDescription(Launcher launcher) {
221 return launcher.getWorkspace().getCurrentPageDescription();
222 }
223
Sunny Goyalbc683e92017-12-06 10:25:07 -0800224 public PageAlphaProvider getWorkspacePageAlphaProvider(Launcher launcher) {
225 if (this != NORMAL || !launcher.getDeviceProfile().shouldFadeAdjacentWorkspaceScreens()) {
226 return DEFAULT_ALPHA_PROVIDER;
227 }
Sunny Goyal228153d2018-01-04 15:35:22 -0800228 final int centerPage = launcher.getWorkspace().getNextPage();
Sunny Goyal0c723352017-12-12 12:02:29 -0800229 return new PageAlphaProvider(ACCEL_2) {
230 @Override
231 public float getPageAlpha(int pageIndex) {
232 return pageIndex != centerPage ? 0 : 1f;
233 }
234 };
Sunny Goyalbc683e92017-12-06 10:25:07 -0800235 }
236
Sunny Goyal49bcf342018-01-11 13:59:53 -0800237 public LauncherState getHistoryForState(LauncherState previousState) {
238 // No history is supported
239 return NORMAL;
240 }
241
Sunny Goyal75c59ac2018-01-15 14:23:11 -0800242 /**
243 * Called when the start transition ends and the user settles on this particular state.
244 */
245 public void onStateTransitionEnd(Launcher launcher) {
Hyunyoung Song4bd47252018-06-05 16:26:32 -0700246 if (this == NORMAL || this == SPRING_LOADED) {
Sunny Goyal75c59ac2018-01-15 14:23:11 -0800247 UiFactory.resetOverview(launcher);
Hyunyoung Song4bd47252018-06-05 16:26:32 -0700248 }
249 if (this == NORMAL) {
Sunny Goyal623eddd2018-03-02 12:24:41 -0800250 // Clear any rotation locks when going to normal state
251 launcher.getRotationHelper().setCurrentStateRequest(REQUEST_NONE);
Sunny Goyal75c59ac2018-01-15 14:23:11 -0800252 }
253 }
254
Sunny Goyale39690b2018-08-02 13:35:07 -0700255 public void onBackPressed(Launcher launcher) {
256 if (this != NORMAL) {
257 LauncherStateManager lsm = launcher.getStateManager();
258 LauncherState lastState = lsm.getLastState();
259 launcher.getUserEventDispatcher().logActionCommand(Action.Command.BACK,
260 containerType, lastState.containerType);
261 lsm.goToState(lastState);
262 }
263 }
264
Sunny Goyal3e3f44c2017-10-23 17:14:52 -0700265 protected static void dispatchWindowStateChanged(Launcher launcher) {
266 launcher.getWindow().getDecorView().sendAccessibilityEvent(TYPE_WINDOW_STATE_CHANGED);
267 }
Sunny Goyalbc683e92017-12-06 10:25:07 -0800268
Sunny Goyal0c723352017-12-12 12:02:29 -0800269 public static abstract class PageAlphaProvider {
Sunny Goyalbc683e92017-12-06 10:25:07 -0800270
Sunny Goyal0c723352017-12-12 12:02:29 -0800271 public final Interpolator interpolator;
272
273 public PageAlphaProvider(Interpolator interpolator) {
274 this.interpolator = interpolator;
275 }
276
277 public abstract float getPageAlpha(int pageIndex);
Sunny Goyalbc683e92017-12-06 10:25:07 -0800278 }
Sunny Goyal4c7f2152017-10-17 17:17:16 -0700279}