blob: 8648ae537ada33af896b3870b54e60f8eb4132fe [file] [log] [blame]
Winson Chung321e9ee2010-08-09 13:37:56 -07001/*
Adam Cohen7d30a372013-07-01 17:03:59 -07002 * Copyright (C) 2012 The Android Open Source Project
Winson Chung321e9ee2010-08-09 13:37:56 -07003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Daniel Sandler325dc232013-06-05 22:57:57 -040017package com.android.launcher3;
Winson Chung321e9ee2010-08-09 13:37:56 -070018
Winson Chung228a0fa2011-01-26 22:14:13 -080019import android.animation.Animator;
Winson Chung228a0fa2011-01-26 22:14:13 -080020import android.animation.AnimatorListenerAdapter;
Adam Cohen7d30a372013-07-01 17:03:59 -070021import android.animation.AnimatorSet;
Sunny Goyal3e2ff8a2015-04-15 16:31:22 -070022import android.animation.LayoutTransition;
Adam Cohen7d30a372013-07-01 17:03:59 -070023import android.animation.ObjectAnimator;
24import android.animation.TimeInterpolator;
Winson Chung321e9ee2010-08-09 13:37:56 -070025import android.content.Context;
Adam Cohen9c4949e2010-10-05 12:27:22 -070026import android.content.res.TypedArray;
Winson Chung321e9ee2010-08-09 13:37:56 -070027import android.graphics.Canvas;
Adam Cohen7d30a372013-07-01 17:03:59 -070028import android.graphics.Matrix;
Winson Chung321e9ee2010-08-09 13:37:56 -070029import android.graphics.Rect;
Svetoslav Ganov08055f62012-05-15 11:06:36 -070030import android.os.Bundle;
Winson Chung321e9ee2010-08-09 13:37:56 -070031import android.os.Parcel;
32import android.os.Parcelable;
33import android.util.AttributeSet;
Adam Cohen7d30a372013-07-01 17:03:59 -070034import android.util.DisplayMetrics;
Winson Chung785d2eb2011-04-14 16:08:02 -070035import android.util.Log;
Winson Chung185d7162011-02-28 13:47:29 -080036import android.view.InputDevice;
37import android.view.KeyEvent;
Winson Chung321e9ee2010-08-09 13:37:56 -070038import android.view.MotionEvent;
39import android.view.VelocityTracker;
40import android.view.View;
41import android.view.ViewConfiguration;
42import android.view.ViewGroup;
43import android.view.ViewParent;
Winson Chung6a0f57d2011-06-29 20:10:49 -070044import android.view.accessibility.AccessibilityEvent;
Winson Chungc27d1bb2011-09-29 12:07:42 -070045import android.view.accessibility.AccessibilityManager;
Winson Chung6a0f57d2011-06-29 20:10:49 -070046import android.view.accessibility.AccessibilityNodeInfo;
Adam Cohene0f66b52010-11-23 15:06:07 -080047import android.view.animation.Interpolator;
Winson Chung321e9ee2010-08-09 13:37:56 -070048
Adam Cohen091440a2015-03-18 14:16:05 -070049import com.android.launcher3.util.Thunk;
50
Winson Chung6a0f57d2011-06-29 20:10:49 -070051import java.util.ArrayList;
52
Winson Chung321e9ee2010-08-09 13:37:56 -070053/**
54 * An abstraction of the original Workspace which supports browsing through a
Michael Jurka0142d492010-08-25 17:46:15 -070055 * sequential list of "pages"
Winson Chung321e9ee2010-08-09 13:37:56 -070056 */
Michael Jurka8b805b12012-04-18 14:23:14 -070057public abstract class PagedView extends ViewGroup implements ViewGroup.OnHierarchyChangeListener {
Winson Chung321e9ee2010-08-09 13:37:56 -070058 private static final String TAG = "PagedView";
Winson Chung785d2eb2011-04-14 16:08:02 -070059 private static final boolean DEBUG = false;
Michael Jurka0142d492010-08-25 17:46:15 -070060 protected static final int INVALID_PAGE = -1;
Winson Chung321e9ee2010-08-09 13:37:56 -070061
Winson Chung86f77532010-08-24 11:08:22 -070062 // the min drag distance for a fling to register, to prevent random page shifts
Winson Chung9cfd25f2010-10-24 16:09:28 -070063 private static final int MIN_LENGTH_FOR_FLING = 25;
Winson Chung321e9ee2010-08-09 13:37:56 -070064
Adam Cohen7d30a372013-07-01 17:03:59 -070065 protected static final int PAGE_SNAP_ANIMATION_DURATION = 750;
Adam Cohen1e4359c2014-08-18 13:12:16 -070066 protected static final int OVER_SCROLL_PAGE_SNAP_ANIMATION_DURATION = 350;
Winson Chungf0c6ae02012-03-21 16:10:31 -070067 protected static final int SLOW_PAGE_SNAP_ANIMATION_DURATION = 950;
Michael Jurka0142d492010-08-25 17:46:15 -070068 protected static final float NANOTIME_DIV = 1000000000.0f;
Winson Chung321e9ee2010-08-09 13:37:56 -070069
Adam Cohenb5ba0972011-09-07 18:02:31 -070070 private static final float OVERSCROLL_ACCELERATE_FACTOR = 2;
Adam Cohen1e4359c2014-08-18 13:12:16 -070071 private static final float OVERSCROLL_DAMP_FACTOR = 0.07f;
Winson Chung867ca622012-02-21 15:48:35 -080072
Adam Cohenb64cb5a2011-02-15 13:53:42 -080073 private static final float RETURN_TO_ORIGINAL_PAGE_THRESHOLD = 0.33f;
Adam Cohen00481b32011-11-18 12:03:48 -080074 // The page is moved more than halfway, automatically move to the next page on touch up.
75 private static final float SIGNIFICANT_MOVE_THRESHOLD = 0.4f;
Adam Cohen68d73932010-11-15 10:50:58 -080076
Sunny Goyal8e2133b2015-05-06 13:39:07 -070077 private static final float MAX_SCROLL_PROGRESS = 1.0f;
78
Adam Cohen265b9a62011-12-07 14:37:18 -080079 // The following constants need to be scaled based on density. The scaled versions will be
80 // assigned to the corresponding member variables below.
81 private static final int FLING_THRESHOLD_VELOCITY = 500;
82 private static final int MIN_SNAP_VELOCITY = 1500;
83 private static final int MIN_FLING_VELOCITY = 250;
84
Adam Cohen7d30a372013-07-01 17:03:59 -070085 // We are disabling touch interaction of the widget region for factory ROM.
86 private static final boolean DISABLE_TOUCH_INTERACTION = false;
Adam Cohenf358a4b2013-07-23 16:47:31 -070087 private static final boolean DISABLE_TOUCH_SIDE_PAGES = true;
Adam Cohen7d30a372013-07-01 17:03:59 -070088
Adam Cohen21cd0022013-10-09 18:57:02 -070089 public static final int INVALID_RESTORE_PAGE = -1001;
90
Adam Cohenf358a4b2013-07-23 16:47:31 -070091 private boolean mFreeScroll = false;
92 private int mFreeScrollMinScrollX = -1;
93 private int mFreeScrollMaxScrollX = -1;
94
Winson Chung8aad6102012-05-11 16:27:49 -070095 static final int AUTOMATIC_PAGE_SPACING = -1;
96
Adam Cohen265b9a62011-12-07 14:37:18 -080097 protected int mFlingThresholdVelocity;
98 protected int mMinFlingVelocity;
99 protected int mMinSnapVelocity;
Michael Jurka0142d492010-08-25 17:46:15 -0700100
Adam Cohenb5ba0972011-09-07 18:02:31 -0700101 protected float mDensity;
Michael Jurka0142d492010-08-25 17:46:15 -0700102 protected float mSmoothingTime;
103 protected float mTouchX;
104
105 protected boolean mFirstLayout = true;
Adam Cohen410f3cd2013-09-22 12:09:32 -0700106 private int mNormalChildHeight;
Michael Jurka0142d492010-08-25 17:46:15 -0700107
108 protected int mCurrentPage;
Adam Cohen21cd0022013-10-09 18:57:02 -0700109 protected int mRestorePage = INVALID_RESTORE_PAGE;
Adam Cohenf698c6e2013-07-17 18:44:25 -0700110 protected int mChildCountOnLastLayout;
Adam Cohene61a9a22013-06-11 15:45:31 -0700111
Michael Jurka0142d492010-08-25 17:46:15 -0700112 protected int mNextPage = INVALID_PAGE;
Adam Cohen68d73932010-11-15 10:50:58 -0800113 protected int mMaxScrollX;
Adam Cohenf9618852013-11-08 06:45:03 -0800114 protected LauncherScroller mScroller;
115 private Interpolator mDefaultInterpolator;
Winson Chung321e9ee2010-08-09 13:37:56 -0700116 private VelocityTracker mVelocityTracker;
Adam Cohen091440a2015-03-18 14:16:05 -0700117 @Thunk int mPageSpacing = 0;
Winson Chung321e9ee2010-08-09 13:37:56 -0700118
Adam Cohen7d30a372013-07-01 17:03:59 -0700119 private float mParentDownMotionX;
120 private float mParentDownMotionY;
Winson Chung321e9ee2010-08-09 13:37:56 -0700121 private float mDownMotionX;
Adam Cohen7d30a372013-07-01 17:03:59 -0700122 private float mDownMotionY;
123 private float mDownScrollX;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700124 private float mDragViewBaselineLeft;
Michael Jurka7426c422010-11-11 15:23:47 -0800125 protected float mLastMotionX;
Winson Chungc0844aa2011-02-02 15:25:58 -0800126 protected float mLastMotionXRemainder;
Michael Jurka7426c422010-11-11 15:23:47 -0800127 protected float mLastMotionY;
Adam Cohenaefd4e12011-02-14 16:39:38 -0800128 protected float mTotalMotionX;
Adam Cohenf34bab52010-09-30 14:11:56 -0700129 private int mLastScreenCenter = -1;
Adam Cohenedb40762013-07-18 16:45:45 -0700130
Adam Cohendbdff6b2013-09-18 19:09:15 -0700131 private boolean mCancelTap;
132
Adam Cohenedb40762013-07-18 16:45:45 -0700133 private int[] mPageScrolls;
Winson Chung321e9ee2010-08-09 13:37:56 -0700134
Michael Jurka0142d492010-08-25 17:46:15 -0700135 protected final static int TOUCH_STATE_REST = 0;
136 protected final static int TOUCH_STATE_SCROLLING = 1;
137 protected final static int TOUCH_STATE_PREV_PAGE = 2;
138 protected final static int TOUCH_STATE_NEXT_PAGE = 3;
Adam Cohen7d30a372013-07-01 17:03:59 -0700139 protected final static int TOUCH_STATE_REORDERING = 4;
140
Adam Cohene45440e2010-10-14 18:33:38 -0700141 protected final static float ALPHA_QUANTIZE_LEVEL = 0.0001f;
Winson Chung321e9ee2010-08-09 13:37:56 -0700142
Michael Jurka0142d492010-08-25 17:46:15 -0700143 protected int mTouchState = TOUCH_STATE_REST;
Adam Cohen2591f6a2011-10-25 14:36:40 -0700144 protected boolean mForceScreenScrolled = false;
Adam Cohencae7f572013-11-04 14:42:52 -0800145
Michael Jurka0142d492010-08-25 17:46:15 -0700146 protected OnLongClickListener mLongClickListener;
Winson Chung321e9ee2010-08-09 13:37:56 -0700147
Michael Jurka7426c422010-11-11 15:23:47 -0800148 protected int mTouchSlop;
Winson Chung321e9ee2010-08-09 13:37:56 -0700149 private int mPagingTouchSlop;
150 private int mMaximumVelocity;
Winson Chungdf4b83d2010-10-20 17:49:27 -0700151 protected int mPageLayoutWidthGap;
152 protected int mPageLayoutHeightGap;
Michael Jurka87b14902011-05-25 22:13:09 -0700153 protected int mCellCountX = 0;
154 protected int mCellCountY = 0;
Winson Chung7da10252010-10-28 16:07:04 -0700155 protected boolean mCenterPagesVertically;
Adam Cohen68d73932010-11-15 10:50:58 -0800156 protected boolean mAllowOverScroll = true;
157 protected int mUnboundedScrollX;
Michael Jurkadde558b2011-11-09 22:09:06 -0800158 protected int[] mTempVisiblePagesRange = new int[2];
Michael Jurka5e368ff2012-05-14 23:13:15 -0700159 protected boolean mForceDrawAllChildrenNextFrame;
Winson Chung321e9ee2010-08-09 13:37:56 -0700160
Michael Jurka8b805b12012-04-18 14:23:14 -0700161 // mOverScrollX is equal to getScrollX() when we're within the normal scroll range. Otherwise
Adam Cohenebea84d2011-11-09 17:20:41 -0800162 // it is equal to the scaled overscroll position. We use a separate value so as to prevent
163 // the screens from continuing to translate beyond the normal bounds.
164 protected int mOverScrollX;
165
Michael Jurka5f1c5092010-09-03 14:15:02 -0700166 protected static final int INVALID_POINTER = -1;
Winson Chung321e9ee2010-08-09 13:37:56 -0700167
Michael Jurka5f1c5092010-09-03 14:15:02 -0700168 protected int mActivePointerId = INVALID_POINTER;
Winson Chung321e9ee2010-08-09 13:37:56 -0700169
Winson Chung86f77532010-08-24 11:08:22 -0700170 private PageSwitchListener mPageSwitchListener;
Winson Chung321e9ee2010-08-09 13:37:56 -0700171
Michael Jurka0142d492010-08-25 17:46:15 -0700172 // If true, modify alpha of neighboring pages as user scrolls left/right
Adam Cohen7d30a372013-07-01 17:03:59 -0700173 protected boolean mFadeInAdjacentScreens = false;
Michael Jurka0142d492010-08-25 17:46:15 -0700174
175 // It true, use a different slop parameter (pagingTouchSlop = 2 * touchSlop) for deciding
176 // to switch to a new page
177 protected boolean mUsePagingTouchSlop = true;
178
Michael Jurka8b805b12012-04-18 14:23:14 -0700179 // If true, the subclass should directly update scrollX itself in its computeScroll method
Michael Jurka0142d492010-08-25 17:46:15 -0700180 // (SmoothPagedView does this)
181 protected boolean mDeferScrollUpdate = false;
182
Patrick Dubroy1262e362010-10-06 15:49:50 -0700183 protected boolean mIsPageMoving = false;
184
Adam Cohenc2d6e892014-10-16 09:49:24 -0700185 private boolean mWasInOverscroll = false;
186
Winson Chungd2be3812013-07-16 11:11:32 -0700187 // Page Indicator
Adam Cohen091440a2015-03-18 14:16:05 -0700188 @Thunk int mPageIndicatorViewId;
189 @Thunk PageIndicator mPageIndicator;
Adam Cohen7d30a372013-07-01 17:03:59 -0700190 // The viewport whether the pages are to be contained (the actual view may be larger than the
191 // viewport)
192 private Rect mViewport = new Rect();
193
194 // Reordering
195 // We use the min scale to determine how much to expand the actually PagedView measured
196 // dimensions such that when we are zoomed out, the view is not clipped
Sunny Goyal8e2133b2015-05-06 13:39:07 -0700197 private static int REORDERING_DROP_REPOSITION_DURATION = 200;
198 private static int REORDERING_REORDER_REPOSITION_DURATION = 300;
199 private static int REORDERING_SIDE_PAGE_HOVER_TIMEOUT = 80;
200
Adam Cohen7d30a372013-07-01 17:03:59 -0700201 private float mMinScale = 1f;
Winson Chungc58497e2013-09-03 17:48:37 -0700202 private boolean mUseMinScale = false;
Adam Cohen7d30a372013-07-01 17:03:59 -0700203 protected View mDragView;
204 protected AnimatorSet mZoomInOutAnim;
205 private Runnable mSidePageHoverRunnable;
Adam Cohen091440a2015-03-18 14:16:05 -0700206 @Thunk int mSidePageHoverIndex = -1;
Adam Cohen7d30a372013-07-01 17:03:59 -0700207 // This variable's scope is only for the duration of startReordering() and endReordering()
208 private boolean mReorderingStarted = false;
209 // This variable's scope is for the duration of startReordering() and after the zoomIn()
210 // animation after endReordering()
211 private boolean mIsReordering;
212 // The runnable that settles the page after snapToPage and animateDragViewToOriginalPosition
213 private int NUM_ANIMATIONS_RUNNING_BEFORE_ZOOM_OUT = 2;
214 private int mPostReorderingPreZoomInRemainingAnimationCount;
215 private Runnable mPostReorderingPreZoomInRunnable;
216
Adam Cohen7d30a372013-07-01 17:03:59 -0700217 // Convenience/caching
Sunny Goyal8e2133b2015-05-06 13:39:07 -0700218 private static final Matrix sTmpInvMatrix = new Matrix();
219 private static final float[] sTmpPoint = new float[2];
220 private static final int[] sTmpIntPoint = new int[2];
221 private static final Rect sTmpRect = new Rect();
Winson Chungb44b5242011-06-13 11:32:14 -0700222
John Spurlock77e1f472013-09-11 10:09:51 -0400223 protected final Rect mInsets = new Rect();
Sunny Goyal70660032015-05-14 00:07:08 -0700224 protected final boolean mIsRtl;
John Spurlock77e1f472013-09-11 10:09:51 -0400225
Winson Chung86f77532010-08-24 11:08:22 -0700226 public interface PageSwitchListener {
227 void onPageSwitch(View newPage, int newPageIndex);
Winson Chung321e9ee2010-08-09 13:37:56 -0700228 }
229
Winson Chung321e9ee2010-08-09 13:37:56 -0700230 public PagedView(Context context) {
231 this(context, null);
232 }
233
234 public PagedView(Context context, AttributeSet attrs) {
235 this(context, attrs, 0);
236 }
237
238 public PagedView(Context context, AttributeSet attrs, int defStyle) {
239 super(context, attrs, defStyle);
Winson Chungc9ca2982013-07-19 12:07:38 -0700240
Adam Cohen9c4949e2010-10-05 12:27:22 -0700241 TypedArray a = context.obtainStyledAttributes(attrs,
242 R.styleable.PagedView, defStyle, 0);
Adam Cohen0cd0eba2013-10-28 14:22:25 -0700243
Winson Chungdf4b83d2010-10-20 17:49:27 -0700244 mPageLayoutWidthGap = a.getDimensionPixelSize(
Winson Chung7d7541e2011-09-16 20:14:36 -0700245 R.styleable.PagedView_pageLayoutWidthGap, 0);
Winson Chungdf4b83d2010-10-20 17:49:27 -0700246 mPageLayoutHeightGap = a.getDimensionPixelSize(
Winson Chung7d7541e2011-09-16 20:14:36 -0700247 R.styleable.PagedView_pageLayoutHeightGap, 0);
Winson Chungd2be3812013-07-16 11:11:32 -0700248 mPageIndicatorViewId = a.getResourceId(R.styleable.PagedView_pageIndicator, -1);
Adam Cohen9c4949e2010-10-05 12:27:22 -0700249 a.recycle();
250
Winson Chung321e9ee2010-08-09 13:37:56 -0700251 setHapticFeedbackEnabled(false);
Sunny Goyal70660032015-05-14 00:07:08 -0700252 mIsRtl = Utilities.isRtl(getResources());
Michael Jurka0142d492010-08-25 17:46:15 -0700253 init();
Winson Chung321e9ee2010-08-09 13:37:56 -0700254 }
255
256 /**
257 * Initializes various states for this workspace.
258 */
Michael Jurka0142d492010-08-25 17:46:15 -0700259 protected void init() {
Adam Cohenf9618852013-11-08 06:45:03 -0800260 mScroller = new LauncherScroller(getContext());
261 setDefaultInterpolator(new ScrollInterpolator());
Winson Chung86f77532010-08-24 11:08:22 -0700262 mCurrentPage = 0;
Winson Chung7da10252010-10-28 16:07:04 -0700263 mCenterPagesVertically = true;
Winson Chung321e9ee2010-08-09 13:37:56 -0700264
265 final ViewConfiguration configuration = ViewConfiguration.get(getContext());
Adam Cohen7d30a372013-07-01 17:03:59 -0700266 mTouchSlop = configuration.getScaledPagingTouchSlop();
Winson Chung321e9ee2010-08-09 13:37:56 -0700267 mPagingTouchSlop = configuration.getScaledPagingTouchSlop();
268 mMaximumVelocity = configuration.getScaledMaximumFlingVelocity();
Adam Cohenb5ba0972011-09-07 18:02:31 -0700269 mDensity = getResources().getDisplayMetrics().density;
Adam Cohen265b9a62011-12-07 14:37:18 -0800270
271 mFlingThresholdVelocity = (int) (FLING_THRESHOLD_VELOCITY * mDensity);
272 mMinFlingVelocity = (int) (MIN_FLING_VELOCITY * mDensity);
273 mMinSnapVelocity = (int) (MIN_SNAP_VELOCITY * mDensity);
Michael Jurka8b805b12012-04-18 14:23:14 -0700274 setOnHierarchyChangeListener(this);
Winson Chung321e9ee2010-08-09 13:37:56 -0700275 }
276
Adam Cohenf9618852013-11-08 06:45:03 -0800277 protected void setDefaultInterpolator(Interpolator interpolator) {
278 mDefaultInterpolator = interpolator;
279 mScroller.setInterpolator(mDefaultInterpolator);
280 }
281
Winson Chungd2be3812013-07-16 11:11:32 -0700282 protected void onAttachedToWindow() {
Adam Cohen53805212013-10-01 10:39:23 -0700283 super.onAttachedToWindow();
284
Winson Chungd2be3812013-07-16 11:11:32 -0700285 // Hook up the page indicator
286 ViewGroup parent = (ViewGroup) getParent();
Adam Cohen9bfdb762014-07-21 17:44:06 -0700287 ViewGroup grandParent = (ViewGroup) parent.getParent();
Winson Chungd2be3812013-07-16 11:11:32 -0700288 if (mPageIndicator == null && mPageIndicatorViewId > -1) {
Adam Cohen9bfdb762014-07-21 17:44:06 -0700289 mPageIndicator = (PageIndicator) grandParent.findViewById(mPageIndicatorViewId);
Sunny Goyal8e2133b2015-05-06 13:39:07 -0700290 mPageIndicator.removeAllMarkers(true);
Winson Chung82dfe582013-07-26 15:07:49 -0700291
Winson Chung7819a562013-09-19 15:55:45 -0700292 ArrayList<PageIndicator.PageMarkerResources> markers =
293 new ArrayList<PageIndicator.PageMarkerResources>();
Winson Chung82dfe582013-07-26 15:07:49 -0700294 for (int i = 0; i < getChildCount(); ++i) {
295 markers.add(getPageIndicatorMarker(i));
296 }
Adam Cohenf358a4b2013-07-23 16:47:31 -0700297
Sunny Goyal8e2133b2015-05-06 13:39:07 -0700298 mPageIndicator.addMarkers(markers, true);
Adam Cohenfbdf4272013-10-09 13:02:21 -0700299
300 OnClickListener listener = getPageIndicatorClickListener();
301 if (listener != null) {
302 mPageIndicator.setOnClickListener(listener);
303 }
Adam Cohen53805212013-10-01 10:39:23 -0700304 mPageIndicator.setContentDescription(getPageIndicatorDescription());
Winson Chungd2be3812013-07-16 11:11:32 -0700305 }
306 }
307
Adam Cohen53805212013-10-01 10:39:23 -0700308 protected String getPageIndicatorDescription() {
309 return getCurrentPageDescription();
310 }
311
312 protected OnClickListener getPageIndicatorClickListener() {
313 return null;
314 }
315
Sunny Goyal8e2133b2015-05-06 13:39:07 -0700316 @Override
Winson Chungd2be3812013-07-16 11:11:32 -0700317 protected void onDetachedFromWindow() {
Sunny Goyal8e2133b2015-05-06 13:39:07 -0700318 super.onDetachedFromWindow();
Winson Chungd2be3812013-07-16 11:11:32 -0700319 // Unhook the page indicator
320 mPageIndicator = null;
321 }
322
Adam Cohen7d30a372013-07-01 17:03:59 -0700323 // Convenience methods to map points from self to parent and vice versa
Sunny Goyal8e2133b2015-05-06 13:39:07 -0700324 private float[] mapPointFromViewToParent(View v, float x, float y) {
325 sTmpPoint[0] = x;
326 sTmpPoint[1] = y;
327 v.getMatrix().mapPoints(sTmpPoint);
328 sTmpPoint[0] += v.getLeft();
329 sTmpPoint[1] += v.getTop();
330 return sTmpPoint;
Adam Cohen7d30a372013-07-01 17:03:59 -0700331 }
Sunny Goyal8e2133b2015-05-06 13:39:07 -0700332 private float[] mapPointFromParentToView(View v, float x, float y) {
333 sTmpPoint[0] = x - v.getLeft();
334 sTmpPoint[1] = y - v.getTop();
335 v.getMatrix().invert(sTmpInvMatrix);
336 sTmpInvMatrix.mapPoints(sTmpPoint);
337 return sTmpPoint;
Adam Cohen7d30a372013-07-01 17:03:59 -0700338 }
339
Sunny Goyal8e2133b2015-05-06 13:39:07 -0700340 private void updateDragViewTranslationDuringDrag() {
Adam Cohenf358a4b2013-07-23 16:47:31 -0700341 if (mDragView != null) {
342 float x = (mLastMotionX - mDownMotionX) + (getScrollX() - mDownScrollX) +
343 (mDragViewBaselineLeft - mDragView.getLeft());
344 float y = mLastMotionY - mDownMotionY;
345 mDragView.setTranslationX(x);
346 mDragView.setTranslationY(y);
Adam Cohen7d30a372013-07-01 17:03:59 -0700347
Adam Cohenf358a4b2013-07-23 16:47:31 -0700348 if (DEBUG) Log.d(TAG, "PagedView.updateDragViewTranslationDuringDrag(): "
349 + x + ", " + y);
350 }
Adam Cohen7d30a372013-07-01 17:03:59 -0700351 }
352
353 public void setMinScale(float f) {
354 mMinScale = f;
Winson Chungc58497e2013-09-03 17:48:37 -0700355 mUseMinScale = true;
Adam Cohen7d30a372013-07-01 17:03:59 -0700356 requestLayout();
357 }
358
359 @Override
360 public void setScaleX(float scaleX) {
361 super.setScaleX(scaleX);
362 if (isReordering(true)) {
363 float[] p = mapPointFromParentToView(this, mParentDownMotionX, mParentDownMotionY);
364 mLastMotionX = p[0];
365 mLastMotionY = p[1];
366 updateDragViewTranslationDuringDrag();
367 }
368 }
369
370 // Convenience methods to get the actual width/height of the PagedView (since it is measured
371 // to be larger to account for the minimum possible scale)
372 int getViewportWidth() {
373 return mViewport.width();
374 }
375 int getViewportHeight() {
376 return mViewport.height();
377 }
378
379 // Convenience methods to get the offset ASSUMING that we are centering the pages in the
380 // PagedView both horizontally and vertically
381 int getViewportOffsetX() {
382 return (getMeasuredWidth() - getViewportWidth()) / 2;
383 }
384
385 int getViewportOffsetY() {
386 return (getMeasuredHeight() - getViewportHeight()) / 2;
387 }
388
Adam Cohenedb40762013-07-18 16:45:45 -0700389 PageIndicator getPageIndicator() {
390 return mPageIndicator;
391 }
Winson Chung7819a562013-09-19 15:55:45 -0700392 protected PageIndicator.PageMarkerResources getPageIndicatorMarker(int pageIndex) {
393 return new PageIndicator.PageMarkerResources();
Winson Chung82dfe582013-07-26 15:07:49 -0700394 }
Adam Cohenedb40762013-07-18 16:45:45 -0700395
Adam Cohen674531f2013-12-13 15:07:14 -0800396 /**
397 * Add a page change listener which will be called when a page is _finished_ listening.
398 *
399 */
Winson Chung86f77532010-08-24 11:08:22 -0700400 public void setPageSwitchListener(PageSwitchListener pageSwitchListener) {
401 mPageSwitchListener = pageSwitchListener;
402 if (mPageSwitchListener != null) {
403 mPageSwitchListener.onPageSwitch(getPageAt(mCurrentPage), mCurrentPage);
Winson Chung321e9ee2010-08-09 13:37:56 -0700404 }
405 }
406
407 /**
Winson Chung86f77532010-08-24 11:08:22 -0700408 * Returns the index of the currently displayed page.
Winson Chung321e9ee2010-08-09 13:37:56 -0700409 */
Sunny Goyal83a8f042015-05-19 12:52:12 -0700410 public int getCurrentPage() {
Winson Chung86f77532010-08-24 11:08:22 -0700411 return mCurrentPage;
Winson Chung321e9ee2010-08-09 13:37:56 -0700412 }
Adam Cohen7d30a372013-07-01 17:03:59 -0700413
Hyunyoung Songb76cd622015-04-16 14:34:09 -0700414 /**
415 * Returns the index of page to be shown immediately afterwards.
416 */
Winson Chung360e63f2012-04-27 13:48:05 -0700417 int getNextPage() {
418 return (mNextPage != INVALID_PAGE) ? mNextPage : mCurrentPage;
419 }
Winson Chung321e9ee2010-08-09 13:37:56 -0700420
Winson Chung86f77532010-08-24 11:08:22 -0700421 int getPageCount() {
Winson Chung321e9ee2010-08-09 13:37:56 -0700422 return getChildCount();
423 }
424
Sunny Goyal83a8f042015-05-19 12:52:12 -0700425 public View getPageAt(int index) {
Winson Chung321e9ee2010-08-09 13:37:56 -0700426 return getChildAt(index);
427 }
428
Adam Cohenae4f1552011-10-20 00:15:42 -0700429 protected int indexToPage(int index) {
430 return index;
431 }
432
Winson Chung321e9ee2010-08-09 13:37:56 -0700433 /**
Winson Chungbbc60d82010-11-11 16:34:41 -0800434 * Updates the scroll of the current page immediately to its final scroll position. We use this
435 * in CustomizePagedView to allow tabs to share the same PagedView while resetting the scroll of
436 * the previous tab page.
437 */
438 protected void updateCurrentPageScroll() {
Adam Cohen0ffac432013-07-10 11:19:26 -0700439 // If the current page is invalid, just reset the scroll position to zero
440 int newX = 0;
441 if (0 <= mCurrentPage && mCurrentPage < getPageCount()) {
Adam Cohenedb40762013-07-18 16:45:45 -0700442 newX = getScrollForPage(mCurrentPage);
Adam Cohen0ffac432013-07-10 11:19:26 -0700443 }
Winson Chungbbc60d82010-11-11 16:34:41 -0800444 scrollTo(newX, 0);
445 mScroller.setFinalX(newX);
Adam Cohen4fe4c932013-10-28 16:02:34 -0700446 forceFinishScroller();
Winson Chungbbc60d82010-11-11 16:34:41 -0800447 }
448
Adam Cohen8bdbaab2013-10-29 15:25:02 -0700449 private void abortScrollerAnimation(boolean resetNextPage) {
Adam Cohen4fe4c932013-10-28 16:02:34 -0700450 mScroller.abortAnimation();
451 // We need to clean up the next page here to avoid computeScrollHelper from
452 // updating current page on the pass.
Adam Cohen8bdbaab2013-10-29 15:25:02 -0700453 if (resetNextPage) {
454 mNextPage = INVALID_PAGE;
455 }
Chet Haasebc2f0822012-10-26 17:59:53 -0700456 }
Adam Cohen4fe4c932013-10-28 16:02:34 -0700457
458 private void forceFinishScroller() {
459 mScroller.forceFinished(true);
460 // We need to clean up the next page here to avoid computeScrollHelper from
461 // updating current page on the pass.
462 mNextPage = INVALID_PAGE;
463 }
464
Adam Cohen6f127a62014-06-12 14:54:41 -0700465 private int validateNewPage(int newPage) {
466 int validatedPage = newPage;
467 // When in free scroll mode, we need to clamp to the free scroll page range.
468 if (mFreeScroll) {
469 getFreeScrollPageRange(mTempVisiblePagesRange);
470 validatedPage = Math.max(mTempVisiblePagesRange[0],
471 Math.min(newPage, mTempVisiblePagesRange[1]));
472 }
473 // Ensure that it is clamped by the actual set of children in all cases
474 validatedPage = Math.max(0, Math.min(validatedPage, getPageCount() - 1));
475 return validatedPage;
476 }
477
Chet Haasebc2f0822012-10-26 17:59:53 -0700478 /**
Winson Chung86f77532010-08-24 11:08:22 -0700479 * Sets the current page.
Winson Chung321e9ee2010-08-09 13:37:56 -0700480 */
Sunny Goyal1d08f702015-05-04 15:50:25 -0700481 public void setCurrentPage(int currentPage) {
Patrick Dubroy72e0d342010-11-09 15:23:28 -0800482 if (!mScroller.isFinished()) {
Adam Cohen8bdbaab2013-10-29 15:25:02 -0700483 abortScrollerAnimation(true);
Patrick Dubroy72e0d342010-11-09 15:23:28 -0800484 }
Michael Jurkad3ef3062010-11-23 16:23:58 -0800485 // don't introduce any checks like mCurrentPage == currentPage here-- if we change the
486 // the default
487 if (getChildCount() == 0) {
Patrick Dubroy72e0d342010-11-09 15:23:28 -0800488 return;
489 }
Adam Cohene61a9a22013-06-11 15:45:31 -0700490 mForceScreenScrolled = true;
Adam Cohen6f127a62014-06-12 14:54:41 -0700491 mCurrentPage = validateNewPage(currentPage);
Winson Chung181c3dc2013-07-17 15:36:20 -0700492 updateCurrentPageScroll();
Winson Chung86f77532010-08-24 11:08:22 -0700493 notifyPageSwitchListener();
Winson Chunga12a2502010-12-20 14:41:35 -0800494 invalidate();
Winson Chung321e9ee2010-08-09 13:37:56 -0700495 }
496
Winson Chung8c87cd82013-07-23 16:20:10 -0700497 /**
498 * The restore page will be set in place of the current page at the next (likely first)
499 * layout.
500 */
501 void setRestorePage(int restorePage) {
502 mRestorePage = restorePage;
503 }
Winson Chung9b9fb962013-11-15 15:39:34 -0800504 int getRestorePage() {
505 return mRestorePage;
506 }
Winson Chung8c87cd82013-07-23 16:20:10 -0700507
Adam Cohen674531f2013-12-13 15:07:14 -0800508 /**
509 * Should be called whenever the page changes. In the case of a scroll, we wait until the page
510 * has settled.
511 */
Michael Jurka0142d492010-08-25 17:46:15 -0700512 protected void notifyPageSwitchListener() {
Winson Chung86f77532010-08-24 11:08:22 -0700513 if (mPageSwitchListener != null) {
Adam Cohen674531f2013-12-13 15:07:14 -0800514 mPageSwitchListener.onPageSwitch(getPageAt(getNextPage()), getNextPage());
Winson Chung321e9ee2010-08-09 13:37:56 -0700515 }
Winson Chungd2be3812013-07-16 11:11:32 -0700516
Adam Cohen674531f2013-12-13 15:07:14 -0800517 updatePageIndicator();
518 }
519
520 private void updatePageIndicator() {
Winson Chungd2be3812013-07-16 11:11:32 -0700521 // Update the page indicator (when we aren't reordering)
Sunny Goyal4cbf0462014-08-28 16:19:39 -0700522 if (mPageIndicator != null) {
523 mPageIndicator.setContentDescription(getPageIndicatorDescription());
524 if (!isReordering(false)) {
525 mPageIndicator.setActiveMarker(getNextPage());
526 }
Winson Chungd2be3812013-07-16 11:11:32 -0700527 }
Winson Chung321e9ee2010-08-09 13:37:56 -0700528 }
Michael Jurkace7e05f2011-02-01 22:02:35 -0800529 protected void pageBeginMoving() {
Michael Jurkad74c9842011-07-10 12:44:21 -0700530 if (!mIsPageMoving) {
531 mIsPageMoving = true;
532 onPageBeginMoving();
533 }
Patrick Dubroy1262e362010-10-06 15:49:50 -0700534 }
535
Michael Jurkace7e05f2011-02-01 22:02:35 -0800536 protected void pageEndMoving() {
Michael Jurkad74c9842011-07-10 12:44:21 -0700537 if (mIsPageMoving) {
538 mIsPageMoving = false;
539 onPageEndMoving();
540 }
Michael Jurka0142d492010-08-25 17:46:15 -0700541 }
542
Adam Cohen26976d92011-03-22 15:33:33 -0700543 protected boolean isPageMoving() {
544 return mIsPageMoving;
545 }
546
Michael Jurka0142d492010-08-25 17:46:15 -0700547 // a method that subclasses can override to add behavior
Patrick Dubroy1262e362010-10-06 15:49:50 -0700548 protected void onPageBeginMoving() {
549 }
550
551 // a method that subclasses can override to add behavior
552 protected void onPageEndMoving() {
Adam Cohenc2d6e892014-10-16 09:49:24 -0700553 mWasInOverscroll = false;
Michael Jurka0142d492010-08-25 17:46:15 -0700554 }
555
Winson Chung321e9ee2010-08-09 13:37:56 -0700556 /**
Winson Chung86f77532010-08-24 11:08:22 -0700557 * Registers the specified listener on each page contained in this workspace.
Winson Chung321e9ee2010-08-09 13:37:56 -0700558 *
559 * @param l The listener used to respond to long clicks.
560 */
561 @Override
562 public void setOnLongClickListener(OnLongClickListener l) {
563 mLongClickListener = l;
Winson Chung86f77532010-08-24 11:08:22 -0700564 final int count = getPageCount();
Winson Chung321e9ee2010-08-09 13:37:56 -0700565 for (int i = 0; i < count; i++) {
Winson Chung86f77532010-08-24 11:08:22 -0700566 getPageAt(i).setOnLongClickListener(l);
Winson Chung321e9ee2010-08-09 13:37:56 -0700567 }
Adam Cohen1697b792013-09-17 19:08:21 -0700568 super.setOnLongClickListener(l);
Winson Chung321e9ee2010-08-09 13:37:56 -0700569 }
570
571 @Override
Adam Cohen68d73932010-11-15 10:50:58 -0800572 public void scrollBy(int x, int y) {
Michael Jurka8b805b12012-04-18 14:23:14 -0700573 scrollTo(mUnboundedScrollX + x, getScrollY() + y);
Adam Cohen68d73932010-11-15 10:50:58 -0800574 }
575
576 @Override
Michael Jurka0142d492010-08-25 17:46:15 -0700577 public void scrollTo(int x, int y) {
Adam Cohenf358a4b2013-07-23 16:47:31 -0700578 // In free scroll mode, we clamp the scrollX
579 if (mFreeScroll) {
580 x = Math.min(x, mFreeScrollMaxScrollX);
581 x = Math.max(x, mFreeScrollMinScrollX);
582 }
583
Adam Cohen68d73932010-11-15 10:50:58 -0800584 mUnboundedScrollX = x;
585
Sunny Goyal70660032015-05-14 00:07:08 -0700586 boolean isXBeforeFirstPage = mIsRtl ? (x > mMaxScrollX) : (x < 0);
587 boolean isXAfterLastPage = mIsRtl ? (x < 0) : (x > mMaxScrollX);
Adam Cohen0ffac432013-07-10 11:19:26 -0700588 if (isXBeforeFirstPage) {
Adam Cohen68d73932010-11-15 10:50:58 -0800589 super.scrollTo(0, y);
590 if (mAllowOverScroll) {
Adam Cohenc2d6e892014-10-16 09:49:24 -0700591 mWasInOverscroll = true;
Sunny Goyal70660032015-05-14 00:07:08 -0700592 if (mIsRtl) {
Adam Cohen0ffac432013-07-10 11:19:26 -0700593 overScroll(x - mMaxScrollX);
594 } else {
595 overScroll(x);
596 }
Adam Cohen68d73932010-11-15 10:50:58 -0800597 }
Adam Cohen0ffac432013-07-10 11:19:26 -0700598 } else if (isXAfterLastPage) {
Adam Cohen68d73932010-11-15 10:50:58 -0800599 super.scrollTo(mMaxScrollX, y);
600 if (mAllowOverScroll) {
Adam Cohenc2d6e892014-10-16 09:49:24 -0700601 mWasInOverscroll = true;
Sunny Goyal70660032015-05-14 00:07:08 -0700602 if (mIsRtl) {
Adam Cohen0ffac432013-07-10 11:19:26 -0700603 overScroll(x);
604 } else {
605 overScroll(x - mMaxScrollX);
606 }
Adam Cohen68d73932010-11-15 10:50:58 -0800607 }
608 } else {
Adam Cohenc2d6e892014-10-16 09:49:24 -0700609 if (mWasInOverscroll) {
610 overScroll(0);
611 mWasInOverscroll = false;
612 }
Adam Cohenebea84d2011-11-09 17:20:41 -0800613 mOverScrollX = x;
Adam Cohen68d73932010-11-15 10:50:58 -0800614 super.scrollTo(x, y);
615 }
616
Michael Jurka0142d492010-08-25 17:46:15 -0700617 mTouchX = x;
618 mSmoothingTime = System.nanoTime() / NANOTIME_DIV;
Adam Cohen7d30a372013-07-01 17:03:59 -0700619
620 // Update the last motion events when scrolling
621 if (isReordering(true)) {
622 float[] p = mapPointFromParentToView(this, mParentDownMotionX, mParentDownMotionY);
623 mLastMotionX = p[0];
624 mLastMotionY = p[1];
625 updateDragViewTranslationDuringDrag();
626 }
Michael Jurka0142d492010-08-25 17:46:15 -0700627 }
628
Adam Cohen53805212013-10-01 10:39:23 -0700629 private void sendScrollAccessibilityEvent() {
630 AccessibilityManager am =
631 (AccessibilityManager) getContext().getSystemService(Context.ACCESSIBILITY_SERVICE);
632 if (am.isEnabled()) {
Vadim Tryshevf4715972015-05-08 17:21:03 -0700633 if (mCurrentPage != getNextPage()) {
634 AccessibilityEvent ev =
635 AccessibilityEvent.obtain(AccessibilityEvent.TYPE_VIEW_SCROLLED);
Vadim Tryshev7066c122015-05-21 14:06:35 -0700636 ev.setScrollable(true);
637 ev.setScrollX(getScrollX());
638 ev.setScrollY(getScrollY());
639 ev.setMaxScrollX(mMaxScrollX);
640 ev.setMaxScrollY(0);
Adam Cohen53805212013-10-01 10:39:23 -0700641
Vadim Tryshevf4715972015-05-08 17:21:03 -0700642 sendAccessibilityEventUnchecked(ev);
Adam Cohen53805212013-10-01 10:39:23 -0700643 }
Adam Cohen53805212013-10-01 10:39:23 -0700644 }
645 }
646
Michael Jurka0142d492010-08-25 17:46:15 -0700647 // we moved this functionality to a helper function so SmoothPagedView can reuse it
648 protected boolean computeScrollHelper() {
Winson Chung321e9ee2010-08-09 13:37:56 -0700649 if (mScroller.computeScrollOffset()) {
Winson Chung557d6ed2011-07-08 15:34:52 -0700650 // Don't bother scrolling if the page does not need to be moved
Michael Jurka8b805b12012-04-18 14:23:14 -0700651 if (getScrollX() != mScroller.getCurrX()
652 || getScrollY() != mScroller.getCurrY()
Michael Jurkab06d95f2012-04-02 06:26:53 -0700653 || mOverScrollX != mScroller.getCurrX()) {
Adam Cohenf358a4b2013-07-23 16:47:31 -0700654 float scaleX = mFreeScroll ? getScaleX() : 1f;
655 int scrollX = (int) (mScroller.getCurrX() * (1 / scaleX));
656 scrollTo(scrollX, mScroller.getCurrY());
Winson Chung557d6ed2011-07-08 15:34:52 -0700657 }
Michael Jurka0142d492010-08-25 17:46:15 -0700658 invalidate();
659 return true;
Winson Chung86f77532010-08-24 11:08:22 -0700660 } else if (mNextPage != INVALID_PAGE) {
Adam Cohen53805212013-10-01 10:39:23 -0700661 sendScrollAccessibilityEvent();
662
Adam Cohen6f127a62014-06-12 14:54:41 -0700663 mCurrentPage = validateNewPage(mNextPage);
Winson Chung86f77532010-08-24 11:08:22 -0700664 mNextPage = INVALID_PAGE;
Michael Jurka0142d492010-08-25 17:46:15 -0700665 notifyPageSwitchListener();
Winson Chungb44b5242011-06-13 11:32:14 -0700666
Adam Cohen73aa9752010-11-24 16:26:58 -0800667 // We don't want to trigger a page end moving unless the page has settled
668 // and the user has stopped scrolling
669 if (mTouchState == TOUCH_STATE_REST) {
670 pageEndMoving();
671 }
Winson Chungc27d1bb2011-09-29 12:07:42 -0700672
Adam Cohen7d30a372013-07-01 17:03:59 -0700673 onPostReorderingAnimationCompleted();
Adam Cohen53805212013-10-01 10:39:23 -0700674 AccessibilityManager am = (AccessibilityManager)
Adam Cohen0ffac432013-07-10 11:19:26 -0700675 getContext().getSystemService(Context.ACCESSIBILITY_SERVICE);
Adam Cohen53805212013-10-01 10:39:23 -0700676 if (am.isEnabled()) {
677 // Notify the user when the page changes
678 announceForAccessibility(getCurrentPageDescription());
Adam Cohen0ffac432013-07-10 11:19:26 -0700679 }
Michael Jurka0142d492010-08-25 17:46:15 -0700680 return true;
Winson Chung321e9ee2010-08-09 13:37:56 -0700681 }
Michael Jurka0142d492010-08-25 17:46:15 -0700682 return false;
683 }
684
685 @Override
686 public void computeScroll() {
687 computeScrollHelper();
Winson Chung321e9ee2010-08-09 13:37:56 -0700688 }
689
Adam Cohen96d30a12013-07-16 18:13:21 -0700690 public static class LayoutParams extends ViewGroup.LayoutParams {
691 public boolean isFullScreenPage = false;
692
693 /**
694 * {@inheritDoc}
695 */
696 public LayoutParams(int width, int height) {
697 super(width, height);
698 }
699
Sunny Goyal41b22c02015-05-14 15:20:48 -0700700 public LayoutParams(Context context, AttributeSet attrs) {
701 super(context, attrs);
702 }
703
Adam Cohen96d30a12013-07-16 18:13:21 -0700704 public LayoutParams(ViewGroup.LayoutParams source) {
705 super(source);
706 }
707 }
708
Sunny Goyal41b22c02015-05-14 15:20:48 -0700709 @Override
710 public LayoutParams generateLayoutParams(AttributeSet attrs) {
711 return new LayoutParams(getContext(), attrs);
712 }
713
714 @Override
Adam Cohen96d30a12013-07-16 18:13:21 -0700715 protected LayoutParams generateDefaultLayoutParams() {
716 return new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
717 }
718
Sunny Goyal41b22c02015-05-14 15:20:48 -0700719 @Override
720 protected ViewGroup.LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) {
721 return new LayoutParams(p);
722 }
723
724 @Override
725 protected boolean checkLayoutParams(ViewGroup.LayoutParams p) {
726 return p instanceof LayoutParams;
727 }
728
Adam Cohenedb40762013-07-18 16:45:45 -0700729 public void addFullScreenPage(View page) {
Adam Cohen96d30a12013-07-16 18:13:21 -0700730 LayoutParams lp = generateDefaultLayoutParams();
731 lp.isFullScreenPage = true;
732 super.addView(page, 0, lp);
733 }
734
Adam Cohen410f3cd2013-09-22 12:09:32 -0700735 public int getNormalChildHeight() {
736 return mNormalChildHeight;
737 }
738
Winson Chung321e9ee2010-08-09 13:37:56 -0700739 @Override
740 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
Sunny Goyal8e2133b2015-05-06 13:39:07 -0700741 if (getChildCount() == 0) {
Winson Chungf0ea4d32011-06-06 14:27:16 -0700742 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
743 return;
744 }
745
Adam Cohen7d30a372013-07-01 17:03:59 -0700746 // We measure the dimensions of the PagedView to be larger than the pages so that when we
747 // zoom out (and scale down), the view is still contained in the parent
Adam Cohen7d30a372013-07-01 17:03:59 -0700748 int widthMode = MeasureSpec.getMode(widthMeasureSpec);
749 int widthSize = MeasureSpec.getSize(widthMeasureSpec);
750 int heightMode = MeasureSpec.getMode(heightMeasureSpec);
Winson Chung8aad6102012-05-11 16:27:49 -0700751 int heightSize = MeasureSpec.getSize(heightMeasureSpec);
Winson Chungc82d2622013-11-06 13:23:29 -0800752 // NOTE: We multiply by 2f to account for the fact that depending on the offset of the
Adam Cohen7d30a372013-07-01 17:03:59 -0700753 // viewport, we can be at most one and a half screens offset once we scale down
754 DisplayMetrics dm = getResources().getDisplayMetrics();
Adam Cohen3b185e22013-10-29 14:45:58 -0700755 int maxSize = Math.max(dm.widthPixels + mInsets.left + mInsets.right,
756 dm.heightPixels + mInsets.top + mInsets.bottom);
Adam Cohen410f3cd2013-09-22 12:09:32 -0700757
Winson Chungc82d2622013-11-06 13:23:29 -0800758 int parentWidthSize = (int) (2f * maxSize);
759 int parentHeightSize = (int) (2f * maxSize);
Winson Chungc58497e2013-09-03 17:48:37 -0700760 int scaledWidthSize, scaledHeightSize;
761 if (mUseMinScale) {
Winson Chungc58497e2013-09-03 17:48:37 -0700762 scaledWidthSize = (int) (parentWidthSize / mMinScale);
763 scaledHeightSize = (int) (parentHeightSize / mMinScale);
764 } else {
765 scaledWidthSize = widthSize;
766 scaledHeightSize = heightSize;
767 }
Adam Cohen7d30a372013-07-01 17:03:59 -0700768 mViewport.set(0, 0, widthSize, heightSize);
769
770 if (widthMode == MeasureSpec.UNSPECIFIED || heightMode == MeasureSpec.UNSPECIFIED) {
771 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
772 return;
Winson Chung321e9ee2010-08-09 13:37:56 -0700773 }
774
Winson Chung8aad6102012-05-11 16:27:49 -0700775 // Return early if we aren't given a proper dimension
776 if (widthSize <= 0 || heightSize <= 0) {
777 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
778 return;
779 }
780
Adam Lesinski6b879f02010-11-04 16:15:23 -0700781 /* Allow the height to be set as WRAP_CONTENT. This allows the particular case
782 * of the All apps view on XLarge displays to not take up more space then it needs. Width
783 * is still not allowed to be set as WRAP_CONTENT since many parts of the code expect
784 * each page to have the same width.
785 */
Michael Jurka8b805b12012-04-18 14:23:14 -0700786 final int verticalPadding = getPaddingTop() + getPaddingBottom();
787 final int horizontalPadding = getPaddingLeft() + getPaddingRight();
Winson Chung321e9ee2010-08-09 13:37:56 -0700788
Adam Cohen1d3d4f12014-08-14 19:14:52 -0700789 int referenceChildWidth = 0;
Winson Chung321e9ee2010-08-09 13:37:56 -0700790 // The children are given the same width and height as the workspace
Michael Jurka5f1c5092010-09-03 14:15:02 -0700791 // unless they were set to WRAP_CONTENT
Winson Chung785d2eb2011-04-14 16:08:02 -0700792 if (DEBUG) Log.d(TAG, "PagedView.onMeasure(): " + widthSize + ", " + heightSize);
Adam Cohen7d30a372013-07-01 17:03:59 -0700793 if (DEBUG) Log.d(TAG, "PagedView.scaledSize: " + scaledWidthSize + ", " + scaledHeightSize);
794 if (DEBUG) Log.d(TAG, "PagedView.parentSize: " + parentWidthSize + ", " + parentHeightSize);
795 if (DEBUG) Log.d(TAG, "PagedView.horizontalPadding: " + horizontalPadding);
796 if (DEBUG) Log.d(TAG, "PagedView.verticalPadding: " + verticalPadding);
Winson Chung321e9ee2010-08-09 13:37:56 -0700797 final int childCount = getChildCount();
798 for (int i = 0; i < childCount; i++) {
Michael Jurka5f1c5092010-09-03 14:15:02 -0700799 // disallowing padding in paged view (just pass 0)
Adam Cohen22f823d2011-09-01 17:22:18 -0700800 final View child = getPageAt(i);
Vladimir Marko2824b072013-10-04 16:42:17 +0100801 if (child.getVisibility() != GONE) {
802 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
Michael Jurka5f1c5092010-09-03 14:15:02 -0700803
Vladimir Marko2824b072013-10-04 16:42:17 +0100804 int childWidthMode;
805 int childHeightMode;
806 int childWidth;
807 int childHeight;
Adam Cohen96d30a12013-07-16 18:13:21 -0700808
Vladimir Marko2824b072013-10-04 16:42:17 +0100809 if (!lp.isFullScreenPage) {
810 if (lp.width == LayoutParams.WRAP_CONTENT) {
811 childWidthMode = MeasureSpec.AT_MOST;
812 } else {
813 childWidthMode = MeasureSpec.EXACTLY;
814 }
815
816 if (lp.height == LayoutParams.WRAP_CONTENT) {
817 childHeightMode = MeasureSpec.AT_MOST;
818 } else {
819 childHeightMode = MeasureSpec.EXACTLY;
820 }
821
Adam Cohen3b185e22013-10-29 14:45:58 -0700822 childWidth = getViewportWidth() - horizontalPadding
823 - mInsets.left - mInsets.right;
824 childHeight = getViewportHeight() - verticalPadding
825 - mInsets.top - mInsets.bottom;
Vladimir Marko2824b072013-10-04 16:42:17 +0100826 mNormalChildHeight = childHeight;
Adam Cohen96d30a12013-07-16 18:13:21 -0700827 } else {
828 childWidthMode = MeasureSpec.EXACTLY;
Adam Cohen96d30a12013-07-16 18:13:21 -0700829 childHeightMode = MeasureSpec.EXACTLY;
Vladimir Marko2824b072013-10-04 16:42:17 +0100830
Adam Cohen3b185e22013-10-29 14:45:58 -0700831 childWidth = getViewportWidth() - mInsets.left - mInsets.right;
832 childHeight = getViewportHeight();
Adam Cohen96d30a12013-07-16 18:13:21 -0700833 }
Adam Cohen1d3d4f12014-08-14 19:14:52 -0700834 if (referenceChildWidth == 0) {
835 referenceChildWidth = childWidth;
836 }
Adam Cohen96d30a12013-07-16 18:13:21 -0700837
Vladimir Marko2824b072013-10-04 16:42:17 +0100838 final int childWidthMeasureSpec =
839 MeasureSpec.makeMeasureSpec(childWidth, childWidthMode);
840 final int childHeightMeasureSpec =
841 MeasureSpec.makeMeasureSpec(childHeight, childHeightMode);
842 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
Michael Jurka5f1c5092010-09-03 14:15:02 -0700843 }
Adam Lesinski6b879f02010-11-04 16:15:23 -0700844 }
Adam Cohen7d30a372013-07-01 17:03:59 -0700845 setMeasuredDimension(scaledWidthSize, scaledHeightSize);
Adam Cohen60b07122011-11-14 17:26:06 -0800846 }
847
Winson Chung321e9ee2010-08-09 13:37:56 -0700848 @Override
Michael Jurka28750fb2010-09-24 17:43:49 -0700849 protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
Sunny Goyal8e2133b2015-05-06 13:39:07 -0700850 if (getChildCount() == 0) {
Winson Chungf0ea4d32011-06-06 14:27:16 -0700851 return;
852 }
853
Winson Chung785d2eb2011-04-14 16:08:02 -0700854 if (DEBUG) Log.d(TAG, "PagedView.onLayout()");
Winson Chung321e9ee2010-08-09 13:37:56 -0700855 final int childCount = getChildCount();
Winson Chung321e9ee2010-08-09 13:37:56 -0700856
Adam Cohen7d30a372013-07-01 17:03:59 -0700857 int offsetX = getViewportOffsetX();
858 int offsetY = getViewportOffsetY();
859
860 // Update the viewport offsets
861 mViewport.offset(offsetX, offsetY);
862
Sunny Goyal70660032015-05-14 00:07:08 -0700863 final int startIndex = mIsRtl ? childCount - 1 : 0;
864 final int endIndex = mIsRtl ? -1 : childCount;
865 final int delta = mIsRtl ? -1 : 1;
Adam Cohen0ffac432013-07-10 11:19:26 -0700866
Adam Cohen7d30a372013-07-01 17:03:59 -0700867 int verticalPadding = getPaddingTop() + getPaddingBottom();
Adam Cohenedb40762013-07-18 16:45:45 -0700868
Adam Cohen3b185e22013-10-29 14:45:58 -0700869 LayoutParams lp = (LayoutParams) getChildAt(startIndex).getLayoutParams();
Adam Cohen84a465a2013-11-11 18:49:56 +0000870 LayoutParams nextLp;
Adam Cohen3b185e22013-10-29 14:45:58 -0700871
872 int childLeft = offsetX + (lp.isFullScreenPage ? 0 : getPaddingLeft());
Sunny Goyal3e2ff8a2015-04-15 16:31:22 -0700873 if (mPageScrolls == null || childCount != mChildCountOnLastLayout) {
874 mPageScrolls = new int[childCount];
Adam Cohenedb40762013-07-18 16:45:45 -0700875 }
876
Adam Cohen0ffac432013-07-10 11:19:26 -0700877 for (int i = startIndex; i != endIndex; i += delta) {
Adam Cohen22f823d2011-09-01 17:22:18 -0700878 final View child = getPageAt(i);
Winson Chung321e9ee2010-08-09 13:37:56 -0700879 if (child.getVisibility() != View.GONE) {
Adam Cohen3b185e22013-10-29 14:45:58 -0700880 lp = (LayoutParams) child.getLayoutParams();
Vladimir Marko2824b072013-10-04 16:42:17 +0100881 int childTop;
882 if (lp.isFullScreenPage) {
883 childTop = offsetY;
884 } else {
885 childTop = offsetY + getPaddingTop() + mInsets.top;
886 if (mCenterPagesVertically) {
887 childTop += (getViewportHeight() - mInsets.top - mInsets.bottom - verticalPadding - child.getMeasuredHeight()) / 2;
888 }
889 }
890
Adam Cohen96d30a12013-07-16 18:13:21 -0700891 final int childWidth = child.getMeasuredWidth();
Adam Lesinski6b879f02010-11-04 16:15:23 -0700892 final int childHeight = child.getMeasuredHeight();
Michael Jurkad3ef3062010-11-23 16:23:58 -0800893
Winson Chung785d2eb2011-04-14 16:08:02 -0700894 if (DEBUG) Log.d(TAG, "\tlayout-child" + i + ": " + childLeft + ", " + childTop);
Adam Lesinski6b879f02010-11-04 16:15:23 -0700895 child.layout(childLeft, childTop,
Michael Jurkad3ef3062010-11-23 16:23:58 -0800896 childLeft + child.getMeasuredWidth(), childTop + childHeight);
Adam Cohenedb40762013-07-18 16:45:45 -0700897
Adam Cohen3b185e22013-10-29 14:45:58 -0700898 int scrollOffsetLeft = lp.isFullScreenPage ? 0 : getPaddingLeft();
899 mPageScrolls[i] = childLeft - scrollOffsetLeft - offsetX;
Adam Cohen84a465a2013-11-11 18:49:56 +0000900
901 int pageGap = mPageSpacing;
902 int next = i + delta;
903 if (next != endIndex) {
904 nextLp = (LayoutParams) getPageAt(next).getLayoutParams();
905 } else {
906 nextLp = null;
907 }
908
909 // Prevent full screen pages from showing in the viewport
910 // when they are not the current page.
911 if (lp.isFullScreenPage) {
912 pageGap = getPaddingLeft();
913 } else if (nextLp != null && nextLp.isFullScreenPage) {
914 pageGap = getPaddingRight();
915 }
916
Sunny Goyala1fbd842015-05-20 13:40:27 -0700917 childLeft += childWidth + pageGap + getChildGap();
Winson Chung321e9ee2010-08-09 13:37:56 -0700918 }
919 }
Winson Chungc3665fa2011-09-14 17:56:27 -0700920
Sunny Goyal3e2ff8a2015-04-15 16:31:22 -0700921 if (mFirstLayout && mCurrentPage >= 0 && mCurrentPage < childCount) {
Michael Jurkadd6c0912012-01-16 06:46:20 -0800922 updateCurrentPageScroll();
Winson Chungc3665fa2011-09-14 17:56:27 -0700923 mFirstLayout = false;
924 }
Adam Cohenf698c6e2013-07-17 18:44:25 -0700925
Sunny Goyal3e2ff8a2015-04-15 16:31:22 -0700926 final LayoutTransition transition = getLayoutTransition();
927 // If the transition is running defer updating max scroll, as some empty pages could
928 // still be present, and a max scroll change could cause sudden jumps in scroll.
929 if (transition != null && transition.isRunning()) {
930 transition.addTransitionListener(new LayoutTransition.TransitionListener() {
931
932 @Override
933 public void startTransition(LayoutTransition transition, ViewGroup container,
934 View view, int transitionType) { }
935
936 @Override
937 public void endTransition(LayoutTransition transition, ViewGroup container,
938 View view, int transitionType) {
939 // Wait until all transitions are complete.
940 if (!transition.isRunning()) {
941 transition.removeTransitionListener(this);
942 updateMaxScrollX();
943 }
944 }
945 });
Adam Cohenf698c6e2013-07-17 18:44:25 -0700946 } else {
Sunny Goyal3e2ff8a2015-04-15 16:31:22 -0700947 updateMaxScrollX();
Adam Cohenf698c6e2013-07-17 18:44:25 -0700948 }
949
Sunny Goyal8e2133b2015-05-06 13:39:07 -0700950 if (mScroller.isFinished() && mChildCountOnLastLayout != childCount) {
Adam Cohen21cd0022013-10-09 18:57:02 -0700951 if (mRestorePage != INVALID_RESTORE_PAGE) {
Winson Chung8c87cd82013-07-23 16:20:10 -0700952 setCurrentPage(mRestorePage);
Adam Cohen21cd0022013-10-09 18:57:02 -0700953 mRestorePage = INVALID_RESTORE_PAGE;
Winson Chung8c87cd82013-07-23 16:20:10 -0700954 } else {
955 setCurrentPage(getNextPage());
956 }
Adam Cohenf698c6e2013-07-17 18:44:25 -0700957 }
Sunny Goyal3e2ff8a2015-04-15 16:31:22 -0700958 mChildCountOnLastLayout = childCount;
Adam Cohenf358a4b2013-07-23 16:47:31 -0700959
960 if (isReordering(true)) {
961 updateDragViewTranslationDuringDrag();
962 }
Winson Chunge3193b92010-09-10 11:44:42 -0700963 }
964
Sunny Goyala1fbd842015-05-20 13:40:27 -0700965 protected int getChildGap() {
966 return 0;
967 }
968
Sunny Goyal3e2ff8a2015-04-15 16:31:22 -0700969 private void updateMaxScrollX() {
970 int childCount = getChildCount();
971 if (childCount > 0) {
Sunny Goyal70660032015-05-14 00:07:08 -0700972 final int index = mIsRtl ? 0 : childCount - 1;
Sunny Goyal3e2ff8a2015-04-15 16:31:22 -0700973 mMaxScrollX = getScrollForPage(index);
974 } else {
975 mMaxScrollX = 0;
976 }
977 }
978
Adam Cohen3b185e22013-10-29 14:45:58 -0700979 public void setPageSpacing(int pageSpacing) {
980 mPageSpacing = pageSpacing;
981 requestLayout();
982 }
983
Adam Cohenf34bab52010-09-30 14:11:56 -0700984 protected void screenScrolled(int screenCenter) {
Michael Jurka869390b2012-05-06 15:55:19 -0700985 boolean isInOverscroll = mOverScrollX < 0 || mOverScrollX > mMaxScrollX;
986
987 if (mFadeInAdjacentScreens && !isInOverscroll) {
Adam Cohen73894962011-10-31 13:17:17 -0700988 for (int i = 0; i < getChildCount(); i++) {
989 View child = getChildAt(i);
990 if (child != null) {
991 float scrollProgress = getScrollProgress(screenCenter, child, i);
992 float alpha = 1 - Math.abs(scrollProgress);
Michael Jurka7372c592012-01-16 04:21:35 -0800993 child.setAlpha(alpha);
Adam Cohen73894962011-10-31 13:17:17 -0700994 }
995 }
996 invalidate();
997 }
Adam Cohenf34bab52010-09-30 14:11:56 -0700998 }
999
Winson Chunge3193b92010-09-10 11:44:42 -07001000 @Override
Michael Jurka8b805b12012-04-18 14:23:14 -07001001 public void onChildViewAdded(View parent, View child) {
Winson Chungd2be3812013-07-16 11:11:32 -07001002 // Update the page indicator, we don't update the page indicator as we
1003 // add/remove pages
1004 if (mPageIndicator != null && !isReordering(false)) {
Winson Chung82dfe582013-07-26 15:07:49 -07001005 int pageIndex = indexOfChild(child);
Winson Chung7819a562013-09-19 15:55:45 -07001006 mPageIndicator.addMarker(pageIndex,
1007 getPageIndicatorMarker(pageIndex),
Sunny Goyal8e2133b2015-05-06 13:39:07 -07001008 true);
Winson Chungd2be3812013-07-16 11:11:32 -07001009 }
1010
Adam Cohen2591f6a2011-10-25 14:36:40 -07001011 // This ensures that when children are added, they get the correct transforms / alphas
1012 // in accordance with any scroll effects.
1013 mForceScreenScrolled = true;
Adam Cohen7a9e58a2013-10-01 18:02:13 -07001014 updateFreescrollBounds();
Adam Cohen2591f6a2011-10-25 14:36:40 -07001015 invalidate();
1016 }
1017
Michael Jurka8b805b12012-04-18 14:23:14 -07001018 @Override
1019 public void onChildViewRemoved(View parent, View child) {
Adam Cohen7d30a372013-07-01 17:03:59 -07001020 mForceScreenScrolled = true;
Adam Cohen7a9e58a2013-10-01 18:02:13 -07001021 updateFreescrollBounds();
Adam Cohen7d30a372013-07-01 17:03:59 -07001022 invalidate();
Michael Jurka8b805b12012-04-18 14:23:14 -07001023 }
1024
Winson Chungd2be3812013-07-16 11:11:32 -07001025 private void removeMarkerForView(int index) {
1026 // Update the page indicator, we don't update the page indicator as we
1027 // add/remove pages
1028 if (mPageIndicator != null && !isReordering(false)) {
Sunny Goyal8e2133b2015-05-06 13:39:07 -07001029 mPageIndicator.removeMarker(index, true);
Winson Chungd2be3812013-07-16 11:11:32 -07001030 }
1031 }
1032
1033 @Override
1034 public void removeView(View v) {
1035 // XXX: We should find a better way to hook into this before the view
1036 // gets removed form its parent...
1037 removeMarkerForView(indexOfChild(v));
1038 super.removeView(v);
1039 }
1040 @Override
1041 public void removeViewInLayout(View v) {
1042 // XXX: We should find a better way to hook into this before the view
1043 // gets removed form its parent...
1044 removeMarkerForView(indexOfChild(v));
1045 super.removeViewInLayout(v);
1046 }
1047 @Override
1048 public void removeViewAt(int index) {
1049 // XXX: We should find a better way to hook into this before the view
1050 // gets removed form its parent...
1051 removeViewAt(index);
1052 super.removeViewAt(index);
1053 }
1054 @Override
1055 public void removeAllViewsInLayout() {
1056 // Update the page indicator, we don't update the page indicator as we
1057 // add/remove pages
1058 if (mPageIndicator != null) {
Sunny Goyal8e2133b2015-05-06 13:39:07 -07001059 mPageIndicator.removeAllMarkers(true);
Winson Chungd2be3812013-07-16 11:11:32 -07001060 }
1061
1062 super.removeAllViewsInLayout();
1063 }
1064
Adam Cohen73894962011-10-31 13:17:17 -07001065 protected int getChildOffset(int index) {
Adam Cohen7d30a372013-07-01 17:03:59 -07001066 if (index < 0 || index > getChildCount() - 1) return 0;
1067
Adam Cohenf698c6e2013-07-17 18:44:25 -07001068 int offset = getPageAt(index).getLeft() - getViewportOffsetX();
Adam Cohen73894962011-10-31 13:17:17 -07001069
Adam Cohenf698c6e2013-07-17 18:44:25 -07001070 return offset;
Adam Cohen73894962011-10-31 13:17:17 -07001071 }
1072
Adam Cohen6f127a62014-06-12 14:54:41 -07001073 protected void getFreeScrollPageRange(int[] range) {
Winson Chungc9ca2982013-07-19 12:07:38 -07001074 range[0] = 0;
Adam Cohen1f1f45d2013-10-02 09:40:18 -07001075 range[1] = Math.max(0, getChildCount() - 1);
Adam Cohen7d30a372013-07-01 17:03:59 -07001076 }
1077
Michael Jurkadde558b2011-11-09 22:09:06 -08001078 protected void getVisiblePages(int[] range) {
Michael Jurka0142d492010-08-25 17:46:15 -07001079 final int pageCount = getChildCount();
Sunny Goyal8e2133b2015-05-06 13:39:07 -07001080 sTmpIntPoint[0] = sTmpIntPoint[1] = 0;
Michael Jurka4ff7d792012-04-02 03:46:50 -07001081
Adam Cohenaf9b0e52013-09-23 19:27:38 -07001082 range[0] = -1;
1083 range[1] = -1;
1084
Michael Jurkac4fb9172010-09-02 17:19:20 -07001085 if (pageCount > 0) {
Winson Chungc9ca2982013-07-19 12:07:38 -07001086 int viewportWidth = getViewportWidth();
Adam Cohenaf9b0e52013-09-23 19:27:38 -07001087 int curScreen = 0;
Adam Cohen7d30a372013-07-01 17:03:59 -07001088
Adam Cohenaf9b0e52013-09-23 19:27:38 -07001089 int count = getChildCount();
1090 for (int i = 0; i < count; i++) {
1091 View currPage = getPageAt(i);
Winson Chungc9ca2982013-07-19 12:07:38 -07001092
Sunny Goyal8e2133b2015-05-06 13:39:07 -07001093 sTmpIntPoint[0] = 0;
1094 Utilities.getDescendantCoordRelativeToParent(currPage, this, sTmpIntPoint, false);
1095 if (sTmpIntPoint[0] > viewportWidth) {
Adam Cohenaf9b0e52013-09-23 19:27:38 -07001096 if (range[0] == -1) {
1097 continue;
1098 } else {
1099 break;
1100 }
1101 }
1102
Sunny Goyal8e2133b2015-05-06 13:39:07 -07001103 sTmpIntPoint[0] = currPage.getMeasuredWidth();
1104 Utilities.getDescendantCoordRelativeToParent(currPage, this, sTmpIntPoint, false);
1105 if (sTmpIntPoint[0] < 0) {
Adam Cohenaf9b0e52013-09-23 19:27:38 -07001106 if (range[0] == -1) {
1107 continue;
1108 } else {
1109 break;
1110 }
1111 }
1112 curScreen = i;
1113 if (range[0] < 0) {
1114 range[0] = curScreen;
Winson Chungc9ca2982013-07-19 12:07:38 -07001115 }
1116 }
Adam Cohenaf9b0e52013-09-23 19:27:38 -07001117
1118 range[1] = curScreen;
Michael Jurkadde558b2011-11-09 22:09:06 -08001119 } else {
1120 range[0] = -1;
1121 range[1] = -1;
1122 }
1123 }
1124
Michael Jurka920d7f42012-05-14 16:29:55 -07001125 protected boolean shouldDrawChild(View child) {
Adam Cohen63f1ec02014-08-12 09:23:13 -07001126 return child.getVisibility() == VISIBLE;
Michael Jurka920d7f42012-05-14 16:29:55 -07001127 }
1128
Michael Jurkadde558b2011-11-09 22:09:06 -08001129 @Override
1130 protected void dispatchDraw(Canvas canvas) {
Michael Jurkadde558b2011-11-09 22:09:06 -08001131 // Find out which screens are visible; as an optimization we only call draw on them
1132 final int pageCount = getChildCount();
1133 if (pageCount > 0) {
Adam Cohen4de09742013-12-12 16:16:39 -08001134 int halfScreenSize = getViewportWidth() / 2;
1135 // mOverScrollX is equal to getScrollX() when we're within the normal scroll range.
1136 // Otherwise it is equal to the scaled overscroll position.
1137 int screenCenter = mOverScrollX + halfScreenSize;
1138
1139 if (screenCenter != mLastScreenCenter || mForceScreenScrolled) {
1140 // set mForceScreenScrolled before calling screenScrolled so that screenScrolled can
1141 // set it for the next frame
1142 mForceScreenScrolled = false;
1143 screenScrolled(screenCenter);
1144 mLastScreenCenter = screenCenter;
1145 }
1146
Michael Jurkadde558b2011-11-09 22:09:06 -08001147 getVisiblePages(mTempVisiblePagesRange);
1148 final int leftScreen = mTempVisiblePagesRange[0];
1149 final int rightScreen = mTempVisiblePagesRange[1];
Winson Chungc6f10b92011-11-14 11:39:07 -08001150 if (leftScreen != -1 && rightScreen != -1) {
1151 final long drawingTime = getDrawingTime();
1152 // Clip to the bounds
1153 canvas.save();
Michael Jurka8b805b12012-04-18 14:23:14 -07001154 canvas.clipRect(getScrollX(), getScrollY(), getScrollX() + getRight() - getLeft(),
1155 getScrollY() + getBottom() - getTop());
Michael Jurka0142d492010-08-25 17:46:15 -07001156
Adam Cohen7d30a372013-07-01 17:03:59 -07001157 // Draw all the children, leaving the drag view for last
1158 for (int i = pageCount - 1; i >= 0; i--) {
Michael Jurka80c69852011-12-16 14:16:32 -08001159 final View v = getPageAt(i);
Adam Cohen7d30a372013-07-01 17:03:59 -07001160 if (v == mDragView) continue;
Michael Jurka5e368ff2012-05-14 23:13:15 -07001161 if (mForceDrawAllChildrenNextFrame ||
1162 (leftScreen <= i && i <= rightScreen && shouldDrawChild(v))) {
Michael Jurka80c69852011-12-16 14:16:32 -08001163 drawChild(canvas, v, drawingTime);
Michael Jurka80c69852011-12-16 14:16:32 -08001164 }
Winson Chungc6f10b92011-11-14 11:39:07 -08001165 }
Adam Cohen7d30a372013-07-01 17:03:59 -07001166 // Draw the drag view on top (if there is one)
1167 if (mDragView != null) {
1168 drawChild(canvas, mDragView, drawingTime);
1169 }
1170
Michael Jurka5e368ff2012-05-14 23:13:15 -07001171 mForceDrawAllChildrenNextFrame = false;
Winson Chungc6f10b92011-11-14 11:39:07 -08001172 canvas.restore();
Michael Jurkac4fb9172010-09-02 17:19:20 -07001173 }
Michael Jurka0142d492010-08-25 17:46:15 -07001174 }
Winson Chung321e9ee2010-08-09 13:37:56 -07001175 }
1176
1177 @Override
1178 public boolean requestChildRectangleOnScreen(View child, Rect rectangle, boolean immediate) {
Adam Cohenae4f1552011-10-20 00:15:42 -07001179 int page = indexToPage(indexOfChild(child));
Winson Chung86f77532010-08-24 11:08:22 -07001180 if (page != mCurrentPage || !mScroller.isFinished()) {
1181 snapToPage(page);
Winson Chung321e9ee2010-08-09 13:37:56 -07001182 return true;
1183 }
1184 return false;
1185 }
1186
1187 @Override
1188 protected boolean onRequestFocusInDescendants(int direction, Rect previouslyFocusedRect) {
Winson Chung86f77532010-08-24 11:08:22 -07001189 int focusablePage;
1190 if (mNextPage != INVALID_PAGE) {
1191 focusablePage = mNextPage;
Winson Chung321e9ee2010-08-09 13:37:56 -07001192 } else {
Winson Chung86f77532010-08-24 11:08:22 -07001193 focusablePage = mCurrentPage;
Winson Chung321e9ee2010-08-09 13:37:56 -07001194 }
Winson Chung86f77532010-08-24 11:08:22 -07001195 View v = getPageAt(focusablePage);
Winson Chung321e9ee2010-08-09 13:37:56 -07001196 if (v != null) {
Adam Cohen76fc0852011-06-17 13:26:23 -07001197 return v.requestFocus(direction, previouslyFocusedRect);
Winson Chung321e9ee2010-08-09 13:37:56 -07001198 }
1199 return false;
1200 }
1201
1202 @Override
1203 public boolean dispatchUnhandledMove(View focused, int direction) {
Adam Cohen0ffac432013-07-10 11:19:26 -07001204 // XXX-RTL: This will be fixed in a future CL
Winson Chung321e9ee2010-08-09 13:37:56 -07001205 if (direction == View.FOCUS_LEFT) {
Winson Chung86f77532010-08-24 11:08:22 -07001206 if (getCurrentPage() > 0) {
1207 snapToPage(getCurrentPage() - 1);
Winson Chung321e9ee2010-08-09 13:37:56 -07001208 return true;
1209 }
1210 } else if (direction == View.FOCUS_RIGHT) {
Winson Chung86f77532010-08-24 11:08:22 -07001211 if (getCurrentPage() < getPageCount() - 1) {
1212 snapToPage(getCurrentPage() + 1);
Winson Chung321e9ee2010-08-09 13:37:56 -07001213 return true;
1214 }
1215 }
1216 return super.dispatchUnhandledMove(focused, direction);
1217 }
1218
1219 @Override
1220 public void addFocusables(ArrayList<View> views, int direction, int focusableMode) {
Adam Cohen0ffac432013-07-10 11:19:26 -07001221 // XXX-RTL: This will be fixed in a future CL
Winson Chung86f77532010-08-24 11:08:22 -07001222 if (mCurrentPage >= 0 && mCurrentPage < getPageCount()) {
alanvaf519952012-05-07 17:33:22 -07001223 getPageAt(mCurrentPage).addFocusables(views, direction, focusableMode);
Winson Chung321e9ee2010-08-09 13:37:56 -07001224 }
1225 if (direction == View.FOCUS_LEFT) {
Winson Chung86f77532010-08-24 11:08:22 -07001226 if (mCurrentPage > 0) {
alanvaf519952012-05-07 17:33:22 -07001227 getPageAt(mCurrentPage - 1).addFocusables(views, direction, focusableMode);
Winson Chung321e9ee2010-08-09 13:37:56 -07001228 }
1229 } else if (direction == View.FOCUS_RIGHT){
Winson Chung86f77532010-08-24 11:08:22 -07001230 if (mCurrentPage < getPageCount() - 1) {
alanvaf519952012-05-07 17:33:22 -07001231 getPageAt(mCurrentPage + 1).addFocusables(views, direction, focusableMode);
Winson Chung321e9ee2010-08-09 13:37:56 -07001232 }
1233 }
1234 }
1235
1236 /**
1237 * If one of our descendant views decides that it could be focused now, only
Winson Chung86f77532010-08-24 11:08:22 -07001238 * pass that along if it's on the current page.
Winson Chung321e9ee2010-08-09 13:37:56 -07001239 *
Winson Chung86f77532010-08-24 11:08:22 -07001240 * This happens when live folders requery, and if they're off page, they
1241 * end up calling requestFocus, which pulls it on page.
Winson Chung321e9ee2010-08-09 13:37:56 -07001242 */
1243 @Override
1244 public void focusableViewAvailable(View focused) {
Winson Chung86f77532010-08-24 11:08:22 -07001245 View current = getPageAt(mCurrentPage);
Winson Chung321e9ee2010-08-09 13:37:56 -07001246 View v = focused;
1247 while (true) {
1248 if (v == current) {
1249 super.focusableViewAvailable(focused);
1250 return;
1251 }
1252 if (v == this) {
1253 return;
1254 }
1255 ViewParent parent = v.getParent();
1256 if (parent instanceof View) {
1257 v = (View)v.getParent();
1258 } else {
1259 return;
1260 }
1261 }
1262 }
1263
1264 /**
1265 * {@inheritDoc}
1266 */
1267 @Override
1268 public void requestDisallowInterceptTouchEvent(boolean disallowIntercept) {
1269 if (disallowIntercept) {
1270 // We need to make sure to cancel our long press if
1271 // a scrollable widget takes over touch events
Adam Cohen22f823d2011-09-01 17:22:18 -07001272 final View currentPage = getPageAt(mCurrentPage);
Winson Chung86f77532010-08-24 11:08:22 -07001273 currentPage.cancelLongPress();
Winson Chung321e9ee2010-08-09 13:37:56 -07001274 }
1275 super.requestDisallowInterceptTouchEvent(disallowIntercept);
1276 }
1277
Patrick Dubroyd0ce1ec2011-01-19 18:47:27 -08001278 /**
1279 * Return true if a tap at (x, y) should trigger a flip to the previous page.
1280 */
1281 protected boolean hitsPreviousPage(float x, float y) {
Sunny Goyal70660032015-05-14 00:07:08 -07001282 if (mIsRtl) {
Adam Cohen0ffac432013-07-10 11:19:26 -07001283 return (x > (getViewportOffsetX() + getViewportWidth() -
Adam Cohen3b185e22013-10-29 14:45:58 -07001284 getPaddingRight() - mPageSpacing));
Adam Cohen0ffac432013-07-10 11:19:26 -07001285 }
Adam Cohen3b185e22013-10-29 14:45:58 -07001286 return (x < getViewportOffsetX() + getPaddingLeft() + mPageSpacing);
Patrick Dubroyd0ce1ec2011-01-19 18:47:27 -08001287 }
1288
1289 /**
1290 * Return true if a tap at (x, y) should trigger a flip to the next page.
1291 */
1292 protected boolean hitsNextPage(float x, float y) {
Sunny Goyal70660032015-05-14 00:07:08 -07001293 if (mIsRtl) {
Adam Cohen3b185e22013-10-29 14:45:58 -07001294 return (x < getViewportOffsetX() + getPaddingLeft() + mPageSpacing);
Adam Cohen0ffac432013-07-10 11:19:26 -07001295 }
1296 return (x > (getViewportOffsetX() + getViewportWidth() -
Adam Cohen3b185e22013-10-29 14:45:58 -07001297 getPaddingRight() - mPageSpacing));
Adam Cohen7d30a372013-07-01 17:03:59 -07001298 }
Winson Chung52aee602013-01-30 12:01:02 -08001299
Adam Cohen7d30a372013-07-01 17:03:59 -07001300 /** Returns whether x and y originated within the buffered viewport */
1301 private boolean isTouchPointInViewportWithBuffer(int x, int y) {
Sunny Goyal8e2133b2015-05-06 13:39:07 -07001302 sTmpRect.set(mViewport.left - mViewport.width() / 2, mViewport.top,
Adam Cohen7d30a372013-07-01 17:03:59 -07001303 mViewport.right + mViewport.width() / 2, mViewport.bottom);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07001304 return sTmpRect.contains(x, y);
Adam Cohen7d30a372013-07-01 17:03:59 -07001305 }
1306
Winson Chung321e9ee2010-08-09 13:37:56 -07001307 @Override
1308 public boolean onInterceptTouchEvent(MotionEvent ev) {
Adam Cohen7d30a372013-07-01 17:03:59 -07001309 if (DISABLE_TOUCH_INTERACTION) {
1310 return false;
1311 }
1312
Winson Chung321e9ee2010-08-09 13:37:56 -07001313 /*
1314 * This method JUST determines whether we want to intercept the motion.
1315 * If we return true, onTouchEvent will be called and we do the actual
1316 * scrolling there.
1317 */
Adam Cohen6342bba2011-03-10 11:33:35 -08001318 acquireVelocityTrackerAndAddMovement(ev);
Winson Chung321e9ee2010-08-09 13:37:56 -07001319
Winson Chung45e1d6e2010-11-09 17:19:49 -08001320 // Skip touch handling if there are no pages to swipe
1321 if (getChildCount() <= 0) return super.onInterceptTouchEvent(ev);
1322
Winson Chung321e9ee2010-08-09 13:37:56 -07001323 /*
1324 * Shortcut the most recurring case: the user is in the dragging
1325 * state and he is moving his finger. We want to intercept this
1326 * motion.
1327 */
1328 final int action = ev.getAction();
1329 if ((action == MotionEvent.ACTION_MOVE) &&
1330 (mTouchState == TOUCH_STATE_SCROLLING)) {
1331 return true;
1332 }
1333
Winson Chung321e9ee2010-08-09 13:37:56 -07001334 switch (action & MotionEvent.ACTION_MASK) {
1335 case MotionEvent.ACTION_MOVE: {
1336 /*
1337 * mIsBeingDragged == false, otherwise the shortcut would have caught it. Check
1338 * whether the user has moved far enough from his original down touch.
1339 */
Michael Jurka1ff706b2010-09-14 17:35:20 -07001340 if (mActivePointerId != INVALID_POINTER) {
1341 determineScrollingStart(ev);
Michael Jurka1ff706b2010-09-14 17:35:20 -07001342 }
1343 // if mActivePointerId is INVALID_POINTER, then we must have missed an ACTION_DOWN
1344 // event. in that case, treat the first occurence of a move event as a ACTION_DOWN
1345 // i.e. fall through to the next case (don't break)
1346 // (We sometimes miss ACTION_DOWN events in Workspace because it ignores all events
1347 // while it's small- this was causing a crash before we checked for INVALID_POINTER)
Adam Cohen93c97562013-09-26 13:48:01 -07001348 break;
Winson Chung321e9ee2010-08-09 13:37:56 -07001349 }
1350
1351 case MotionEvent.ACTION_DOWN: {
1352 final float x = ev.getX();
1353 final float y = ev.getY();
1354 // Remember location of down touch
1355 mDownMotionX = x;
Adam Cohen7d30a372013-07-01 17:03:59 -07001356 mDownMotionY = y;
1357 mDownScrollX = getScrollX();
Winson Chung321e9ee2010-08-09 13:37:56 -07001358 mLastMotionX = x;
1359 mLastMotionY = y;
Adam Cohen7d30a372013-07-01 17:03:59 -07001360 float[] p = mapPointFromViewToParent(this, x, y);
1361 mParentDownMotionX = p[0];
1362 mParentDownMotionY = p[1];
Winson Chungc0844aa2011-02-02 15:25:58 -08001363 mLastMotionXRemainder = 0;
Adam Cohenaefd4e12011-02-14 16:39:38 -08001364 mTotalMotionX = 0;
Winson Chung321e9ee2010-08-09 13:37:56 -07001365 mActivePointerId = ev.getPointerId(0);
Adam Cohen7d30a372013-07-01 17:03:59 -07001366
Winson Chung321e9ee2010-08-09 13:37:56 -07001367 /*
1368 * If being flinged and user touches the screen, initiate drag;
1369 * otherwise don't. mScroller.isFinished should be false when
1370 * being flinged.
1371 */
Michael Jurkafd177c12010-10-19 15:50:43 -07001372 final int xDist = Math.abs(mScroller.getFinalX() - mScroller.getCurrX());
Adam Cohena7652152013-11-18 20:06:55 +00001373 final boolean finishedScrolling = (mScroller.isFinished() || xDist < mTouchSlop / 3);
Adam Cohen2da0a052013-11-08 06:28:17 -08001374
Winson Chung5f2aa4e2010-08-20 14:49:25 -07001375 if (finishedScrolling) {
1376 mTouchState = TOUCH_STATE_REST;
Adam Cohen59b5c792013-12-04 16:09:07 -08001377 if (!mScroller.isFinished() && !mFreeScroll) {
Adam Cohena7652152013-11-18 20:06:55 +00001378 setCurrentPage(getNextPage());
1379 pageEndMoving();
Adam Cohen2da0a052013-11-08 06:28:17 -08001380 }
Winson Chung5f2aa4e2010-08-20 14:49:25 -07001381 } else {
Adam Cohen7d30a372013-07-01 17:03:59 -07001382 if (isTouchPointInViewportWithBuffer((int) mDownMotionX, (int) mDownMotionY)) {
1383 mTouchState = TOUCH_STATE_SCROLLING;
1384 } else {
1385 mTouchState = TOUCH_STATE_REST;
1386 }
Winson Chung5f2aa4e2010-08-20 14:49:25 -07001387 }
Winson Chung321e9ee2010-08-09 13:37:56 -07001388
Winson Chung86f77532010-08-24 11:08:22 -07001389 // check if this can be the beginning of a tap on the side of the pages
Winson Chung321e9ee2010-08-09 13:37:56 -07001390 // to scroll the current page
Adam Cohen7d30a372013-07-01 17:03:59 -07001391 if (!DISABLE_TOUCH_SIDE_PAGES) {
1392 if (mTouchState != TOUCH_STATE_PREV_PAGE && mTouchState != TOUCH_STATE_NEXT_PAGE) {
1393 if (getChildCount() > 0) {
1394 if (hitsPreviousPage(x, y)) {
1395 mTouchState = TOUCH_STATE_PREV_PAGE;
1396 } else if (hitsNextPage(x, y)) {
1397 mTouchState = TOUCH_STATE_NEXT_PAGE;
1398 }
Winson Chung321e9ee2010-08-09 13:37:56 -07001399 }
1400 }
1401 }
1402 break;
1403 }
1404
Winson Chung321e9ee2010-08-09 13:37:56 -07001405 case MotionEvent.ACTION_UP:
Jeff Brown1d0867c2010-12-02 18:27:39 -08001406 case MotionEvent.ACTION_CANCEL:
Adam Cohen7d30a372013-07-01 17:03:59 -07001407 resetTouchState();
Winson Chung321e9ee2010-08-09 13:37:56 -07001408 break;
1409
1410 case MotionEvent.ACTION_POINTER_UP:
1411 onSecondaryPointerUp(ev);
Adam Cohen6342bba2011-03-10 11:33:35 -08001412 releaseVelocityTracker();
Winson Chung321e9ee2010-08-09 13:37:56 -07001413 break;
1414 }
1415
1416 /*
1417 * The only time we want to intercept motion events is if we are in the
1418 * drag mode.
1419 */
1420 return mTouchState != TOUCH_STATE_REST;
1421 }
1422
Adam Cohenf8d28232011-02-01 21:47:00 -08001423 protected void determineScrollingStart(MotionEvent ev) {
1424 determineScrollingStart(ev, 1.0f);
1425 }
1426
Winson Chung321e9ee2010-08-09 13:37:56 -07001427 /*
1428 * Determines if we should change the touch state to start scrolling after the
1429 * user moves their touch point too far.
1430 */
Adam Cohenf8d28232011-02-01 21:47:00 -08001431 protected void determineScrollingStart(MotionEvent ev, float touchSlopScale) {
Adam Cohen7d30a372013-07-01 17:03:59 -07001432 // Disallow scrolling if we don't have a valid pointer index
Winson Chung321e9ee2010-08-09 13:37:56 -07001433 final int pointerIndex = ev.findPointerIndex(mActivePointerId);
Adam Cohen7d30a372013-07-01 17:03:59 -07001434 if (pointerIndex == -1) return;
1435
1436 // Disallow scrolling if we started the gesture from outside the viewport
Winson Chung321e9ee2010-08-09 13:37:56 -07001437 final float x = ev.getX(pointerIndex);
1438 final float y = ev.getY(pointerIndex);
Adam Cohen7d30a372013-07-01 17:03:59 -07001439 if (!isTouchPointInViewportWithBuffer((int) x, (int) y)) return;
1440
Winson Chung321e9ee2010-08-09 13:37:56 -07001441 final int xDiff = (int) Math.abs(x - mLastMotionX);
1442 final int yDiff = (int) Math.abs(y - mLastMotionY);
1443
Adam Cohenf8d28232011-02-01 21:47:00 -08001444 final int touchSlop = Math.round(touchSlopScale * mTouchSlop);
Winson Chung321e9ee2010-08-09 13:37:56 -07001445 boolean xPaged = xDiff > mPagingTouchSlop;
1446 boolean xMoved = xDiff > touchSlop;
1447 boolean yMoved = yDiff > touchSlop;
1448
Adam Cohenf8d28232011-02-01 21:47:00 -08001449 if (xMoved || xPaged || yMoved) {
Michael Jurka0142d492010-08-25 17:46:15 -07001450 if (mUsePagingTouchSlop ? xPaged : xMoved) {
Winson Chung321e9ee2010-08-09 13:37:56 -07001451 // Scroll if the user moved far enough along the X axis
1452 mTouchState = TOUCH_STATE_SCROLLING;
Adam Cohen6342bba2011-03-10 11:33:35 -08001453 mTotalMotionX += Math.abs(mLastMotionX - x);
Winson Chung321e9ee2010-08-09 13:37:56 -07001454 mLastMotionX = x;
Winson Chungc0844aa2011-02-02 15:25:58 -08001455 mLastMotionXRemainder = 0;
Adam Cohen7d30a372013-07-01 17:03:59 -07001456 mTouchX = getViewportOffsetX() + getScrollX();
Michael Jurka0142d492010-08-25 17:46:15 -07001457 mSmoothingTime = System.nanoTime() / NANOTIME_DIV;
Adam Cohenc2d6e892014-10-16 09:49:24 -07001458 onScrollInteractionBegin();
Michael Jurka0142d492010-08-25 17:46:15 -07001459 pageBeginMoving();
Winson Chung321e9ee2010-08-09 13:37:56 -07001460 }
Adam Cohenf8d28232011-02-01 21:47:00 -08001461 }
1462 }
1463
1464 protected void cancelCurrentPageLongPress() {
Sunny Goyal8e2133b2015-05-06 13:39:07 -07001465 // Try canceling the long press. It could also have been scheduled
1466 // by a distant descendant, so use the mAllowLongPress flag to block
1467 // everything
1468 final View currentPage = getPageAt(mCurrentPage);
1469 if (currentPage != null) {
1470 currentPage.cancelLongPress();
Winson Chung321e9ee2010-08-09 13:37:56 -07001471 }
1472 }
1473
Adam Cohenb5ba0972011-09-07 18:02:31 -07001474 protected float getScrollProgress(int screenCenter, View v, int page) {
Adam Cohen7d30a372013-07-01 17:03:59 -07001475 final int halfScreenSize = getViewportWidth() / 2;
Adam Cohenb5ba0972011-09-07 18:02:31 -07001476
Adam Cohenedb40762013-07-18 16:45:45 -07001477 int delta = screenCenter - (getScrollForPage(page) + halfScreenSize);
Adam Cohen3b185e22013-10-29 14:45:58 -07001478 int count = getChildCount();
1479
1480 final int totalDistance;
1481
1482 int adjacentPage = page + 1;
Sunny Goyal70660032015-05-14 00:07:08 -07001483 if ((delta < 0 && !mIsRtl) || (delta > 0 && mIsRtl)) {
Adam Cohen3b185e22013-10-29 14:45:58 -07001484 adjacentPage = page - 1;
1485 }
1486
1487 if (adjacentPage < 0 || adjacentPage > count - 1) {
1488 totalDistance = v.getMeasuredWidth() + mPageSpacing;
1489 } else {
1490 totalDistance = Math.abs(getScrollForPage(adjacentPage) - getScrollForPage(page));
1491 }
Adam Cohenb5ba0972011-09-07 18:02:31 -07001492
1493 float scrollProgress = delta / (totalDistance * 1.0f);
Sunny Goyal8e2133b2015-05-06 13:39:07 -07001494 scrollProgress = Math.min(scrollProgress, MAX_SCROLL_PROGRESS);
1495 scrollProgress = Math.max(scrollProgress, - MAX_SCROLL_PROGRESS);
Adam Cohenb5ba0972011-09-07 18:02:31 -07001496 return scrollProgress;
1497 }
1498
Adam Cohenedb40762013-07-18 16:45:45 -07001499 public int getScrollForPage(int index) {
Adam Cohen1f1f45d2013-10-02 09:40:18 -07001500 if (mPageScrolls == null || index >= mPageScrolls.length || index < 0) {
Adam Cohenedb40762013-07-18 16:45:45 -07001501 return 0;
1502 } else {
1503 return mPageScrolls[index];
1504 }
1505 }
1506
Adam Cohen564a2e72013-10-09 14:47:32 -07001507 // While layout transitions are occurring, a child's position may stray from its baseline
1508 // position. This method returns the magnitude of this stray at any given time.
1509 public int getLayoutTransitionOffsetForPage(int index) {
1510 if (mPageScrolls == null || index >= mPageScrolls.length || index < 0) {
1511 return 0;
1512 } else {
1513 View child = getChildAt(index);
Adam Cohen3b185e22013-10-29 14:45:58 -07001514
1515 int scrollOffset = 0;
1516 LayoutParams lp = (LayoutParams) child.getLayoutParams();
1517 if (!lp.isFullScreenPage) {
Sunny Goyal70660032015-05-14 00:07:08 -07001518 scrollOffset = mIsRtl ? getPaddingRight() : getPaddingLeft();
Adam Cohen3b185e22013-10-29 14:45:58 -07001519 }
1520
Adam Cohen564a2e72013-10-09 14:47:32 -07001521 int baselineX = mPageScrolls[index] + scrollOffset + getViewportOffsetX();
1522 return (int) (child.getX() - baselineX);
1523 }
1524 }
1525
Adam Cohene0f66b52010-11-23 15:06:07 -08001526 // This curve determines how the effect of scrolling over the limits of the page dimishes
1527 // as the user pulls further and further from the bounds
1528 private float overScrollInfluenceCurve(float f) {
1529 f -= 1.0f;
1530 return f * f * f + 1.0f;
1531 }
1532
Adam Cohen1e4359c2014-08-18 13:12:16 -07001533 protected float acceleratedOverFactor(float amount) {
Adam Cohen7d30a372013-07-01 17:03:59 -07001534 int screenSize = getViewportWidth();
Adam Cohenb5ba0972011-09-07 18:02:31 -07001535
1536 // We want to reach the max over scroll effect when the user has
1537 // over scrolled half the size of the screen
1538 float f = OVERSCROLL_ACCELERATE_FACTOR * (amount / screenSize);
1539
Adam Cohen1e4359c2014-08-18 13:12:16 -07001540 if (f == 0) return 0;
Adam Cohenb5ba0972011-09-07 18:02:31 -07001541
1542 // Clamp this factor, f, to -1 < f < 1
1543 if (Math.abs(f) >= 1) {
1544 f /= Math.abs(f);
1545 }
Adam Cohen1e4359c2014-08-18 13:12:16 -07001546 return f;
Adam Cohenb5ba0972011-09-07 18:02:31 -07001547 }
1548
1549 protected void dampedOverScroll(float amount) {
Adam Cohen7d30a372013-07-01 17:03:59 -07001550 int screenSize = getViewportWidth();
Adam Cohene0f66b52010-11-23 15:06:07 -08001551
1552 float f = (amount / screenSize);
1553
1554 if (f == 0) return;
1555 f = f / (Math.abs(f)) * (overScrollInfluenceCurve(Math.abs(f)));
1556
Adam Cohen7bfc9792011-01-28 13:52:37 -08001557 // Clamp this factor, f, to -1 < f < 1
1558 if (Math.abs(f) >= 1) {
1559 f /= Math.abs(f);
1560 }
1561
Adam Cohene0f66b52010-11-23 15:06:07 -08001562 int overScrollAmount = (int) Math.round(OVERSCROLL_DAMP_FACTOR * f * screenSize);
Adam Cohen68d73932010-11-15 10:50:58 -08001563 if (amount < 0) {
Adam Cohenebea84d2011-11-09 17:20:41 -08001564 mOverScrollX = overScrollAmount;
Adam Cohen1e4359c2014-08-18 13:12:16 -07001565 super.scrollTo(mOverScrollX, getScrollY());
Adam Cohen68d73932010-11-15 10:50:58 -08001566 } else {
Adam Cohenebea84d2011-11-09 17:20:41 -08001567 mOverScrollX = mMaxScrollX + overScrollAmount;
Adam Cohen1e4359c2014-08-18 13:12:16 -07001568 super.scrollTo(mOverScrollX, getScrollY());
Adam Cohen68d73932010-11-15 10:50:58 -08001569 }
1570 invalidate();
1571 }
1572
Adam Cohenb5ba0972011-09-07 18:02:31 -07001573 protected void overScroll(float amount) {
1574 dampedOverScroll(amount);
1575 }
1576
Michael Jurkac5b262c2011-01-12 20:24:50 -08001577 protected float maxOverScroll() {
1578 // Using the formula in overScroll, assuming that f = 1.0 (which it should generally not
Adam Cohenb5ba0972011-09-07 18:02:31 -07001579 // exceed). Used to find out how much extra wallpaper we need for the over scroll effect
Michael Jurkac5b262c2011-01-12 20:24:50 -08001580 float f = 1.0f;
1581 f = f / (Math.abs(f)) * (overScrollInfluenceCurve(Math.abs(f)));
1582 return OVERSCROLL_DAMP_FACTOR * f;
1583 }
1584
Winson Chungdc61c4d2015-04-20 18:26:57 -07001585 public void enableFreeScroll() {
Adam Cohenf9618852013-11-08 06:45:03 -08001586 setEnableFreeScroll(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001587 }
1588
Winson Chungdc61c4d2015-04-20 18:26:57 -07001589 public void disableFreeScroll() {
Adam Cohenf9618852013-11-08 06:45:03 -08001590 setEnableFreeScroll(false);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001591 }
1592
Adam Cohen7a9e58a2013-10-01 18:02:13 -07001593 void updateFreescrollBounds() {
Adam Cohen6f127a62014-06-12 14:54:41 -07001594 getFreeScrollPageRange(mTempVisiblePagesRange);
Sunny Goyal70660032015-05-14 00:07:08 -07001595 if (mIsRtl) {
Adam Cohen7a9e58a2013-10-01 18:02:13 -07001596 mFreeScrollMinScrollX = getScrollForPage(mTempVisiblePagesRange[1]);
1597 mFreeScrollMaxScrollX = getScrollForPage(mTempVisiblePagesRange[0]);
1598 } else {
1599 mFreeScrollMinScrollX = getScrollForPage(mTempVisiblePagesRange[0]);
1600 mFreeScrollMaxScrollX = getScrollForPage(mTempVisiblePagesRange[1]);
1601 }
1602 }
1603
Adam Cohenf9618852013-11-08 06:45:03 -08001604 private void setEnableFreeScroll(boolean freeScroll) {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001605 mFreeScroll = freeScroll;
1606
Adam Cohenf9618852013-11-08 06:45:03 -08001607 if (mFreeScroll) {
Adam Cohen7a9e58a2013-10-01 18:02:13 -07001608 updateFreescrollBounds();
Adam Cohen6f127a62014-06-12 14:54:41 -07001609 getFreeScrollPageRange(mTempVisiblePagesRange);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001610 if (getCurrentPage() < mTempVisiblePagesRange[0]) {
1611 setCurrentPage(mTempVisiblePagesRange[0]);
1612 } else if (getCurrentPage() > mTempVisiblePagesRange[1]) {
1613 setCurrentPage(mTempVisiblePagesRange[1]);
1614 }
1615 }
1616
1617 setEnableOverscroll(!freeScroll);
1618 }
1619
Sunny Goyal2f0ec852015-03-26 13:38:27 -07001620 protected void setEnableOverscroll(boolean enable) {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001621 mAllowOverScroll = enable;
1622 }
1623
Sunny Goyal8e2133b2015-05-06 13:39:07 -07001624 private int getNearestHoverOverPageIndex() {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001625 if (mDragView != null) {
1626 int dragX = (int) (mDragView.getLeft() + (mDragView.getMeasuredWidth() / 2)
1627 + mDragView.getTranslationX());
Adam Cohen6f127a62014-06-12 14:54:41 -07001628 getFreeScrollPageRange(mTempVisiblePagesRange);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001629 int minDistance = Integer.MAX_VALUE;
1630 int minIndex = indexOfChild(mDragView);
1631 for (int i = mTempVisiblePagesRange[0]; i <= mTempVisiblePagesRange[1]; i++) {
1632 View page = getPageAt(i);
1633 int pageX = (int) (page.getLeft() + page.getMeasuredWidth() / 2);
1634 int d = Math.abs(dragX - pageX);
1635 if (d < minDistance) {
1636 minIndex = i;
1637 minDistance = d;
1638 }
1639 }
1640 return minIndex;
1641 }
1642 return -1;
1643 }
1644
Winson Chung321e9ee2010-08-09 13:37:56 -07001645 @Override
1646 public boolean onTouchEvent(MotionEvent ev) {
Adam Cohen7d30a372013-07-01 17:03:59 -07001647 if (DISABLE_TOUCH_INTERACTION) {
1648 return false;
1649 }
1650
Adam Cohen1697b792013-09-17 19:08:21 -07001651 super.onTouchEvent(ev);
1652
Winson Chung45e1d6e2010-11-09 17:19:49 -08001653 // Skip touch handling if there are no pages to swipe
1654 if (getChildCount() <= 0) return super.onTouchEvent(ev);
1655
Michael Jurkab8f06722010-10-10 15:58:46 -07001656 acquireVelocityTrackerAndAddMovement(ev);
Winson Chung321e9ee2010-08-09 13:37:56 -07001657
1658 final int action = ev.getAction();
1659
1660 switch (action & MotionEvent.ACTION_MASK) {
1661 case MotionEvent.ACTION_DOWN:
1662 /*
1663 * If being flinged and user touches, stop the fling. isFinished
1664 * will be false if being flinged.
1665 */
1666 if (!mScroller.isFinished()) {
Adam Cohen8bdbaab2013-10-29 15:25:02 -07001667 abortScrollerAnimation(false);
Winson Chung321e9ee2010-08-09 13:37:56 -07001668 }
1669
1670 // Remember where the motion event started
1671 mDownMotionX = mLastMotionX = ev.getX();
Adam Cohen7d30a372013-07-01 17:03:59 -07001672 mDownMotionY = mLastMotionY = ev.getY();
1673 mDownScrollX = getScrollX();
1674 float[] p = mapPointFromViewToParent(this, mLastMotionX, mLastMotionY);
1675 mParentDownMotionX = p[0];
1676 mParentDownMotionY = p[1];
Winson Chungc0844aa2011-02-02 15:25:58 -08001677 mLastMotionXRemainder = 0;
Adam Cohenaefd4e12011-02-14 16:39:38 -08001678 mTotalMotionX = 0;
Winson Chung321e9ee2010-08-09 13:37:56 -07001679 mActivePointerId = ev.getPointerId(0);
Adam Cohen7d30a372013-07-01 17:03:59 -07001680
Michael Jurka0142d492010-08-25 17:46:15 -07001681 if (mTouchState == TOUCH_STATE_SCROLLING) {
Adam Cohenc2d6e892014-10-16 09:49:24 -07001682 onScrollInteractionBegin();
Michael Jurka0142d492010-08-25 17:46:15 -07001683 pageBeginMoving();
1684 }
Winson Chung321e9ee2010-08-09 13:37:56 -07001685 break;
1686
1687 case MotionEvent.ACTION_MOVE:
1688 if (mTouchState == TOUCH_STATE_SCROLLING) {
1689 // Scroll to follow the motion event
1690 final int pointerIndex = ev.findPointerIndex(mActivePointerId);
Adam Cohen7d30a372013-07-01 17:03:59 -07001691
1692 if (pointerIndex == -1) return true;
1693
Winson Chung321e9ee2010-08-09 13:37:56 -07001694 final float x = ev.getX(pointerIndex);
Winson Chungc0844aa2011-02-02 15:25:58 -08001695 final float deltaX = mLastMotionX + mLastMotionXRemainder - x;
Winson Chung321e9ee2010-08-09 13:37:56 -07001696
Adam Cohenaefd4e12011-02-14 16:39:38 -08001697 mTotalMotionX += Math.abs(deltaX);
1698
Winson Chungc0844aa2011-02-02 15:25:58 -08001699 // Only scroll and update mLastMotionX if we have moved some discrete amount. We
1700 // keep the remainder because we are actually testing if we've moved from the last
1701 // scrolled position (which is discrete).
1702 if (Math.abs(deltaX) >= 1.0f) {
Adam Cohen68d73932010-11-15 10:50:58 -08001703 mTouchX += deltaX;
1704 mSmoothingTime = System.nanoTime() / NANOTIME_DIV;
1705 if (!mDeferScrollUpdate) {
Winson Chungc0844aa2011-02-02 15:25:58 -08001706 scrollBy((int) deltaX, 0);
Winson Chung785d2eb2011-04-14 16:08:02 -07001707 if (DEBUG) Log.d(TAG, "onTouchEvent().Scrolling: " + deltaX);
Adam Cohen68d73932010-11-15 10:50:58 -08001708 } else {
1709 invalidate();
Winson Chung321e9ee2010-08-09 13:37:56 -07001710 }
Winson Chungc0844aa2011-02-02 15:25:58 -08001711 mLastMotionX = x;
1712 mLastMotionXRemainder = deltaX - (int) deltaX;
Winson Chung321e9ee2010-08-09 13:37:56 -07001713 } else {
1714 awakenScrollBars();
1715 }
Adam Cohen7d30a372013-07-01 17:03:59 -07001716 } else if (mTouchState == TOUCH_STATE_REORDERING) {
1717 // Update the last motion position
1718 mLastMotionX = ev.getX();
1719 mLastMotionY = ev.getY();
1720
1721 // Update the parent down so that our zoom animations take this new movement into
1722 // account
1723 float[] pt = mapPointFromViewToParent(this, mLastMotionX, mLastMotionY);
1724 mParentDownMotionX = pt[0];
1725 mParentDownMotionY = pt[1];
1726 updateDragViewTranslationDuringDrag();
1727
1728 // Find the closest page to the touch point
1729 final int dragViewIndex = indexOfChild(mDragView);
Adam Cohen7d30a372013-07-01 17:03:59 -07001730
Adam Cohen7d30a372013-07-01 17:03:59 -07001731 if (DEBUG) Log.d(TAG, "mLastMotionX: " + mLastMotionX);
1732 if (DEBUG) Log.d(TAG, "mLastMotionY: " + mLastMotionY);
1733 if (DEBUG) Log.d(TAG, "mParentDownMotionX: " + mParentDownMotionX);
1734 if (DEBUG) Log.d(TAG, "mParentDownMotionY: " + mParentDownMotionY);
1735
Adam Cohenf358a4b2013-07-23 16:47:31 -07001736 final int pageUnderPointIndex = getNearestHoverOverPageIndex();
Sunny Goyal8e2133b2015-05-06 13:39:07 -07001737 if (pageUnderPointIndex > -1 && pageUnderPointIndex != indexOfChild(mDragView)) {
Adam Cohen7d30a372013-07-01 17:03:59 -07001738 mTempVisiblePagesRange[0] = 0;
1739 mTempVisiblePagesRange[1] = getPageCount() - 1;
Adam Cohen6f127a62014-06-12 14:54:41 -07001740 getFreeScrollPageRange(mTempVisiblePagesRange);
Adam Cohen7d30a372013-07-01 17:03:59 -07001741 if (mTempVisiblePagesRange[0] <= pageUnderPointIndex &&
1742 pageUnderPointIndex <= mTempVisiblePagesRange[1] &&
1743 pageUnderPointIndex != mSidePageHoverIndex && mScroller.isFinished()) {
1744 mSidePageHoverIndex = pageUnderPointIndex;
1745 mSidePageHoverRunnable = new Runnable() {
1746 @Override
1747 public void run() {
Adam Cohen7d30a372013-07-01 17:03:59 -07001748 // Setup the scroll to the correct page before we swap the views
1749 snapToPage(pageUnderPointIndex);
1750
1751 // For each of the pages between the paged view and the drag view,
1752 // animate them from the previous position to the new position in
1753 // the layout (as a result of the drag view moving in the layout)
1754 int shiftDelta = (dragViewIndex < pageUnderPointIndex) ? -1 : 1;
1755 int lowerIndex = (dragViewIndex < pageUnderPointIndex) ?
1756 dragViewIndex + 1 : pageUnderPointIndex;
1757 int upperIndex = (dragViewIndex > pageUnderPointIndex) ?
1758 dragViewIndex - 1 : pageUnderPointIndex;
1759 for (int i = lowerIndex; i <= upperIndex; ++i) {
1760 View v = getChildAt(i);
1761 // dragViewIndex < pageUnderPointIndex, so after we remove the
1762 // drag view all subsequent views to pageUnderPointIndex will
1763 // shift down.
1764 int oldX = getViewportOffsetX() + getChildOffset(i);
1765 int newX = getViewportOffsetX() + getChildOffset(i + shiftDelta);
1766
1767 // Animate the view translation from its old position to its new
1768 // position
1769 AnimatorSet anim = (AnimatorSet) v.getTag(ANIM_TAG_KEY);
1770 if (anim != null) {
1771 anim.cancel();
1772 }
1773
1774 v.setTranslationX(oldX - newX);
1775 anim = new AnimatorSet();
1776 anim.setDuration(REORDERING_REORDER_REPOSITION_DURATION);
1777 anim.playTogether(
1778 ObjectAnimator.ofFloat(v, "translationX", 0f));
1779 anim.start();
1780 v.setTag(anim);
1781 }
1782
1783 removeView(mDragView);
Adam Cohen7d30a372013-07-01 17:03:59 -07001784 addView(mDragView, pageUnderPointIndex);
Adam Cohen7d30a372013-07-01 17:03:59 -07001785 mSidePageHoverIndex = -1;
Winson Chung876a6192013-11-06 14:49:50 -08001786 if (mPageIndicator != null) {
1787 mPageIndicator.setActiveMarker(getNextPage());
1788 }
Adam Cohen7d30a372013-07-01 17:03:59 -07001789 }
1790 };
1791 postDelayed(mSidePageHoverRunnable, REORDERING_SIDE_PAGE_HOVER_TIMEOUT);
1792 }
1793 } else {
1794 removeCallbacks(mSidePageHoverRunnable);
1795 mSidePageHoverIndex = -1;
1796 }
Adam Cohen564976a2010-10-13 18:52:07 -07001797 } else {
Winson Chung321e9ee2010-08-09 13:37:56 -07001798 determineScrollingStart(ev);
1799 }
1800 break;
1801
1802 case MotionEvent.ACTION_UP:
1803 if (mTouchState == TOUCH_STATE_SCROLLING) {
1804 final int activePointerId = mActivePointerId;
1805 final int pointerIndex = ev.findPointerIndex(activePointerId);
1806 final float x = ev.getX(pointerIndex);
1807 final VelocityTracker velocityTracker = mVelocityTracker;
1808 velocityTracker.computeCurrentVelocity(1000, mMaximumVelocity);
1809 int velocityX = (int) velocityTracker.getXVelocity(activePointerId);
Winson Chung9cfd25f2010-10-24 16:09:28 -07001810 final int deltaX = (int) (x - mDownMotionX);
Adam Cohen96d30a12013-07-16 18:13:21 -07001811 final int pageWidth = getPageAt(mCurrentPage).getMeasuredWidth();
Adam Cohen00481b32011-11-18 12:03:48 -08001812 boolean isSignificantMove = Math.abs(deltaX) > pageWidth *
1813 SIGNIFICANT_MOVE_THRESHOLD;
Adam Cohenaefd4e12011-02-14 16:39:38 -08001814
Adam Cohenb64cb5a2011-02-15 13:53:42 -08001815 mTotalMotionX += Math.abs(mLastMotionX + mLastMotionXRemainder - x);
1816
Adam Cohen00481b32011-11-18 12:03:48 -08001817 boolean isFling = mTotalMotionX > MIN_LENGTH_FOR_FLING &&
Adam Cohen265b9a62011-12-07 14:37:18 -08001818 Math.abs(velocityX) > mFlingThresholdVelocity;
Adam Cohen00481b32011-11-18 12:03:48 -08001819
Adam Cohenf358a4b2013-07-23 16:47:31 -07001820 if (!mFreeScroll) {
1821 // In the case that the page is moved far to one direction and then is flung
1822 // in the opposite direction, we use a threshold to determine whether we should
1823 // just return to the starting page, or if we should skip one further.
1824 boolean returnToOriginalPage = false;
1825 if (Math.abs(deltaX) > pageWidth * RETURN_TO_ORIGINAL_PAGE_THRESHOLD &&
1826 Math.signum(velocityX) != Math.signum(deltaX) && isFling) {
1827 returnToOriginalPage = true;
1828 }
Adam Cohenaefd4e12011-02-14 16:39:38 -08001829
Adam Cohenf358a4b2013-07-23 16:47:31 -07001830 int finalPage;
1831 // We give flings precedence over large moves, which is why we short-circuit our
1832 // test for a large move if a fling has been registered. That is, a large
1833 // move to the left and fling to the right will register as a fling to the right.
Sunny Goyal70660032015-05-14 00:07:08 -07001834 boolean isDeltaXLeft = mIsRtl ? deltaX > 0 : deltaX < 0;
1835 boolean isVelocityXLeft = mIsRtl ? velocityX > 0 : velocityX < 0;
Adam Cohenf358a4b2013-07-23 16:47:31 -07001836 if (((isSignificantMove && !isDeltaXLeft && !isFling) ||
1837 (isFling && !isVelocityXLeft)) && mCurrentPage > 0) {
1838 finalPage = returnToOriginalPage ? mCurrentPage : mCurrentPage - 1;
1839 snapToPageWithVelocity(finalPage, velocityX);
1840 } else if (((isSignificantMove && isDeltaXLeft && !isFling) ||
1841 (isFling && isVelocityXLeft)) &&
1842 mCurrentPage < getChildCount() - 1) {
1843 finalPage = returnToOriginalPage ? mCurrentPage : mCurrentPage + 1;
1844 snapToPageWithVelocity(finalPage, velocityX);
1845 } else {
1846 snapToDestination();
Adam Cohenf358a4b2013-07-23 16:47:31 -07001847 }
Winson Chung321e9ee2010-08-09 13:37:56 -07001848 } else {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001849 if (!mScroller.isFinished()) {
Adam Cohen8bdbaab2013-10-29 15:25:02 -07001850 abortScrollerAnimation(true);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001851 }
1852
1853 float scaleX = getScaleX();
1854 int vX = (int) (-velocityX * scaleX);
1855 int initialScrollX = (int) (getScrollX() * scaleX);
1856
Adam Cohenf9618852013-11-08 06:45:03 -08001857 mScroller.setInterpolator(mDefaultInterpolator);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001858 mScroller.fling(initialScrollX,
1859 getScrollY(), vX, 0, Integer.MIN_VALUE, Integer.MAX_VALUE, 0, 0);
1860 invalidate();
Winson Chung321e9ee2010-08-09 13:37:56 -07001861 }
Adam Cohenc2d6e892014-10-16 09:49:24 -07001862 onScrollInteractionEnd();
Adam Cohencae7f572013-11-04 14:42:52 -08001863 } else if (mTouchState == TOUCH_STATE_PREV_PAGE) {
1864 // at this point we have not moved beyond the touch slop
1865 // (otherwise mTouchState would be TOUCH_STATE_SCROLLING), so
1866 // we can just page
1867 int nextPage = Math.max(0, mCurrentPage - 1);
1868 if (nextPage != mCurrentPage) {
1869 snapToPage(nextPage);
1870 } else {
1871 snapToDestination();
1872 }
Patrick Dubroyd0ce1ec2011-01-19 18:47:27 -08001873 } else if (mTouchState == TOUCH_STATE_NEXT_PAGE) {
Winson Chung321e9ee2010-08-09 13:37:56 -07001874 // at this point we have not moved beyond the touch slop
1875 // (otherwise mTouchState would be TOUCH_STATE_SCROLLING), so
1876 // we can just page
Winson Chung86f77532010-08-24 11:08:22 -07001877 int nextPage = Math.min(getChildCount() - 1, mCurrentPage + 1);
1878 if (nextPage != mCurrentPage) {
1879 snapToPage(nextPage);
Winson Chung321e9ee2010-08-09 13:37:56 -07001880 } else {
1881 snapToDestination();
1882 }
Adam Cohen7d30a372013-07-01 17:03:59 -07001883 } else if (mTouchState == TOUCH_STATE_REORDERING) {
1884 // Update the last motion position
1885 mLastMotionX = ev.getX();
1886 mLastMotionY = ev.getY();
1887
1888 // Update the parent down so that our zoom animations take this new movement into
1889 // account
1890 float[] pt = mapPointFromViewToParent(this, mLastMotionX, mLastMotionY);
1891 mParentDownMotionX = pt[0];
1892 mParentDownMotionY = pt[1];
1893 updateDragViewTranslationDuringDrag();
Jeff Brown1d0867c2010-12-02 18:27:39 -08001894 } else {
Adam Cohendbdff6b2013-09-18 19:09:15 -07001895 if (!mCancelTap) {
1896 onUnhandledTap(ev);
1897 }
Winson Chung321e9ee2010-08-09 13:37:56 -07001898 }
Adam Cohen7d30a372013-07-01 17:03:59 -07001899
1900 // Remove the callback to wait for the side page hover timeout
1901 removeCallbacks(mSidePageHoverRunnable);
1902 // End any intermediate reordering states
1903 resetTouchState();
Winson Chung321e9ee2010-08-09 13:37:56 -07001904 break;
1905
1906 case MotionEvent.ACTION_CANCEL:
Michael Jurkab8f06722010-10-10 15:58:46 -07001907 if (mTouchState == TOUCH_STATE_SCROLLING) {
1908 snapToDestination();
1909 }
Adam Cohen7d30a372013-07-01 17:03:59 -07001910 resetTouchState();
Winson Chung321e9ee2010-08-09 13:37:56 -07001911 break;
1912
1913 case MotionEvent.ACTION_POINTER_UP:
1914 onSecondaryPointerUp(ev);
Adam Cohenf358a4b2013-07-23 16:47:31 -07001915 releaseVelocityTracker();
Winson Chung321e9ee2010-08-09 13:37:56 -07001916 break;
1917 }
1918
1919 return true;
1920 }
1921
Adam Cohen7d30a372013-07-01 17:03:59 -07001922 private void resetTouchState() {
1923 releaseVelocityTracker();
1924 endReordering();
Adam Cohendbdff6b2013-09-18 19:09:15 -07001925 mCancelTap = false;
Adam Cohen7d30a372013-07-01 17:03:59 -07001926 mTouchState = TOUCH_STATE_REST;
1927 mActivePointerId = INVALID_POINTER;
Adam Cohen7d30a372013-07-01 17:03:59 -07001928 }
1929
Adam Cohenc2d6e892014-10-16 09:49:24 -07001930 /**
1931 * Triggered by scrolling via touch
1932 */
1933 protected void onScrollInteractionBegin() {
1934 }
1935
1936 protected void onScrollInteractionEnd() {
1937 }
1938
Adam Cohen1697b792013-09-17 19:08:21 -07001939 protected void onUnhandledTap(MotionEvent ev) {
1940 ((Launcher) getContext()).onClick(this);
1941 }
Adam Cohen7d30a372013-07-01 17:03:59 -07001942
Winson Chung185d7162011-02-28 13:47:29 -08001943 @Override
1944 public boolean onGenericMotionEvent(MotionEvent event) {
1945 if ((event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) {
1946 switch (event.getAction()) {
1947 case MotionEvent.ACTION_SCROLL: {
1948 // Handle mouse (or ext. device) by shifting the page depending on the scroll
1949 final float vscroll;
1950 final float hscroll;
1951 if ((event.getMetaState() & KeyEvent.META_SHIFT_ON) != 0) {
1952 vscroll = 0;
1953 hscroll = event.getAxisValue(MotionEvent.AXIS_VSCROLL);
1954 } else {
1955 vscroll = -event.getAxisValue(MotionEvent.AXIS_VSCROLL);
1956 hscroll = event.getAxisValue(MotionEvent.AXIS_HSCROLL);
1957 }
1958 if (hscroll != 0 || vscroll != 0) {
Sunny Goyal70660032015-05-14 00:07:08 -07001959 boolean isForwardScroll = mIsRtl ? (hscroll < 0 || vscroll < 0)
Adam Cohen0ffac432013-07-10 11:19:26 -07001960 : (hscroll > 0 || vscroll > 0);
1961 if (isForwardScroll) {
Winson Chung185d7162011-02-28 13:47:29 -08001962 scrollRight();
1963 } else {
1964 scrollLeft();
1965 }
1966 return true;
1967 }
1968 }
1969 }
1970 }
1971 return super.onGenericMotionEvent(event);
1972 }
1973
Michael Jurkab8f06722010-10-10 15:58:46 -07001974 private void acquireVelocityTrackerAndAddMovement(MotionEvent ev) {
1975 if (mVelocityTracker == null) {
1976 mVelocityTracker = VelocityTracker.obtain();
1977 }
1978 mVelocityTracker.addMovement(ev);
1979 }
1980
1981 private void releaseVelocityTracker() {
1982 if (mVelocityTracker != null) {
Adam Cohenf358a4b2013-07-23 16:47:31 -07001983 mVelocityTracker.clear();
Michael Jurkab8f06722010-10-10 15:58:46 -07001984 mVelocityTracker.recycle();
1985 mVelocityTracker = null;
1986 }
1987 }
1988
Winson Chung321e9ee2010-08-09 13:37:56 -07001989 private void onSecondaryPointerUp(MotionEvent ev) {
1990 final int pointerIndex = (ev.getAction() & MotionEvent.ACTION_POINTER_INDEX_MASK) >>
1991 MotionEvent.ACTION_POINTER_INDEX_SHIFT;
1992 final int pointerId = ev.getPointerId(pointerIndex);
1993 if (pointerId == mActivePointerId) {
1994 // This was our active pointer going up. Choose a new
1995 // active pointer and adjust accordingly.
1996 // TODO: Make this decision more intelligent.
1997 final int newPointerIndex = pointerIndex == 0 ? 1 : 0;
1998 mLastMotionX = mDownMotionX = ev.getX(newPointerIndex);
1999 mLastMotionY = ev.getY(newPointerIndex);
Winson Chungc0844aa2011-02-02 15:25:58 -08002000 mLastMotionXRemainder = 0;
Winson Chung321e9ee2010-08-09 13:37:56 -07002001 mActivePointerId = ev.getPointerId(newPointerIndex);
2002 if (mVelocityTracker != null) {
2003 mVelocityTracker.clear();
2004 }
2005 }
Jeff Brown1d0867c2010-12-02 18:27:39 -08002006 }
2007
Winson Chung321e9ee2010-08-09 13:37:56 -07002008 @Override
2009 public void requestChildFocus(View child, View focused) {
2010 super.requestChildFocus(child, focused);
Adam Cohenae4f1552011-10-20 00:15:42 -07002011 int page = indexToPage(indexOfChild(child));
Winson Chung97d85d22011-04-13 11:27:36 -07002012 if (page >= 0 && page != getCurrentPage() && !isInTouchMode()) {
Winson Chung86f77532010-08-24 11:08:22 -07002013 snapToPage(page);
Winson Chung321e9ee2010-08-09 13:37:56 -07002014 }
2015 }
2016
Adam Cohend19d3ca2010-09-15 14:43:42 -07002017 int getPageNearestToCenterOfScreen() {
Adam Cohen22f823d2011-09-01 17:22:18 -07002018 int minDistanceFromScreenCenter = Integer.MAX_VALUE;
Winson Chung321e9ee2010-08-09 13:37:56 -07002019 int minDistanceFromScreenCenterIndex = -1;
Adam Cohen7d30a372013-07-01 17:03:59 -07002020 int screenCenter = getViewportOffsetX() + getScrollX() + (getViewportWidth() / 2);
Winson Chung321e9ee2010-08-09 13:37:56 -07002021 final int childCount = getChildCount();
2022 for (int i = 0; i < childCount; ++i) {
Adam Cohen22f823d2011-09-01 17:22:18 -07002023 View layout = (View) getPageAt(i);
Adam Cohen96d30a12013-07-16 18:13:21 -07002024 int childWidth = layout.getMeasuredWidth();
Winson Chung321e9ee2010-08-09 13:37:56 -07002025 int halfChildWidth = (childWidth / 2);
Adam Cohen7d30a372013-07-01 17:03:59 -07002026 int childCenter = getViewportOffsetX() + getChildOffset(i) + halfChildWidth;
Winson Chung321e9ee2010-08-09 13:37:56 -07002027 int distanceFromScreenCenter = Math.abs(childCenter - screenCenter);
2028 if (distanceFromScreenCenter < minDistanceFromScreenCenter) {
2029 minDistanceFromScreenCenter = distanceFromScreenCenter;
2030 minDistanceFromScreenCenterIndex = i;
2031 }
2032 }
Adam Cohend19d3ca2010-09-15 14:43:42 -07002033 return minDistanceFromScreenCenterIndex;
2034 }
2035
Adam Cohen1e4359c2014-08-18 13:12:16 -07002036 protected boolean isInOverScroll() {
2037 return (mOverScrollX > mMaxScrollX || mOverScrollX < 0);
2038 }
2039
2040 protected int getPageSnapDuration() {
2041 if (isInOverScroll()) {
2042 return OVER_SCROLL_PAGE_SNAP_ANIMATION_DURATION;
2043 }
2044 return PAGE_SNAP_ANIMATION_DURATION;
2045
2046 }
2047
Adam Cohend19d3ca2010-09-15 14:43:42 -07002048 protected void snapToDestination() {
Adam Cohen1e4359c2014-08-18 13:12:16 -07002049 snapToPage(getPageNearestToCenterOfScreen(), getPageSnapDuration());
Winson Chung321e9ee2010-08-09 13:37:56 -07002050 }
2051
Adam Cohene0f66b52010-11-23 15:06:07 -08002052 private static class ScrollInterpolator implements Interpolator {
2053 public ScrollInterpolator() {
2054 }
2055
2056 public float getInterpolation(float t) {
2057 t -= 1.0f;
2058 return t*t*t*t*t + 1;
2059 }
2060 }
2061
2062 // We want the duration of the page snap animation to be influenced by the distance that
2063 // the screen has to travel, however, we don't want this duration to be effected in a
2064 // purely linear fashion. Instead, we use this method to moderate the effect that the distance
2065 // of travel has on the overall snap duration.
2066 float distanceInfluenceForSnapDuration(float f) {
2067 f -= 0.5f; // center the values about 0.
2068 f *= 0.3f * Math.PI / 2.0f;
2069 return (float) Math.sin(f);
2070 }
2071
Michael Jurka0142d492010-08-25 17:46:15 -07002072 protected void snapToPageWithVelocity(int whichPage, int velocity) {
Adam Cohen6f127a62014-06-12 14:54:41 -07002073 whichPage = validateNewPage(whichPage);
Adam Cohen7d30a372013-07-01 17:03:59 -07002074 int halfScreenSize = getViewportWidth() / 2;
Adam Cohene0f66b52010-11-23 15:06:07 -08002075
Adam Cohenedb40762013-07-18 16:45:45 -07002076 final int newX = getScrollForPage(whichPage);
Adam Cohene0f66b52010-11-23 15:06:07 -08002077 int delta = newX - mUnboundedScrollX;
2078 int duration = 0;
2079
Adam Cohen1e4359c2014-08-18 13:12:16 -07002080 if (Math.abs(velocity) < mMinFlingVelocity || isInOverScroll()) {
Adam Cohene0f66b52010-11-23 15:06:07 -08002081 // If the velocity is low enough, then treat this more as an automatic page advance
2082 // as opposed to an apparent physical response to flinging
Adam Cohen1e4359c2014-08-18 13:12:16 -07002083 snapToPage(whichPage, getPageSnapDuration());
Adam Cohene0f66b52010-11-23 15:06:07 -08002084 return;
2085 }
2086
2087 // Here we compute a "distance" that will be used in the computation of the overall
2088 // snap duration. This is a function of the actual distance that needs to be traveled;
2089 // we keep this value close to half screen size in order to reduce the variance in snap
2090 // duration as a function of the distance the page needs to travel.
Michael Jurka20b7ca92011-06-07 20:09:16 -07002091 float distanceRatio = Math.min(1f, 1.0f * Math.abs(delta) / (2 * halfScreenSize));
Adam Cohene0f66b52010-11-23 15:06:07 -08002092 float distance = halfScreenSize + halfScreenSize *
2093 distanceInfluenceForSnapDuration(distanceRatio);
2094
2095 velocity = Math.abs(velocity);
Adam Cohen265b9a62011-12-07 14:37:18 -08002096 velocity = Math.max(mMinSnapVelocity, velocity);
Adam Cohene0f66b52010-11-23 15:06:07 -08002097
2098 // we want the page's snap velocity to approximately match the velocity at which the
2099 // user flings, so we scale the duration by a value near to the derivative of the scroll
Michael Jurka20b7ca92011-06-07 20:09:16 -07002100 // interpolator at zero, ie. 5. We use 4 to make it a little slower.
2101 duration = 4 * Math.round(1000 * Math.abs(distance / velocity));
Adam Cohene0f66b52010-11-23 15:06:07 -08002102
2103 snapToPage(whichPage, delta, duration);
Michael Jurka0142d492010-08-25 17:46:15 -07002104 }
2105
2106 protected void snapToPage(int whichPage) {
Adam Cohen1e4359c2014-08-18 13:12:16 -07002107 snapToPage(whichPage, getPageSnapDuration());
Winson Chung321e9ee2010-08-09 13:37:56 -07002108 }
2109
Adam Cohen7d30a372013-07-01 17:03:59 -07002110 protected void snapToPageImmediately(int whichPage) {
Adam Cohen1e4359c2014-08-18 13:12:16 -07002111 snapToPage(whichPage, getPageSnapDuration(), true, null);
Adam Cohen7d30a372013-07-01 17:03:59 -07002112 }
2113
Michael Jurka0142d492010-08-25 17:46:15 -07002114 protected void snapToPage(int whichPage, int duration) {
Adam Cohenf9618852013-11-08 06:45:03 -08002115 snapToPage(whichPage, duration, false, null);
Adam Cohen7d30a372013-07-01 17:03:59 -07002116 }
2117
Adam Cohenf9618852013-11-08 06:45:03 -08002118 protected void snapToPage(int whichPage, int duration, TimeInterpolator interpolator) {
2119 snapToPage(whichPage, duration, false, interpolator);
2120 }
2121
2122 protected void snapToPage(int whichPage, int duration, boolean immediate,
2123 TimeInterpolator interpolator) {
Adam Cohen6f127a62014-06-12 14:54:41 -07002124 whichPage = validateNewPage(whichPage);
Winson Chung321e9ee2010-08-09 13:37:56 -07002125
Adam Cohenedb40762013-07-18 16:45:45 -07002126 int newX = getScrollForPage(whichPage);
Adam Cohen68d73932010-11-15 10:50:58 -08002127 final int sX = mUnboundedScrollX;
Winson Chung321e9ee2010-08-09 13:37:56 -07002128 final int delta = newX - sX;
Adam Cohenf9618852013-11-08 06:45:03 -08002129 snapToPage(whichPage, delta, duration, immediate, interpolator);
Michael Jurka0142d492010-08-25 17:46:15 -07002130 }
2131
2132 protected void snapToPage(int whichPage, int delta, int duration) {
Adam Cohenf9618852013-11-08 06:45:03 -08002133 snapToPage(whichPage, delta, duration, false, null);
Adam Cohen7d30a372013-07-01 17:03:59 -07002134 }
Michael Jurka0142d492010-08-25 17:46:15 -07002135
Adam Cohenf9618852013-11-08 06:45:03 -08002136 protected void snapToPage(int whichPage, int delta, int duration, boolean immediate,
2137 TimeInterpolator interpolator) {
Adam Cohen6f127a62014-06-12 14:54:41 -07002138 whichPage = validateNewPage(whichPage);
2139
Adam Cohen7d30a372013-07-01 17:03:59 -07002140 mNextPage = whichPage;
Michael Jurka0142d492010-08-25 17:46:15 -07002141 View focusedChild = getFocusedChild();
2142 if (focusedChild != null && whichPage != mCurrentPage &&
Adam Cohen22f823d2011-09-01 17:22:18 -07002143 focusedChild == getPageAt(mCurrentPage)) {
Michael Jurka0142d492010-08-25 17:46:15 -07002144 focusedChild.clearFocus();
2145 }
2146
2147 pageBeginMoving();
Winson Chung321e9ee2010-08-09 13:37:56 -07002148 awakenScrollBars(duration);
Adam Cohen7d30a372013-07-01 17:03:59 -07002149 if (immediate) {
2150 duration = 0;
2151 } else if (duration == 0) {
Winson Chung321e9ee2010-08-09 13:37:56 -07002152 duration = Math.abs(delta);
2153 }
2154
Adam Cohenf358a4b2013-07-23 16:47:31 -07002155 if (!mScroller.isFinished()) {
Adam Cohenf9618852013-11-08 06:45:03 -08002156 abortScrollerAnimation(false);
Adam Cohenf358a4b2013-07-23 16:47:31 -07002157 }
Adam Cohenf9618852013-11-08 06:45:03 -08002158
2159 if (interpolator != null) {
2160 mScroller.setInterpolator(interpolator);
2161 } else {
2162 mScroller.setInterpolator(mDefaultInterpolator);
2163 }
2164
Adam Cohen68d73932010-11-15 10:50:58 -08002165 mScroller.startScroll(mUnboundedScrollX, 0, delta, 0, duration);
Winson Chung80baf5a2010-08-09 16:03:15 -07002166
Adam Cohen674531f2013-12-13 15:07:14 -08002167 updatePageIndicator();
Adam Cohen7d30a372013-07-01 17:03:59 -07002168
2169 // Trigger a compute() to finish switching pages if necessary
2170 if (immediate) {
2171 computeScroll();
2172 }
2173
2174 mForceScreenScrolled = true;
Winson Chung321e9ee2010-08-09 13:37:56 -07002175 invalidate();
2176 }
2177
Winson Chung321e9ee2010-08-09 13:37:56 -07002178 public void scrollLeft() {
Adam Cohen2bf63d52013-09-29 17:46:49 -07002179 if (getNextPage() > 0) snapToPage(getNextPage() - 1);
Winson Chung321e9ee2010-08-09 13:37:56 -07002180 }
2181
2182 public void scrollRight() {
Adam Cohen2bf63d52013-09-29 17:46:49 -07002183 if (getNextPage() < getChildCount() -1) snapToPage(getNextPage() + 1);
Winson Chung321e9ee2010-08-09 13:37:56 -07002184 }
2185
Winson Chung86f77532010-08-24 11:08:22 -07002186 public int getPageForView(View v) {
Winson Chung321e9ee2010-08-09 13:37:56 -07002187 int result = -1;
2188 if (v != null) {
2189 ViewParent vp = v.getParent();
2190 int count = getChildCount();
2191 for (int i = 0; i < count; i++) {
Adam Cohen22f823d2011-09-01 17:22:18 -07002192 if (vp == getPageAt(i)) {
Winson Chung321e9ee2010-08-09 13:37:56 -07002193 return i;
2194 }
2195 }
2196 }
2197 return result;
2198 }
2199
Adam Cohendbdff6b2013-09-18 19:09:15 -07002200 @Override
2201 public boolean performLongClick() {
2202 mCancelTap = true;
2203 return super.performLongClick();
2204 }
2205
Winson Chung321e9ee2010-08-09 13:37:56 -07002206 public static class SavedState extends BaseSavedState {
Winson Chung86f77532010-08-24 11:08:22 -07002207 int currentPage = -1;
Winson Chung321e9ee2010-08-09 13:37:56 -07002208
2209 SavedState(Parcelable superState) {
2210 super(superState);
2211 }
2212
Adam Cohen091440a2015-03-18 14:16:05 -07002213 @Thunk SavedState(Parcel in) {
Winson Chung321e9ee2010-08-09 13:37:56 -07002214 super(in);
Winson Chung86f77532010-08-24 11:08:22 -07002215 currentPage = in.readInt();
Winson Chung321e9ee2010-08-09 13:37:56 -07002216 }
2217
2218 @Override
2219 public void writeToParcel(Parcel out, int flags) {
2220 super.writeToParcel(out, flags);
Winson Chung86f77532010-08-24 11:08:22 -07002221 out.writeInt(currentPage);
Winson Chung321e9ee2010-08-09 13:37:56 -07002222 }
2223
2224 public static final Parcelable.Creator<SavedState> CREATOR =
2225 new Parcelable.Creator<SavedState>() {
2226 public SavedState createFromParcel(Parcel in) {
2227 return new SavedState(in);
2228 }
2229
2230 public SavedState[] newArray(int size) {
2231 return new SavedState[size];
2232 }
2233 };
2234 }
2235
Adam Cohen7d30a372013-07-01 17:03:59 -07002236 // Animate the drag view back to the original position
2237 void animateDragViewToOriginalPosition() {
2238 if (mDragView != null) {
2239 AnimatorSet anim = new AnimatorSet();
2240 anim.setDuration(REORDERING_DROP_REPOSITION_DURATION);
2241 anim.playTogether(
2242 ObjectAnimator.ofFloat(mDragView, "translationX", 0f),
Adam Cohenf358a4b2013-07-23 16:47:31 -07002243 ObjectAnimator.ofFloat(mDragView, "translationY", 0f),
2244 ObjectAnimator.ofFloat(mDragView, "scaleX", 1f),
2245 ObjectAnimator.ofFloat(mDragView, "scaleY", 1f));
Adam Cohen7d30a372013-07-01 17:03:59 -07002246 anim.addListener(new AnimatorListenerAdapter() {
2247 @Override
2248 public void onAnimationEnd(Animator animation) {
2249 onPostReorderingAnimationCompleted();
2250 }
2251 });
2252 anim.start();
2253 }
Winson Chung3ac74c52011-06-30 17:39:37 -07002254 }
2255
Sunny Goyal1d08f702015-05-04 15:50:25 -07002256 public void onStartReordering() {
Adam Cohen7d30a372013-07-01 17:03:59 -07002257 // Set the touch state to reordering (allows snapping to pages, dragging a child, etc.)
2258 mTouchState = TOUCH_STATE_REORDERING;
2259 mIsReordering = true;
2260
Adam Cohen7d30a372013-07-01 17:03:59 -07002261 // We must invalidate to trigger a redraw to update the layers such that the drag view
2262 // is always drawn on top
2263 invalidate();
2264 }
2265
Adam Cohen091440a2015-03-18 14:16:05 -07002266 @Thunk void onPostReorderingAnimationCompleted() {
Adam Cohen7d30a372013-07-01 17:03:59 -07002267 // Trigger the callback when reordering has settled
2268 --mPostReorderingPreZoomInRemainingAnimationCount;
2269 if (mPostReorderingPreZoomInRunnable != null &&
2270 mPostReorderingPreZoomInRemainingAnimationCount == 0) {
2271 mPostReorderingPreZoomInRunnable.run();
2272 mPostReorderingPreZoomInRunnable = null;
2273 }
2274 }
2275
Sunny Goyal1d08f702015-05-04 15:50:25 -07002276 public void onEndReordering() {
Adam Cohen7d30a372013-07-01 17:03:59 -07002277 mIsReordering = false;
Adam Cohen7d30a372013-07-01 17:03:59 -07002278 }
2279
Adam Cohenf358a4b2013-07-23 16:47:31 -07002280 public boolean startReordering(View v) {
Adam Cohen93c97562013-09-26 13:48:01 -07002281 int dragViewIndex = indexOfChild(v);
2282
Adam Cohen327acfe2014-06-06 11:52:52 -07002283 if (mTouchState != TOUCH_STATE_REST || dragViewIndex == -1) return false;
Adam Cohen93c97562013-09-26 13:48:01 -07002284
Adam Cohen7d30a372013-07-01 17:03:59 -07002285 mTempVisiblePagesRange[0] = 0;
2286 mTempVisiblePagesRange[1] = getPageCount() - 1;
Adam Cohen6f127a62014-06-12 14:54:41 -07002287 getFreeScrollPageRange(mTempVisiblePagesRange);
Adam Cohen7d30a372013-07-01 17:03:59 -07002288 mReorderingStarted = true;
2289
2290 // Check if we are within the reordering range
2291 if (mTempVisiblePagesRange[0] <= dragViewIndex &&
Adam Cohenf358a4b2013-07-23 16:47:31 -07002292 dragViewIndex <= mTempVisiblePagesRange[1]) {
2293 // Find the drag view under the pointer
2294 mDragView = getChildAt(dragViewIndex);
2295 mDragView.animate().scaleX(1.15f).scaleY(1.15f).setDuration(100).start();
2296 mDragViewBaselineLeft = mDragView.getLeft();
Adam Cohenf9618852013-11-08 06:45:03 -08002297 snapToPage(getPageNearestToCenterOfScreen());
2298 disableFreeScroll();
Adam Cohenf358a4b2013-07-23 16:47:31 -07002299 onStartReordering();
Adam Cohen7d30a372013-07-01 17:03:59 -07002300 return true;
2301 }
2302 return false;
2303 }
2304
2305 boolean isReordering(boolean testTouchState) {
2306 boolean state = mIsReordering;
2307 if (testTouchState) {
2308 state &= (mTouchState == TOUCH_STATE_REORDERING);
2309 }
2310 return state;
2311 }
2312 void endReordering() {
2313 // For simplicity, we call endReordering sometimes even if reordering was never started.
2314 // In that case, we don't want to do anything.
2315 if (!mReorderingStarted) return;
2316 mReorderingStarted = false;
2317
2318 // If we haven't flung-to-delete the current child, then we just animate the drag view
2319 // back into position
2320 final Runnable onCompleteRunnable = new Runnable() {
2321 @Override
2322 public void run() {
2323 onEndReordering();
2324 }
2325 };
Sunny Goyal8e2133b2015-05-06 13:39:07 -07002326
2327 mPostReorderingPreZoomInRunnable = new Runnable() {
2328 public void run() {
2329 onCompleteRunnable.run();
2330 enableFreeScroll();
Adam Cohen7d30a372013-07-01 17:03:59 -07002331 };
Sunny Goyal8e2133b2015-05-06 13:39:07 -07002332 };
Adam Cohen7d30a372013-07-01 17:03:59 -07002333
Sunny Goyal8e2133b2015-05-06 13:39:07 -07002334 mPostReorderingPreZoomInRemainingAnimationCount =
2335 NUM_ANIMATIONS_RUNNING_BEFORE_ZOOM_OUT;
2336 // Snap to the current page
2337 snapToPage(indexOfChild(mDragView), 0);
2338 // Animate the drag view back to the front position
2339 animateDragViewToOriginalPosition();
Adam Cohen7d30a372013-07-01 17:03:59 -07002340 }
2341
Adam Cohen7d30a372013-07-01 17:03:59 -07002342 private static final int ANIM_TAG_KEY = 100;
2343
Winson Chung6a0f57d2011-06-29 20:10:49 -07002344 /* Accessibility */
2345 @Override
2346 public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo info) {
2347 super.onInitializeAccessibilityNodeInfo(info);
Svetoslav Ganov08055f62012-05-15 11:06:36 -07002348 info.setScrollable(getPageCount() > 1);
2349 if (getCurrentPage() < getPageCount() - 1) {
2350 info.addAction(AccessibilityNodeInfo.ACTION_SCROLL_FORWARD);
2351 }
2352 if (getCurrentPage() > 0) {
2353 info.addAction(AccessibilityNodeInfo.ACTION_SCROLL_BACKWARD);
2354 }
Winson Chung6a0f57d2011-06-29 20:10:49 -07002355 }
2356
2357 @Override
Alan Viverette254139a2013-10-08 13:13:46 -07002358 public void sendAccessibilityEvent(int eventType) {
2359 // Don't let the view send real scroll events.
2360 if (eventType != AccessibilityEvent.TYPE_VIEW_SCROLLED) {
2361 super.sendAccessibilityEvent(eventType);
2362 }
2363 }
2364
2365 @Override
Winson Chung6a0f57d2011-06-29 20:10:49 -07002366 public void onInitializeAccessibilityEvent(AccessibilityEvent event) {
2367 super.onInitializeAccessibilityEvent(event);
Vadim Tryshev7066c122015-05-21 14:06:35 -07002368 event.setScrollable(getPageCount() > 1);
Winson Chung6a0f57d2011-06-29 20:10:49 -07002369 }
2370
Svetoslav Ganov08055f62012-05-15 11:06:36 -07002371 @Override
2372 public boolean performAccessibilityAction(int action, Bundle arguments) {
2373 if (super.performAccessibilityAction(action, arguments)) {
2374 return true;
2375 }
2376 switch (action) {
2377 case AccessibilityNodeInfo.ACTION_SCROLL_FORWARD: {
2378 if (getCurrentPage() < getPageCount() - 1) {
2379 scrollRight();
2380 return true;
2381 }
2382 } break;
2383 case AccessibilityNodeInfo.ACTION_SCROLL_BACKWARD: {
2384 if (getCurrentPage() > 0) {
2385 scrollLeft();
2386 return true;
2387 }
2388 } break;
2389 }
2390 return false;
2391 }
2392
Adam Cohen0ffac432013-07-10 11:19:26 -07002393 protected String getCurrentPageDescription() {
2394 return String.format(getContext().getString(R.string.default_scroll_format),
2395 getNextPage() + 1, getChildCount());
2396 }
2397
Winson Chungd11265e2011-08-30 13:37:23 -07002398 @Override
2399 public boolean onHoverEvent(android.view.MotionEvent event) {
2400 return true;
2401 }
Adam Cohen5084cba2013-09-03 12:01:16 -07002402}