6cd95cd2d8
- Remove PLAY_ATOMIC_OVERVIEW_SCALE and PLAY_ATOMIC_OVERVIEW_PEEK - Remove complicated parallel atomic animation support from AbstractStateChangeTouchController and subclasses - Remove some code related to going between Overview <-> AllApps Test: Swipe between states in all 3 navigation modes Bug: 175137718 Change-Id: Ice314d46946c3a983cdc6ccf1a67effb5da9156e
45 lines
1.6 KiB
Java
45 lines
1.6 KiB
Java
/*
|
|
* Copyright (C) 2019 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.touchcontrollers;
|
|
|
|
import com.android.launcher3.Launcher;
|
|
import com.android.launcher3.LauncherState;
|
|
import com.android.launcher3.touch.SingleAxisSwipeDetector;
|
|
|
|
public class TransposedQuickSwitchTouchController extends QuickSwitchTouchController {
|
|
|
|
public TransposedQuickSwitchTouchController(Launcher launcher) {
|
|
super(launcher, SingleAxisSwipeDetector.VERTICAL);
|
|
}
|
|
|
|
@Override
|
|
protected LauncherState getTargetState(LauncherState fromState, boolean isDragTowardPositive) {
|
|
return super.getTargetState(fromState,
|
|
isDragTowardPositive ^ mLauncher.getDeviceProfile().isSeascape());
|
|
}
|
|
|
|
@Override
|
|
protected float initCurrentAnimation() {
|
|
float multiplier = super.initCurrentAnimation();
|
|
return mLauncher.getDeviceProfile().isSeascape() ? multiplier : -multiplier;
|
|
}
|
|
|
|
@Override
|
|
protected float getShiftRange() {
|
|
return mLauncher.getDeviceProfile().heightPx / 2f;
|
|
}
|
|
}
|