8181dfdf92
To fix the incorrect title information being spoken after a transition state ends, a new function named getTitle is introduced in the LauncherState. This function provides the correct title for the transition state. The default accessibility label is set to R.string.home_screen. All Apps and Overview states override the getTitle function to ensure the correct accessibility label for their respective states. Fix: 265892510 Flag: EXEMPT bugfix Test: Manual with Talkback. With Talkback enabled, navigate from App to Overview. Change-Id: I96b820f310f8b778a149709bca687a5912386246
244 lines
8.5 KiB
Java
244 lines
8.5 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.states;
|
|
|
|
import static com.android.app.animation.Interpolators.DECELERATE_2;
|
|
import static com.android.launcher3.Flags.enableScalingRevealHomeAnimation;
|
|
import static com.android.launcher3.logging.StatsLogManager.LAUNCHER_STATE_OVERVIEW;
|
|
import static com.android.wm.shell.Flags.enableSplitContextual;
|
|
|
|
import android.content.Context;
|
|
import android.graphics.Rect;
|
|
import android.os.SystemProperties;
|
|
|
|
import com.android.launcher3.DeviceProfile;
|
|
import com.android.launcher3.Launcher;
|
|
import com.android.launcher3.LauncherState;
|
|
import com.android.launcher3.R;
|
|
import com.android.launcher3.util.DisplayController;
|
|
import com.android.launcher3.util.Themes;
|
|
import com.android.quickstep.util.BaseDepthController;
|
|
import com.android.quickstep.util.LayoutUtils;
|
|
import com.android.quickstep.views.RecentsView;
|
|
import com.android.quickstep.views.TaskView;
|
|
|
|
/**
|
|
* Definition for overview state
|
|
*/
|
|
public class OverviewState extends LauncherState {
|
|
|
|
private static final int OVERVIEW_SLIDE_IN_DURATION = 380;
|
|
private static final int OVERVIEW_POP_IN_DURATION = 250;
|
|
private static final int OVERVIEW_EXIT_DURATION = 250;
|
|
|
|
protected static final Rect sTempRect = new Rect();
|
|
|
|
private static final int STATE_FLAGS = FLAG_WORKSPACE_ICONS_CAN_BE_DRAGGED
|
|
| FLAG_DISABLE_RESTORE | FLAG_RECENTS_VIEW_VISIBLE | FLAG_WORKSPACE_INACCESSIBLE
|
|
| FLAG_CLOSE_POPUPS;
|
|
|
|
public OverviewState(int id) {
|
|
this(id, STATE_FLAGS);
|
|
}
|
|
|
|
protected OverviewState(int id, int stateFlags) {
|
|
this(id, LAUNCHER_STATE_OVERVIEW, stateFlags);
|
|
}
|
|
|
|
protected OverviewState(int id, int logContainer, int stateFlags) {
|
|
super(id, logContainer, stateFlags);
|
|
}
|
|
|
|
@Override
|
|
public int getTransitionDuration(Context context, boolean isToState) {
|
|
if (isToState) {
|
|
// In gesture modes, overview comes in all the way from the side, so give it more time.
|
|
return DisplayController.getNavigationMode(context).hasGestures
|
|
? OVERVIEW_SLIDE_IN_DURATION
|
|
: OVERVIEW_POP_IN_DURATION;
|
|
} else {
|
|
// When exiting Overview, exit quickly.
|
|
return OVERVIEW_EXIT_DURATION;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public ScaleAndTranslation getWorkspaceScaleAndTranslation(Launcher launcher) {
|
|
RecentsView recentsView = launcher.getOverviewPanel();
|
|
recentsView.getTaskSize(sTempRect);
|
|
float scale;
|
|
DeviceProfile deviceProfile = launcher.getDeviceProfile();
|
|
if (deviceProfile.isTwoPanels) {
|
|
// In two panel layout, width does not include both panels or space between them, so
|
|
// use height instead. We do not use height for handheld, as cell layout can be
|
|
// shorter than a task and we want the workspace to scale down to task size.
|
|
scale = (float) sTempRect.height() / deviceProfile.getCellLayoutHeight();
|
|
} else {
|
|
scale = (float) sTempRect.width() / deviceProfile.getCellLayoutWidth();
|
|
}
|
|
float parallaxFactor = 0.5f;
|
|
return new ScaleAndTranslation(scale, 0, -getDefaultSwipeHeight(launcher) * parallaxFactor);
|
|
}
|
|
|
|
@Override
|
|
public float[] getOverviewScaleAndOffset(Launcher launcher) {
|
|
return new float[] {NO_SCALE, NO_OFFSET};
|
|
}
|
|
|
|
@Override
|
|
public PageAlphaProvider getWorkspacePageAlphaProvider(Launcher launcher) {
|
|
return new PageAlphaProvider(DECELERATE_2) {
|
|
@Override
|
|
public float getPageAlpha(int pageIndex) {
|
|
return 0;
|
|
}
|
|
};
|
|
}
|
|
|
|
@Override
|
|
public int getVisibleElements(Launcher launcher) {
|
|
int elements = CLEAR_ALL_BUTTON | OVERVIEW_ACTIONS;
|
|
DeviceProfile dp = launcher.getDeviceProfile();
|
|
boolean showFloatingSearch;
|
|
if (dp.isPhone) {
|
|
// Only show search in phone overview in portrait mode.
|
|
showFloatingSearch = !dp.isLandscape;
|
|
} else {
|
|
// Only show search in tablet overview if taskbar is not visible.
|
|
showFloatingSearch = !dp.isTaskbarPresent || isTaskbarStashed(launcher);
|
|
}
|
|
if (showFloatingSearch) {
|
|
elements |= FLOATING_SEARCH_BAR;
|
|
}
|
|
if (enableSplitContextual() && launcher.isSplitSelectionActive()) {
|
|
elements &= ~CLEAR_ALL_BUTTON;
|
|
}
|
|
return elements;
|
|
}
|
|
|
|
@Override
|
|
public float getSplitSelectTranslation(Launcher launcher) {
|
|
if (!enableSplitContextual() || !launcher.isSplitSelectionActive()) {
|
|
return 0f;
|
|
}
|
|
RecentsView recentsView = launcher.getOverviewPanel();
|
|
return recentsView.getSplitSelectTranslation();
|
|
}
|
|
|
|
@Override
|
|
public int getFloatingSearchBarRestingMarginBottom(Launcher launcher) {
|
|
return areElementsVisible(launcher, FLOATING_SEARCH_BAR) ? 0
|
|
: super.getFloatingSearchBarRestingMarginBottom(launcher);
|
|
}
|
|
|
|
@Override
|
|
public boolean shouldFloatingSearchBarUsePillWhenUnfocused(Launcher launcher) {
|
|
DeviceProfile dp = launcher.getDeviceProfile();
|
|
return dp.isPhone && !dp.isLandscape;
|
|
}
|
|
|
|
@Override
|
|
public boolean isTaskbarAlignedWithHotseat(Launcher launcher) {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public int getWorkspaceScrimColor(Launcher launcher) {
|
|
return Themes.getAttrColor(launcher, R.attr.overviewScrimColor);
|
|
}
|
|
|
|
@Override
|
|
public boolean displayOverviewTasksAsGrid(DeviceProfile deviceProfile) {
|
|
return deviceProfile.isTablet;
|
|
}
|
|
|
|
@Override
|
|
public boolean disallowTaskbarGlobalDrag() {
|
|
// Disable global drag in overview
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public boolean allowTaskbarInitialSplitSelection() {
|
|
// Allow split select from taskbar items in overview
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public String getDescription(Launcher launcher) {
|
|
return launcher.getString(R.string.accessibility_recent_apps);
|
|
}
|
|
|
|
@Override
|
|
public int getTitle() {
|
|
return R.string.accessibility_recent_apps;
|
|
}
|
|
|
|
public static float getDefaultSwipeHeight(Launcher launcher) {
|
|
return LayoutUtils.getDefaultSwipeHeight(launcher, launcher.getDeviceProfile());
|
|
}
|
|
|
|
@Override
|
|
protected float getDepthUnchecked(Context context) {
|
|
// TODO(178661709): revert to always scaled
|
|
if (enableScalingRevealHomeAnimation()) {
|
|
return SystemProperties.getBoolean("ro.launcher.depth.overview", true)
|
|
? BaseDepthController.DEPTH_70_PERCENT
|
|
: BaseDepthController.DEPTH_0_PERCENT;
|
|
} else {
|
|
return SystemProperties.getBoolean("ro.launcher.depth.overview", true) ? 1 : 0;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onBackInvoked(Launcher launcher) {
|
|
RecentsView recentsView = launcher.getOverviewPanel();
|
|
TaskView taskView = recentsView.getRunningTaskView();
|
|
if (taskView != null) {
|
|
if (recentsView.isTaskViewFullyVisible(taskView)) {
|
|
taskView.launchTasks();
|
|
} else {
|
|
recentsView.snapToPage(recentsView.indexOfChild(taskView));
|
|
}
|
|
} else {
|
|
super.onBackInvoked(launcher);
|
|
}
|
|
}
|
|
|
|
public static OverviewState newBackgroundState(int id) {
|
|
return new BackgroundAppState(id);
|
|
}
|
|
|
|
public static OverviewState newSwitchState(int id) {
|
|
return new QuickSwitchState(id);
|
|
}
|
|
|
|
/**
|
|
* New Overview substate that represents the overview in modal mode (one task shown on its own)
|
|
*/
|
|
public static OverviewState newModalTaskState(int id) {
|
|
return new OverviewModalTaskState(id);
|
|
}
|
|
|
|
/**
|
|
* New Overview substate representing state where 1 app for split screen has been selected and
|
|
* pinned and user is selecting the second one
|
|
*/
|
|
public static OverviewState newSplitSelectState(int id) {
|
|
return new SplitScreenSelectState(id);
|
|
}
|
|
}
|