2019-12-19 11:50:55 -08:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2020 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.touch;
|
|
|
|
|
|
|
|
|
|
import android.content.res.Resources;
|
|
|
|
|
import android.graphics.Canvas;
|
2020-04-01 20:13:12 -07:00
|
|
|
import android.graphics.Matrix;
|
2020-02-14 10:45:55 -08:00
|
|
|
import android.graphics.PointF;
|
2019-12-19 11:50:55 -08:00
|
|
|
import android.graphics.Rect;
|
|
|
|
|
import android.graphics.RectF;
|
|
|
|
|
import android.util.FloatProperty;
|
|
|
|
|
import android.view.MotionEvent;
|
|
|
|
|
import android.view.VelocityTracker;
|
|
|
|
|
import android.view.View;
|
|
|
|
|
import android.view.accessibility.AccessibilityEvent;
|
2020-04-15 14:13:38 -07:00
|
|
|
import android.widget.LinearLayout;
|
2019-12-19 11:50:55 -08:00
|
|
|
|
|
|
|
|
import com.android.launcher3.DeviceProfile;
|
|
|
|
|
import com.android.launcher3.PagedView;
|
|
|
|
|
import com.android.launcher3.util.OverScroller;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Abstraction layer to separate horizontal and vertical specific implementations
|
|
|
|
|
* for {@link com.android.launcher3.PagedView}. Majority of these implementations are (should be) as
|
|
|
|
|
* simple as choosing the correct X and Y analogous methods.
|
|
|
|
|
*/
|
|
|
|
|
public interface PagedOrientationHandler {
|
|
|
|
|
|
2020-04-03 15:58:45 -07:00
|
|
|
PagedOrientationHandler PORTRAIT = new PortraitPagedViewHandler();
|
|
|
|
|
PagedOrientationHandler LANDSCAPE = new LandscapePagedViewHandler();
|
|
|
|
|
PagedOrientationHandler SEASCAPE = new SeascapePagedViewHandler();
|
|
|
|
|
|
2019-12-19 11:50:55 -08:00
|
|
|
interface Int2DAction<T> {
|
|
|
|
|
void call(T target, int x, int y);
|
|
|
|
|
}
|
|
|
|
|
interface Float2DAction<T> {
|
|
|
|
|
void call(T target, float x, float y);
|
|
|
|
|
}
|
|
|
|
|
Int2DAction<View> VIEW_SCROLL_BY = View::scrollBy;
|
|
|
|
|
Int2DAction<View> VIEW_SCROLL_TO = View::scrollTo;
|
|
|
|
|
Float2DAction<Canvas> CANVAS_TRANSLATE = Canvas::translate;
|
2020-04-01 20:13:12 -07:00
|
|
|
Float2DAction<Matrix> MATRIX_POST_TRANSLATE = Matrix::postTranslate;
|
|
|
|
|
|
2019-12-19 11:50:55 -08:00
|
|
|
<T> void set(T target, Int2DAction<T> action, int param);
|
|
|
|
|
<T> void set(T target, Float2DAction<T> action, float param);
|
|
|
|
|
float getPrimaryDirection(MotionEvent event, int pointerIndex);
|
|
|
|
|
float getPrimaryVelocity(VelocityTracker velocityTracker, int pointerId);
|
|
|
|
|
int getMeasuredSize(View view);
|
|
|
|
|
float getPrimarySize(RectF rect);
|
2020-04-19 19:21:29 -07:00
|
|
|
int getClearAllScrollOffset(View view, boolean isRtl);
|
2019-12-19 11:50:55 -08:00
|
|
|
int getSecondaryDimension(View view);
|
|
|
|
|
FloatProperty<View> getPrimaryViewTranslate();
|
|
|
|
|
FloatProperty<View> getSecondaryViewTranslate();
|
|
|
|
|
void setPrimaryAndResetSecondaryTranslate(View view, float translation);
|
|
|
|
|
int getPrimaryScroll(View view);
|
|
|
|
|
float getPrimaryScale(View view);
|
|
|
|
|
int getChildStart(View view);
|
2020-04-09 17:37:19 -07:00
|
|
|
float getChildStartWithTranslation(View view);
|
2019-12-19 11:50:55 -08:00
|
|
|
int getCenterForPage(View view, Rect insets);
|
|
|
|
|
int getScrollOffsetStart(View view, Rect insets);
|
|
|
|
|
int getScrollOffsetEnd(View view, Rect insets);
|
|
|
|
|
SingleAxisSwipeDetector.Direction getOppositeSwipeDirection();
|
2020-08-06 15:04:51 -07:00
|
|
|
int getPrimaryTranslationDirectionFactor();
|
2019-12-19 11:50:55 -08:00
|
|
|
int getTaskDismissDirectionFactor();
|
2020-05-12 12:31:44 -07:00
|
|
|
int getTaskDragDisplacementFactor(boolean isRtl);
|
2019-12-19 11:50:55 -08:00
|
|
|
ChildBounds getChildBounds(View child, int childStart, int pageCenter, boolean layoutChild);
|
|
|
|
|
void setMaxScroll(AccessibilityEvent event, int maxScroll);
|
|
|
|
|
boolean getRecentsRtlSetting(Resources resources);
|
|
|
|
|
float getDegreesRotated();
|
2020-05-03 21:39:06 -07:00
|
|
|
int getRotation();
|
2019-12-19 11:50:55 -08:00
|
|
|
int getPrimaryValue(int x, int y);
|
|
|
|
|
int getSecondaryValue(int x, int y);
|
|
|
|
|
void delegateScrollTo(PagedView pagedView, int secondaryScroll, int primaryScroll);
|
|
|
|
|
/** Uses {@params pagedView}.getScroll[X|Y]() method for the secondary amount*/
|
|
|
|
|
void delegateScrollTo(PagedView pagedView, int primaryScroll);
|
|
|
|
|
void delegateScrollBy(PagedView pagedView, int unboundedScroll, int x, int y);
|
|
|
|
|
void scrollerStartScroll(OverScroller scroller, int newPosition);
|
2020-04-09 17:37:19 -07:00
|
|
|
void getCurveProperties(PagedView view, Rect insets, CurveProperties out);
|
2020-05-12 12:31:44 -07:00
|
|
|
boolean isGoingUp(float displacement, boolean isRtl);
|
2020-04-01 12:37:40 -07:00
|
|
|
boolean isLayoutNaturalToLauncher();
|
2020-04-15 14:13:38 -07:00
|
|
|
float getTaskMenuX(float x, View thumbnailView);
|
|
|
|
|
float getTaskMenuY(float y, View thumbnailView);
|
|
|
|
|
int getTaskMenuWidth(View view);
|
2020-07-10 11:55:06 -07:00
|
|
|
int getTaskMenuLayoutOrientation(boolean canRecentsActivityRotate, LinearLayout taskMenuLayout);
|
2020-04-15 14:13:38 -07:00
|
|
|
void setLayoutParamsForTaskMenuOptionItem(LinearLayout.LayoutParams lp);
|
2020-06-24 20:52:26 -07:00
|
|
|
int getDistanceToBottomOfRect(DeviceProfile dp, Rect rect);
|
2019-12-19 11:50:55 -08:00
|
|
|
|
2020-02-14 10:45:55 -08:00
|
|
|
/**
|
|
|
|
|
* Maps the velocity from the coordinate plane of the foreground app to that
|
|
|
|
|
* of Launcher's (which now will always be portrait)
|
|
|
|
|
*/
|
|
|
|
|
void adjustFloatingIconStartVelocity(PointF velocity);
|
|
|
|
|
|
2020-04-02 17:20:07 -07:00
|
|
|
class CurveProperties {
|
|
|
|
|
public int scroll;
|
|
|
|
|
public int halfPageSize;
|
|
|
|
|
public int screenCenter;
|
|
|
|
|
public int halfScreenSize;
|
Fix adjacent task offset distance
Instead of calculating an overall distance for tasks to translate
based on RecentsView width, calculate the distance for the tasks
to the left and right of the midpoint based on how far the first
adjacent tasks in those directions are from being offscreen.
Changes made to make "distance to offscreen" calculations possible:
- Update TaskView curve scale to reach final scale as soon as it is
completely offscreen. Before, it would reach its final scale just
shy of that point (calculations were off).
- As we update RecentsView scale, calculate how much the new scale
will push out tasks that are just offscreen.
- With both above, we can calculate the scale and position of a
TaskView such that it is just offscreen, and interpolate
between its current position and that position.
Tests:
- Task comes in immediately when quick switching from home, and
doesn't shift as you swipe directly upwards.
- When swiping far up from an app, tasks come in from all the way
offscreen, and cover distance appropriately (e.g. if you're
scrolled a bit to the right when you pause, the left adjacent
app will move faster to cover the farther distance).
- Task modalness: entering Select mode now animates adjacent tasks
at the same rate as the scaling up, because they move only the
distance needed to get offscreen (before they moved way too far
and thus seemed to be much faster than the rest of the animation).
Bug: 149934536
Change-Id: Ie3fffe0e5c304cb16e7637f058f5ce72cee40aeb
Merged-In: Ie3fffe0e5c304cb16e7637f058f5ce72cee40aeb
2020-07-07 19:25:25 -07:00
|
|
|
public float pageParentScale;
|
2019-12-19 11:50:55 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class ChildBounds {
|
|
|
|
|
|
|
|
|
|
public final int primaryDimension;
|
|
|
|
|
public final int secondaryDimension;
|
|
|
|
|
public final int childPrimaryEnd;
|
|
|
|
|
public final int childSecondaryEnd;
|
|
|
|
|
|
|
|
|
|
ChildBounds(int primaryDimension, int secondaryDimension, int childPrimaryEnd,
|
|
|
|
|
int childSecondaryEnd) {
|
|
|
|
|
this.primaryDimension = primaryDimension;
|
|
|
|
|
this.secondaryDimension = secondaryDimension;
|
|
|
|
|
this.childPrimaryEnd = childPrimaryEnd;
|
|
|
|
|
this.childSecondaryEnd = childSecondaryEnd;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|