2019-12-19 11:50:55 -08:00
|
|
|
/*
|
|
|
|
|
* 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.touch;
|
|
|
|
|
|
2020-04-02 17:20:07 -07:00
|
|
|
import static com.android.launcher3.LauncherAnimUtils.VIEW_TRANSLATE_X;
|
|
|
|
|
import static com.android.launcher3.LauncherAnimUtils.VIEW_TRANSLATE_Y;
|
|
|
|
|
import static com.android.launcher3.touch.SingleAxisSwipeDetector.HORIZONTAL;
|
|
|
|
|
|
2019-12-19 11:50:55 -08:00
|
|
|
import android.content.res.Resources;
|
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;
|
2020-02-14 10:45:55 -08:00
|
|
|
import android.view.Surface;
|
2019-12-19 11:50:55 -08:00
|
|
|
import android.view.VelocityTracker;
|
|
|
|
|
import android.view.View;
|
|
|
|
|
import android.view.accessibility.AccessibilityEvent;
|
|
|
|
|
|
|
|
|
|
import com.android.launcher3.DeviceProfile;
|
|
|
|
|
import com.android.launcher3.PagedView;
|
|
|
|
|
import com.android.launcher3.Utilities;
|
|
|
|
|
import com.android.launcher3.util.OverScroller;
|
|
|
|
|
|
|
|
|
|
public class LandscapePagedViewHandler implements PagedOrientationHandler {
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public int getPrimaryValue(int x, int y) {
|
|
|
|
|
return y;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public int getSecondaryValue(int x, int y) {
|
|
|
|
|
return x;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void delegateScrollTo(PagedView pagedView, int secondaryScroll, int minMaxScroll) {
|
|
|
|
|
pagedView.superScrollTo(secondaryScroll, minMaxScroll);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void delegateScrollBy(PagedView pagedView, int unboundedScroll, int x, int y) {
|
|
|
|
|
pagedView.scrollTo(pagedView.getScrollX() + x, unboundedScroll + y);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void scrollerStartScroll(OverScroller scroller, int newPosition) {
|
|
|
|
|
scroller.startScroll(scroller.getCurrPos(), newPosition - scroller.getCurrPos());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
2020-04-09 17:37:19 -07:00
|
|
|
public void getCurveProperties(PagedView view, Rect insets, CurveProperties out) {
|
2020-04-02 17:20:07 -07:00
|
|
|
out.scroll = view.getScrollY();
|
|
|
|
|
out.halfPageSize = view.getNormalChildHeight() / 2;
|
|
|
|
|
out.halfScreenSize = view.getMeasuredHeight() / 2;
|
2020-04-09 17:37:19 -07:00
|
|
|
out.screenCenter = insets.top + view.getPaddingTop() + out.scroll + out.halfPageSize;
|
2019-12-19 11:50:55 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
2020-02-14 10:45:55 -08:00
|
|
|
public boolean isGoingUp(float displacement) {
|
|
|
|
|
return displacement > 0;
|
2019-12-19 11:50:55 -08:00
|
|
|
}
|
|
|
|
|
|
2020-04-01 12:37:40 -07:00
|
|
|
@Override
|
|
|
|
|
public boolean isLayoutNaturalToLauncher() {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-19 11:50:55 -08:00
|
|
|
@Override
|
2020-02-14 10:45:55 -08:00
|
|
|
public void adjustFloatingIconStartVelocity(PointF velocity) {
|
|
|
|
|
float oldX = velocity.x;
|
|
|
|
|
float oldY = velocity.y;
|
|
|
|
|
velocity.set(-oldY, oldX);
|
2019-12-19 11:50:55 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void delegateScrollTo(PagedView pagedView, int primaryScroll) {
|
|
|
|
|
pagedView.superScrollTo(pagedView.getScrollX(), primaryScroll);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public <T> void set(T target, Int2DAction<T> action, int param) {
|
|
|
|
|
action.call(target, 0, param);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public <T> void set(T target, Float2DAction<T> action, float param) {
|
|
|
|
|
action.call(target, 0, param);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public float getPrimaryDirection(MotionEvent event, int pointerIndex) {
|
|
|
|
|
return event.getY(pointerIndex);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public float getPrimaryVelocity(VelocityTracker velocityTracker, int pointerId) {
|
|
|
|
|
return velocityTracker.getYVelocity(pointerId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public int getMeasuredSize(View view) {
|
|
|
|
|
return view.getMeasuredHeight();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public float getPrimarySize(RectF rect) {
|
|
|
|
|
return rect.height();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public int getSecondaryDimension(View view) {
|
|
|
|
|
return view.getWidth();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public FloatProperty<View> getPrimaryViewTranslate() {
|
|
|
|
|
return VIEW_TRANSLATE_Y;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public FloatProperty<View> getSecondaryViewTranslate() {
|
|
|
|
|
return VIEW_TRANSLATE_X;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void setPrimaryAndResetSecondaryTranslate(View view, float translation) {
|
|
|
|
|
view.setTranslationX(0);
|
|
|
|
|
view.setTranslationY(translation);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public int getPrimaryScroll(View view) {
|
|
|
|
|
return view.getScrollY();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public float getPrimaryScale(View view) {
|
|
|
|
|
return view.getScaleY();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void setMaxScroll(AccessibilityEvent event, int maxScroll) {
|
|
|
|
|
event.setMaxScrollY(maxScroll);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean getRecentsRtlSetting(Resources resources) {
|
|
|
|
|
return !Utilities.isRtl(resources);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public float getDegreesRotated() {
|
|
|
|
|
return 90;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
2020-04-01 12:37:40 -07:00
|
|
|
public void offsetTaskRect(RectF rect, float value, int displayRotation, int launcherRotation) {
|
2020-02-14 10:45:55 -08:00
|
|
|
if (displayRotation == Surface.ROTATION_0) {
|
|
|
|
|
rect.offset(0, value);
|
|
|
|
|
} else if (displayRotation == Surface.ROTATION_90) {
|
2019-12-19 11:50:55 -08:00
|
|
|
rect.offset(value, 0);
|
2020-02-14 10:45:55 -08:00
|
|
|
} else if (displayRotation == Surface.ROTATION_180) {
|
2019-12-19 11:50:55 -08:00
|
|
|
rect.offset(0, -value);
|
|
|
|
|
} else {
|
2020-02-14 10:45:55 -08:00
|
|
|
rect.offset(-value, 0);
|
2019-12-19 11:50:55 -08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public int getChildStart(View view) {
|
|
|
|
|
return view.getTop();
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-09 17:37:19 -07:00
|
|
|
@Override
|
|
|
|
|
public float getChildStartWithTranslation(View view) {
|
|
|
|
|
return view.getTop() + view.getTranslationY();
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-19 11:50:55 -08:00
|
|
|
@Override
|
|
|
|
|
public int getCenterForPage(View view, Rect insets) {
|
|
|
|
|
return (view.getPaddingLeft() + view.getMeasuredWidth() + insets.left
|
|
|
|
|
- insets.right - view.getPaddingRight()) / 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public int getScrollOffsetStart(View view, Rect insets) {
|
|
|
|
|
return insets.top + view.getPaddingTop();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public int getScrollOffsetEnd(View view, Rect insets) {
|
|
|
|
|
return view.getHeight() - view.getPaddingBottom() - insets.bottom;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public SingleAxisSwipeDetector.Direction getOppositeSwipeDirection() {
|
|
|
|
|
return HORIZONTAL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public int getShortEdgeLength(DeviceProfile dp) {
|
|
|
|
|
return dp.heightPx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public int getTaskDismissDirectionFactor() {
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public ChildBounds getChildBounds(View child, int childStart, int pageCenter,
|
|
|
|
|
boolean layoutChild) {
|
|
|
|
|
final int childHeight = child.getMeasuredHeight();
|
|
|
|
|
final int childBottom = childStart + childHeight;
|
|
|
|
|
final int childWidth = child.getMeasuredWidth();
|
|
|
|
|
final int childLeft = pageCenter - childWidth/ 2;
|
|
|
|
|
if (layoutChild) {
|
|
|
|
|
child.layout(childLeft, childStart, childLeft + childWidth, childBottom);
|
|
|
|
|
}
|
|
|
|
|
return new ChildBounds(childHeight, childWidth, childBottom, childLeft);
|
|
|
|
|
}
|
|
|
|
|
}
|