5ee3d98641
Flag: EXEMPT LEGACY
CONTINUOUS_VIEW_TREE_CAPTURE
ALL_APPS_GONE_VISIBILITY
ENABLE_BACK_SWIPE_HOME_ANIMATION
ENABLE_DYNAMIC_TASKBAR_THRESHOLDS
PREEMPTIVE_UNFOLD_ANIMATION_START
ENABLE_NEW_GESTURE_NAV_TUTORIAL
ENABLE_ENFORCED_ROUNDED_CORNERS
ENABLE_TRACKPAD_GESTURE
ENABLE_KEYBOARD_QUICK_SWITCH
ENABLE_KEYBOARD_TASKBAR_TOGGLE
ENABLE_ALL_APPS_RV_PREINFLATION
Test: Presubmit
Bug: 270395171, 291651514, 270393426, 294252473,
270397209, 270396257, 270393258, 271010401,
270396844, 281726846, 288161355
Change-Id: I6ef1e12dfc2203a4cca8e91aa291485f1ff24c42
83 lines
3.1 KiB
Java
83 lines
3.1 KiB
Java
/*
|
|
* Copyright (C) 2023 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;
|
|
|
|
import static com.android.launcher3.Utilities.dpToPx;
|
|
import static com.android.launcher3.Utilities.dpiFromPx;
|
|
|
|
import android.content.res.Resources;
|
|
import android.util.DisplayMetrics;
|
|
|
|
import androidx.core.content.res.ResourcesCompat;
|
|
|
|
import com.android.launcher3.DeviceProfile;
|
|
import com.android.launcher3.R;
|
|
|
|
/**
|
|
* Utility class that contains the different taskbar thresholds logic.
|
|
*/
|
|
public class TaskbarThresholdUtils {
|
|
|
|
// We divide the screen into this many parts, and use the result to scale the thresholds to
|
|
// any size device. Note that this value was calculated arbitrarily by using two tablet devices
|
|
// as data points.
|
|
private static final float SCREEN_UNITS = 1 / 80f;
|
|
|
|
private static int getThreshold(Resources r, DeviceProfile dp, int thresholdDimen,
|
|
int multiplierDimen) {
|
|
float landscapeScreenHeight = dp.isLandscape ? dp.heightPx : dp.widthPx;
|
|
float screenPart = (landscapeScreenHeight * SCREEN_UNITS);
|
|
float defaultDp = dpiFromPx(screenPart, DisplayMetrics.DENSITY_DEVICE_STABLE);
|
|
float thisDp = dpToPx(defaultDp);
|
|
float multiplier = ResourcesCompat.getFloat(r, multiplierDimen);
|
|
float value = (thisDp) * multiplier;
|
|
|
|
return Math.round(value);
|
|
}
|
|
|
|
/**
|
|
* Returns the threshold that determines if we should show taskbar.
|
|
*/
|
|
public static int getFromNavThreshold(Resources r, DeviceProfile dp) {
|
|
return getThreshold(r, dp, R.dimen.taskbar_from_nav_threshold,
|
|
R.dimen.taskbar_nav_threshold_mult);
|
|
}
|
|
|
|
/**
|
|
* Returns the threshold that we start moving the app window.
|
|
*/
|
|
public static int getAppWindowThreshold(Resources r, DeviceProfile dp) {
|
|
return getThreshold(r, dp, R.dimen.taskbar_app_window_threshold,
|
|
R.dimen.taskbar_app_window_threshold_mult);
|
|
}
|
|
|
|
/**
|
|
* Returns the threshold for whether we land in home or overview.
|
|
*/
|
|
public static int getHomeOverviewThreshold(Resources r, DeviceProfile dp) {
|
|
return getThreshold(r, dp, R.dimen.taskbar_home_overview_threshold,
|
|
R.dimen.taskbar_home_overview_threshold_mult);
|
|
}
|
|
|
|
/**
|
|
* Returns the threshold that we use to allow swipe to catch up to finger.
|
|
*/
|
|
public static int getCatchUpThreshold(Resources r, DeviceProfile dp) {
|
|
return getThreshold(r, dp, R.dimen.taskbar_catch_up_threshold,
|
|
R.dimen.taskbar_catch_up_threshold_mult);
|
|
}
|
|
}
|