blob: 9a0b79c2f73a4facde7c8b6746f8f517287c31ae [file] [log] [blame]
Winson Chung321e9ee2010-08-09 13:37:56 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
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
17package com.android.launcher2;
18
Winson Chung04998342011-01-05 13:54:43 -080019import java.util.ArrayList;
Patrick Dubroy9f7aec82010-09-06 11:03:37 -070020
Winson Chung228a0fa2011-01-26 22:14:13 -080021import android.animation.Animator;
22import android.animation.AnimatorInflater;
23import android.animation.AnimatorListenerAdapter;
24import android.animation.ObjectAnimator;
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;
28import android.graphics.Rect;
Winson Chung321e9ee2010-08-09 13:37:56 -070029import android.os.Parcel;
30import android.os.Parcelable;
31import android.util.AttributeSet;
Winson Chung5f2aa4e2010-08-20 14:49:25 -070032import android.view.ActionMode;
Winson Chung185d7162011-02-28 13:47:29 -080033import android.view.InputDevice;
34import android.view.KeyEvent;
Winson Chung321e9ee2010-08-09 13:37:56 -070035import android.view.MotionEvent;
36import android.view.VelocityTracker;
37import android.view.View;
38import android.view.ViewConfiguration;
39import android.view.ViewGroup;
40import android.view.ViewParent;
Adam Cohene0f66b52010-11-23 15:06:07 -080041import android.view.animation.Interpolator;
Winson Chung5f2aa4e2010-08-20 14:49:25 -070042import android.widget.Checkable;
Winson Chung321e9ee2010-08-09 13:37:56 -070043import android.widget.Scroller;
44
Winson Chung04998342011-01-05 13:54:43 -080045import com.android.launcher.R;
Winson Chung80baf5a2010-08-09 16:03:15 -070046
Winson Chung321e9ee2010-08-09 13:37:56 -070047/**
48 * An abstraction of the original Workspace which supports browsing through a
Michael Jurka0142d492010-08-25 17:46:15 -070049 * sequential list of "pages"
Winson Chung321e9ee2010-08-09 13:37:56 -070050 */
51public abstract class PagedView extends ViewGroup {
52 private static final String TAG = "PagedView";
Michael Jurka0142d492010-08-25 17:46:15 -070053 protected static final int INVALID_PAGE = -1;
Winson Chung321e9ee2010-08-09 13:37:56 -070054
Winson Chung86f77532010-08-24 11:08:22 -070055 // the min drag distance for a fling to register, to prevent random page shifts
Winson Chung9cfd25f2010-10-24 16:09:28 -070056 private static final int MIN_LENGTH_FOR_FLING = 25;
57 // The min drag distance to trigger a page shift (regardless of velocity)
58 private static final int MIN_LENGTH_FOR_MOVE = 200;
Winson Chung321e9ee2010-08-09 13:37:56 -070059
Adam Cohene0f66b52010-11-23 15:06:07 -080060 private static final int PAGE_SNAP_ANIMATION_DURATION = 550;
Michael Jurka0142d492010-08-25 17:46:15 -070061 protected static final float NANOTIME_DIV = 1000000000.0f;
Winson Chung321e9ee2010-08-09 13:37:56 -070062
Adam Cohene0f66b52010-11-23 15:06:07 -080063 private static final float OVERSCROLL_DAMP_FACTOR = 0.08f;
64 private static final int MINIMUM_SNAP_VELOCITY = 2200;
65 private static final int MIN_FLING_VELOCITY = 250;
Adam Cohenb64cb5a2011-02-15 13:53:42 -080066 private static final float RETURN_TO_ORIGINAL_PAGE_THRESHOLD = 0.33f;
Adam Cohen68d73932010-11-15 10:50:58 -080067
Michael Jurka0142d492010-08-25 17:46:15 -070068 // the velocity at which a fling gesture will cause us to snap to the next page
69 protected int mSnapVelocity = 500;
70
71 protected float mSmoothingTime;
72 protected float mTouchX;
73
74 protected boolean mFirstLayout = true;
75
76 protected int mCurrentPage;
77 protected int mNextPage = INVALID_PAGE;
Winson Chunga12a2502010-12-20 14:41:35 -080078 protected int mRestorePage = -1;
Adam Cohen68d73932010-11-15 10:50:58 -080079 protected int mMaxScrollX;
Michael Jurka0142d492010-08-25 17:46:15 -070080 protected Scroller mScroller;
Winson Chung321e9ee2010-08-09 13:37:56 -070081 private VelocityTracker mVelocityTracker;
82
83 private float mDownMotionX;
Michael Jurka7426c422010-11-11 15:23:47 -080084 protected float mLastMotionX;
Winson Chungc0844aa2011-02-02 15:25:58 -080085 protected float mLastMotionXRemainder;
Michael Jurka7426c422010-11-11 15:23:47 -080086 protected float mLastMotionY;
Adam Cohenaefd4e12011-02-14 16:39:38 -080087 protected float mTotalMotionX;
Adam Cohenf34bab52010-09-30 14:11:56 -070088 private int mLastScreenCenter = -1;
Winson Chung321e9ee2010-08-09 13:37:56 -070089
Michael Jurka0142d492010-08-25 17:46:15 -070090 protected final static int TOUCH_STATE_REST = 0;
91 protected final static int TOUCH_STATE_SCROLLING = 1;
92 protected final static int TOUCH_STATE_PREV_PAGE = 2;
93 protected final static int TOUCH_STATE_NEXT_PAGE = 3;
Adam Cohene45440e2010-10-14 18:33:38 -070094 protected final static float ALPHA_QUANTIZE_LEVEL = 0.0001f;
Winson Chung321e9ee2010-08-09 13:37:56 -070095
Michael Jurka0142d492010-08-25 17:46:15 -070096 protected int mTouchState = TOUCH_STATE_REST;
Winson Chung321e9ee2010-08-09 13:37:56 -070097
Michael Jurka0142d492010-08-25 17:46:15 -070098 protected OnLongClickListener mLongClickListener;
Winson Chung321e9ee2010-08-09 13:37:56 -070099
Michael Jurka7426c422010-11-11 15:23:47 -0800100 protected boolean mAllowLongPress = true;
Winson Chung321e9ee2010-08-09 13:37:56 -0700101
Michael Jurka7426c422010-11-11 15:23:47 -0800102 protected int mTouchSlop;
Winson Chung321e9ee2010-08-09 13:37:56 -0700103 private int mPagingTouchSlop;
104 private int mMaximumVelocity;
Winson Chung1908d072011-02-24 18:09:44 -0800105 private int mMinimumWidth;
Adam Cohen9c4949e2010-10-05 12:27:22 -0700106 protected int mPageSpacing;
107 protected int mPageLayoutPaddingTop;
108 protected int mPageLayoutPaddingBottom;
109 protected int mPageLayoutPaddingLeft;
110 protected int mPageLayoutPaddingRight;
Winson Chungdf4b83d2010-10-20 17:49:27 -0700111 protected int mPageLayoutWidthGap;
112 protected int mPageLayoutHeightGap;
Adam Cohen9c4949e2010-10-05 12:27:22 -0700113 protected int mCellCountX;
114 protected int mCellCountY;
Winson Chung7da10252010-10-28 16:07:04 -0700115 protected boolean mCenterPagesVertically;
Adam Cohen68d73932010-11-15 10:50:58 -0800116 protected boolean mAllowOverScroll = true;
117 protected int mUnboundedScrollX;
Winson Chung321e9ee2010-08-09 13:37:56 -0700118
Michael Jurka8c920dd2011-01-20 14:16:56 -0800119 // parameter that adjusts the layout to be optimized for pages with that scale factor
Michael Jurkad3ef3062010-11-23 16:23:58 -0800120 protected float mLayoutScale = 1.0f;
121
Michael Jurka5f1c5092010-09-03 14:15:02 -0700122 protected static final int INVALID_POINTER = -1;
Winson Chung321e9ee2010-08-09 13:37:56 -0700123
Michael Jurka5f1c5092010-09-03 14:15:02 -0700124 protected int mActivePointerId = INVALID_POINTER;
Winson Chung321e9ee2010-08-09 13:37:56 -0700125
Winson Chung86f77532010-08-24 11:08:22 -0700126 private PageSwitchListener mPageSwitchListener;
Winson Chung321e9ee2010-08-09 13:37:56 -0700127
Winson Chung86f77532010-08-24 11:08:22 -0700128 private ArrayList<Boolean> mDirtyPageContent;
129 private boolean mDirtyPageAlpha;
Winson Chung321e9ee2010-08-09 13:37:56 -0700130
Winson Chung5f2aa4e2010-08-20 14:49:25 -0700131 // choice modes
132 protected static final int CHOICE_MODE_NONE = 0;
133 protected static final int CHOICE_MODE_SINGLE = 1;
134 // Multiple selection mode is not supported by all Launcher actions atm
135 protected static final int CHOICE_MODE_MULTIPLE = 2;
Patrick Dubroy9f7aec82010-09-06 11:03:37 -0700136
Michael Jurkae17e19c2010-09-28 11:01:39 -0700137 protected int mChoiceMode;
Winson Chung5f2aa4e2010-08-20 14:49:25 -0700138 private ActionMode mActionMode;
139
Winson Chung04998342011-01-05 13:54:43 -0800140 // NOTE: This is a shared icon cache across all the PagedViews. Currently it is only used in
141 // AllApps and Customize, and allows them to share holographic icons for the application view
142 // (which is in both).
143 protected static PagedViewIconCache mPageViewIconCache = new PagedViewIconCache();
Winson Chung241c3b42010-08-25 16:53:03 -0700144
Michael Jurka0142d492010-08-25 17:46:15 -0700145 // If true, syncPages and syncPageItems will be called to refresh pages
146 protected boolean mContentIsRefreshable = true;
147
148 // If true, modify alpha of neighboring pages as user scrolls left/right
149 protected boolean mFadeInAdjacentScreens = true;
150
151 // It true, use a different slop parameter (pagingTouchSlop = 2 * touchSlop) for deciding
152 // to switch to a new page
153 protected boolean mUsePagingTouchSlop = true;
154
155 // If true, the subclass should directly update mScrollX itself in its computeScroll method
156 // (SmoothPagedView does this)
157 protected boolean mDeferScrollUpdate = false;
158
Patrick Dubroy1262e362010-10-06 15:49:50 -0700159 protected boolean mIsPageMoving = false;
160
Winson Chung86f77532010-08-24 11:08:22 -0700161 public interface PageSwitchListener {
162 void onPageSwitch(View newPage, int newPageIndex);
Winson Chung321e9ee2010-08-09 13:37:56 -0700163 }
164
Winson Chung321e9ee2010-08-09 13:37:56 -0700165 public PagedView(Context context) {
166 this(context, null);
167 }
168
169 public PagedView(Context context, AttributeSet attrs) {
170 this(context, attrs, 0);
171 }
172
173 public PagedView(Context context, AttributeSet attrs, int defStyle) {
174 super(context, attrs, defStyle);
Winson Chung5f2aa4e2010-08-20 14:49:25 -0700175 mChoiceMode = CHOICE_MODE_NONE;
Winson Chung321e9ee2010-08-09 13:37:56 -0700176
Adam Cohen9c4949e2010-10-05 12:27:22 -0700177 TypedArray a = context.obtainStyledAttributes(attrs,
178 R.styleable.PagedView, defStyle, 0);
179 mPageSpacing = a.getDimensionPixelSize(R.styleable.PagedView_pageSpacing, 0);
180 mPageLayoutPaddingTop = a.getDimensionPixelSize(
Winson Chung1908d072011-02-24 18:09:44 -0800181 R.styleable.PagedView_pageLayoutPaddingTop, 0);
Adam Cohen9c4949e2010-10-05 12:27:22 -0700182 mPageLayoutPaddingBottom = a.getDimensionPixelSize(
Winson Chung1908d072011-02-24 18:09:44 -0800183 R.styleable.PagedView_pageLayoutPaddingBottom, 0);
Adam Cohen9c4949e2010-10-05 12:27:22 -0700184 mPageLayoutPaddingLeft = a.getDimensionPixelSize(
Winson Chung1908d072011-02-24 18:09:44 -0800185 R.styleable.PagedView_pageLayoutPaddingLeft, 0);
Adam Cohen9c4949e2010-10-05 12:27:22 -0700186 mPageLayoutPaddingRight = a.getDimensionPixelSize(
Winson Chung1908d072011-02-24 18:09:44 -0800187 R.styleable.PagedView_pageLayoutPaddingRight, 0);
Winson Chungdf4b83d2010-10-20 17:49:27 -0700188 mPageLayoutWidthGap = a.getDimensionPixelSize(
189 R.styleable.PagedView_pageLayoutWidthGap, -1);
190 mPageLayoutHeightGap = a.getDimensionPixelSize(
191 R.styleable.PagedView_pageLayoutHeightGap, -1);
Adam Cohen9c4949e2010-10-05 12:27:22 -0700192 a.recycle();
193
Winson Chung321e9ee2010-08-09 13:37:56 -0700194 setHapticFeedbackEnabled(false);
Michael Jurka0142d492010-08-25 17:46:15 -0700195 init();
Winson Chung321e9ee2010-08-09 13:37:56 -0700196 }
197
198 /**
199 * Initializes various states for this workspace.
200 */
Michael Jurka0142d492010-08-25 17:46:15 -0700201 protected void init() {
Winson Chung86f77532010-08-24 11:08:22 -0700202 mDirtyPageContent = new ArrayList<Boolean>();
203 mDirtyPageContent.ensureCapacity(32);
Adam Cohene0f66b52010-11-23 15:06:07 -0800204 mScroller = new Scroller(getContext(), new ScrollInterpolator());
Winson Chung86f77532010-08-24 11:08:22 -0700205 mCurrentPage = 0;
Winson Chung7da10252010-10-28 16:07:04 -0700206 mCenterPagesVertically = true;
Winson Chung321e9ee2010-08-09 13:37:56 -0700207
208 final ViewConfiguration configuration = ViewConfiguration.get(getContext());
209 mTouchSlop = configuration.getScaledTouchSlop();
210 mPagingTouchSlop = configuration.getScaledPagingTouchSlop();
211 mMaximumVelocity = configuration.getScaledMaximumFlingVelocity();
212 }
213
Winson Chung86f77532010-08-24 11:08:22 -0700214 public void setPageSwitchListener(PageSwitchListener pageSwitchListener) {
215 mPageSwitchListener = pageSwitchListener;
216 if (mPageSwitchListener != null) {
217 mPageSwitchListener.onPageSwitch(getPageAt(mCurrentPage), mCurrentPage);
Winson Chung321e9ee2010-08-09 13:37:56 -0700218 }
219 }
220
221 /**
Winson Chung86f77532010-08-24 11:08:22 -0700222 * Returns the index of the currently displayed page.
Winson Chung321e9ee2010-08-09 13:37:56 -0700223 *
Winson Chung86f77532010-08-24 11:08:22 -0700224 * @return The index of the currently displayed page.
Winson Chung321e9ee2010-08-09 13:37:56 -0700225 */
Winson Chung86f77532010-08-24 11:08:22 -0700226 int getCurrentPage() {
227 return mCurrentPage;
Winson Chung321e9ee2010-08-09 13:37:56 -0700228 }
229
Winson Chung86f77532010-08-24 11:08:22 -0700230 int getPageCount() {
Winson Chung321e9ee2010-08-09 13:37:56 -0700231 return getChildCount();
232 }
233
Winson Chung86f77532010-08-24 11:08:22 -0700234 View getPageAt(int index) {
Winson Chung321e9ee2010-08-09 13:37:56 -0700235 return getChildAt(index);
236 }
237
238 int getScrollWidth() {
239 return getWidth();
240 }
241
Adam Cohenbe909342011-01-28 17:02:58 -0800242 public int getTouchState() {
243 return mTouchState;
244 }
245
Winson Chung321e9ee2010-08-09 13:37:56 -0700246 /**
Winson Chungbbc60d82010-11-11 16:34:41 -0800247 * Updates the scroll of the current page immediately to its final scroll position. We use this
248 * in CustomizePagedView to allow tabs to share the same PagedView while resetting the scroll of
249 * the previous tab page.
250 */
251 protected void updateCurrentPageScroll() {
252 int newX = getChildOffset(mCurrentPage) - getRelativeChildOffset(mCurrentPage);
253 scrollTo(newX, 0);
254 mScroller.setFinalX(newX);
255 }
256
257 /**
Winson Chung86f77532010-08-24 11:08:22 -0700258 * Sets the current page.
Winson Chung321e9ee2010-08-09 13:37:56 -0700259 */
Winson Chung86f77532010-08-24 11:08:22 -0700260 void setCurrentPage(int currentPage) {
Patrick Dubroy72e0d342010-11-09 15:23:28 -0800261 if (!mScroller.isFinished()) {
262 mScroller.abortAnimation();
263 }
Michael Jurkad3ef3062010-11-23 16:23:58 -0800264 // don't introduce any checks like mCurrentPage == currentPage here-- if we change the
265 // the default
266 if (getChildCount() == 0) {
Patrick Dubroy72e0d342010-11-09 15:23:28 -0800267 return;
268 }
Winson Chung321e9ee2010-08-09 13:37:56 -0700269
Winson Chung86f77532010-08-24 11:08:22 -0700270 mCurrentPage = Math.max(0, Math.min(currentPage, getPageCount() - 1));
Winson Chungbbc60d82010-11-11 16:34:41 -0800271 updateCurrentPageScroll();
Winson Chung86f77532010-08-24 11:08:22 -0700272 notifyPageSwitchListener();
Winson Chunga12a2502010-12-20 14:41:35 -0800273 invalidate();
Winson Chung321e9ee2010-08-09 13:37:56 -0700274 }
275
Michael Jurka0142d492010-08-25 17:46:15 -0700276 protected void notifyPageSwitchListener() {
Winson Chung86f77532010-08-24 11:08:22 -0700277 if (mPageSwitchListener != null) {
278 mPageSwitchListener.onPageSwitch(getPageAt(mCurrentPage), mCurrentPage);
Winson Chung321e9ee2010-08-09 13:37:56 -0700279 }
280 }
281
Michael Jurkace7e05f2011-02-01 22:02:35 -0800282 protected void pageBeginMoving() {
Patrick Dubroy1262e362010-10-06 15:49:50 -0700283 mIsPageMoving = true;
284 onPageBeginMoving();
285 }
286
Michael Jurkace7e05f2011-02-01 22:02:35 -0800287 protected void pageEndMoving() {
Patrick Dubroy1262e362010-10-06 15:49:50 -0700288 onPageEndMoving();
289 mIsPageMoving = false;
Michael Jurka0142d492010-08-25 17:46:15 -0700290 }
291
Adam Cohen26976d92011-03-22 15:33:33 -0700292 protected boolean isPageMoving() {
293 return mIsPageMoving;
294 }
295
Michael Jurka0142d492010-08-25 17:46:15 -0700296 // a method that subclasses can override to add behavior
Patrick Dubroy1262e362010-10-06 15:49:50 -0700297 protected void onPageBeginMoving() {
298 }
299
300 // a method that subclasses can override to add behavior
301 protected void onPageEndMoving() {
Michael Jurka0142d492010-08-25 17:46:15 -0700302 }
303
Winson Chung321e9ee2010-08-09 13:37:56 -0700304 /**
Winson Chung86f77532010-08-24 11:08:22 -0700305 * Registers the specified listener on each page contained in this workspace.
Winson Chung321e9ee2010-08-09 13:37:56 -0700306 *
307 * @param l The listener used to respond to long clicks.
308 */
309 @Override
310 public void setOnLongClickListener(OnLongClickListener l) {
311 mLongClickListener = l;
Winson Chung86f77532010-08-24 11:08:22 -0700312 final int count = getPageCount();
Winson Chung321e9ee2010-08-09 13:37:56 -0700313 for (int i = 0; i < count; i++) {
Winson Chung86f77532010-08-24 11:08:22 -0700314 getPageAt(i).setOnLongClickListener(l);
Winson Chung321e9ee2010-08-09 13:37:56 -0700315 }
316 }
317
318 @Override
Adam Cohen68d73932010-11-15 10:50:58 -0800319 public void scrollBy(int x, int y) {
320 scrollTo(mUnboundedScrollX + x, mScrollY + y);
321 }
322
323 @Override
Michael Jurka0142d492010-08-25 17:46:15 -0700324 public void scrollTo(int x, int y) {
Adam Cohen68d73932010-11-15 10:50:58 -0800325 mUnboundedScrollX = x;
326
327 if (x < 0) {
328 super.scrollTo(0, y);
329 if (mAllowOverScroll) {
330 overScroll(x);
331 }
332 } else if (x > mMaxScrollX) {
333 super.scrollTo(mMaxScrollX, y);
334 if (mAllowOverScroll) {
335 overScroll(x - mMaxScrollX);
336 }
337 } else {
338 super.scrollTo(x, y);
339 }
340
Michael Jurka0142d492010-08-25 17:46:15 -0700341 mTouchX = x;
342 mSmoothingTime = System.nanoTime() / NANOTIME_DIV;
343 }
344
345 // we moved this functionality to a helper function so SmoothPagedView can reuse it
346 protected boolean computeScrollHelper() {
Winson Chung321e9ee2010-08-09 13:37:56 -0700347 if (mScroller.computeScrollOffset()) {
Michael Jurka5f1c5092010-09-03 14:15:02 -0700348 mDirtyPageAlpha = true;
Winson Chung321e9ee2010-08-09 13:37:56 -0700349 scrollTo(mScroller.getCurrX(), mScroller.getCurrY());
Michael Jurka0142d492010-08-25 17:46:15 -0700350 invalidate();
351 return true;
Winson Chung86f77532010-08-24 11:08:22 -0700352 } else if (mNextPage != INVALID_PAGE) {
Michael Jurka5f1c5092010-09-03 14:15:02 -0700353 mDirtyPageAlpha = true;
Winson Chung86f77532010-08-24 11:08:22 -0700354 mCurrentPage = Math.max(0, Math.min(mNextPage, getPageCount() - 1));
Winson Chung86f77532010-08-24 11:08:22 -0700355 mNextPage = INVALID_PAGE;
Michael Jurka0142d492010-08-25 17:46:15 -0700356 notifyPageSwitchListener();
Adam Cohen73aa9752010-11-24 16:26:58 -0800357 // We don't want to trigger a page end moving unless the page has settled
358 // and the user has stopped scrolling
359 if (mTouchState == TOUCH_STATE_REST) {
360 pageEndMoving();
361 }
Michael Jurka0142d492010-08-25 17:46:15 -0700362 return true;
Winson Chung321e9ee2010-08-09 13:37:56 -0700363 }
Michael Jurka0142d492010-08-25 17:46:15 -0700364 return false;
365 }
366
367 @Override
368 public void computeScroll() {
369 computeScrollHelper();
Winson Chung321e9ee2010-08-09 13:37:56 -0700370 }
371
372 @Override
373 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
374 final int widthMode = MeasureSpec.getMode(widthMeasureSpec);
375 final int widthSize = MeasureSpec.getSize(widthMeasureSpec);
376 if (widthMode != MeasureSpec.EXACTLY) {
377 throw new IllegalStateException("Workspace can only be used in EXACTLY mode.");
378 }
379
Adam Lesinski6b879f02010-11-04 16:15:23 -0700380 /* Allow the height to be set as WRAP_CONTENT. This allows the particular case
381 * of the All apps view on XLarge displays to not take up more space then it needs. Width
382 * is still not allowed to be set as WRAP_CONTENT since many parts of the code expect
383 * each page to have the same width.
384 */
Winson Chung321e9ee2010-08-09 13:37:56 -0700385 final int heightMode = MeasureSpec.getMode(heightMeasureSpec);
Adam Lesinski6b879f02010-11-04 16:15:23 -0700386 int heightSize = MeasureSpec.getSize(heightMeasureSpec);
387 int maxChildHeight = 0;
388
389 final int verticalPadding = mPaddingTop + mPaddingBottom;
Winson Chung321e9ee2010-08-09 13:37:56 -0700390
391 // The children are given the same width and height as the workspace
Michael Jurka5f1c5092010-09-03 14:15:02 -0700392 // unless they were set to WRAP_CONTENT
Winson Chung321e9ee2010-08-09 13:37:56 -0700393 final int childCount = getChildCount();
394 for (int i = 0; i < childCount; i++) {
Michael Jurka5f1c5092010-09-03 14:15:02 -0700395 // disallowing padding in paged view (just pass 0)
396 final View child = getChildAt(i);
397 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
398
399 int childWidthMode;
400 if (lp.width == LayoutParams.WRAP_CONTENT) {
401 childWidthMode = MeasureSpec.AT_MOST;
402 } else {
403 childWidthMode = MeasureSpec.EXACTLY;
404 }
405
406 int childHeightMode;
407 if (lp.height == LayoutParams.WRAP_CONTENT) {
408 childHeightMode = MeasureSpec.AT_MOST;
409 } else {
410 childHeightMode = MeasureSpec.EXACTLY;
411 }
412
413 final int childWidthMeasureSpec =
414 MeasureSpec.makeMeasureSpec(widthSize, childWidthMode);
415 final int childHeightMeasureSpec =
Adam Lesinski6b879f02010-11-04 16:15:23 -0700416 MeasureSpec.makeMeasureSpec(heightSize - verticalPadding, childHeightMode);
Michael Jurka5f1c5092010-09-03 14:15:02 -0700417
418 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
Adam Lesinski6b879f02010-11-04 16:15:23 -0700419 maxChildHeight = Math.max(maxChildHeight, child.getMeasuredHeight());
420 }
421
422 if (heightMode == MeasureSpec.AT_MOST) {
423 heightSize = maxChildHeight + verticalPadding;
Winson Chung321e9ee2010-08-09 13:37:56 -0700424 }
Adam Cohenfaa28302010-11-19 12:02:18 -0800425 if (childCount > 0) {
426 mMaxScrollX = getChildOffset(childCount - 1) - getRelativeChildOffset(childCount - 1);
427 } else {
428 mMaxScrollX = 0;
429 }
Winson Chung321e9ee2010-08-09 13:37:56 -0700430
431 setMeasuredDimension(widthSize, heightSize);
Winson Chung321e9ee2010-08-09 13:37:56 -0700432 }
433
Michael Jurka8c920dd2011-01-20 14:16:56 -0800434 protected void scrollToNewPageWithoutMovingPages(int newCurrentPage) {
Michael Jurkaaf91de02010-11-23 16:23:58 -0800435 int newX = getChildOffset(newCurrentPage) - getRelativeChildOffset(newCurrentPage);
436 int delta = newX - mScrollX;
437
Michael Jurka8c920dd2011-01-20 14:16:56 -0800438 final int pageCount = getChildCount();
439 for (int i = 0; i < pageCount; i++) {
440 View page = (View) getChildAt(i);
441 page.setX(page.getX() + delta);
Michael Jurkaaf91de02010-11-23 16:23:58 -0800442 }
443 setCurrentPage(newCurrentPage);
444 }
445
Michael Jurka8c920dd2011-01-20 14:16:56 -0800446 // A layout scale of 1.0f assumes that the pages, in their unshrunken state, have a
447 // scale of 1.0f. A layout scale of 0.8f assumes the pages have a scale of 0.8f, and
Michael Jurkad3ef3062010-11-23 16:23:58 -0800448 // tightens the layout accordingly
449 public void setLayoutScale(float childrenScale) {
450 mLayoutScale = childrenScale;
451
452 // Now we need to do a re-layout, but preserving absolute X and Y coordinates
453 int childCount = getChildCount();
454 float childrenX[] = new float[childCount];
455 float childrenY[] = new float[childCount];
456 for (int i = 0; i < childCount; i++) {
457 final View child = getChildAt(i);
458 childrenX[i] = child.getX();
459 childrenY[i] = child.getY();
460 }
461 onLayout(false, mLeft, mTop, mRight, mBottom);
462 for (int i = 0; i < childCount; i++) {
463 final View child = getChildAt(i);
464 child.setX(childrenX[i]);
465 child.setY(childrenY[i]);
466 }
467 // Also, the page offset has changed (since the pages are now smaller);
468 // update the page offset, but again preserving absolute X and Y coordinates
Michael Jurka8c920dd2011-01-20 14:16:56 -0800469 scrollToNewPageWithoutMovingPages(mCurrentPage);
Michael Jurkad3ef3062010-11-23 16:23:58 -0800470 }
471
Winson Chung321e9ee2010-08-09 13:37:56 -0700472 @Override
Michael Jurka28750fb2010-09-24 17:43:49 -0700473 protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
Michael Jurkacfc62942010-09-14 14:01:07 -0700474 if (mFirstLayout && mCurrentPage >= 0 && mCurrentPage < getChildCount()) {
475 setHorizontalScrollBarEnabled(false);
476 int newX = getChildOffset(mCurrentPage) - getRelativeChildOffset(mCurrentPage);
477 scrollTo(newX, 0);
478 mScroller.setFinalX(newX);
479 setHorizontalScrollBarEnabled(true);
480 mFirstLayout = false;
481 }
482
Adam Lesinski6b879f02010-11-04 16:15:23 -0700483 final int verticalPadding = mPaddingTop + mPaddingBottom;
Winson Chung321e9ee2010-08-09 13:37:56 -0700484 final int childCount = getChildCount();
485 int childLeft = 0;
486 if (childCount > 0) {
Winson Chunge3193b92010-09-10 11:44:42 -0700487 childLeft = getRelativeChildOffset(0);
Winson Chung321e9ee2010-08-09 13:37:56 -0700488 }
489
490 for (int i = 0; i < childCount; i++) {
491 final View child = getChildAt(i);
492 if (child.getVisibility() != View.GONE) {
Michael Jurkad3ef3062010-11-23 16:23:58 -0800493 final int childWidth = getScaledMeasuredWidth(child);
Adam Lesinski6b879f02010-11-04 16:15:23 -0700494 final int childHeight = child.getMeasuredHeight();
495 int childTop = mPaddingTop;
496 if (mCenterPagesVertically) {
497 childTop += ((getMeasuredHeight() - verticalPadding) - childHeight) / 2;
498 }
Michael Jurkad3ef3062010-11-23 16:23:58 -0800499
Adam Lesinski6b879f02010-11-04 16:15:23 -0700500 child.layout(childLeft, childTop,
Michael Jurkad3ef3062010-11-23 16:23:58 -0800501 childLeft + child.getMeasuredWidth(), childTop + childHeight);
Adam Cohen9c4949e2010-10-05 12:27:22 -0700502 childLeft += childWidth + mPageSpacing;
Winson Chung321e9ee2010-08-09 13:37:56 -0700503 }
504 }
Michael Jurkad3ef3062010-11-23 16:23:58 -0800505 if (mFirstLayout && mCurrentPage >= 0 && mCurrentPage < getChildCount()) {
506 mFirstLayout = false;
507 }
Winson Chung321e9ee2010-08-09 13:37:56 -0700508 }
509
Winson Chung03929772011-02-23 17:07:10 -0800510 protected void forceUpdateAdjacentPagesAlpha() {
511 mDirtyPageAlpha = true;
512 updateAdjacentPagesAlpha();
513 }
514
Winson Chunge3193b92010-09-10 11:44:42 -0700515 protected void updateAdjacentPagesAlpha() {
Michael Jurka0142d492010-08-25 17:46:15 -0700516 if (mFadeInAdjacentScreens) {
517 if (mDirtyPageAlpha || (mTouchState == TOUCH_STATE_SCROLLING) || !mScroller.isFinished()) {
Winson Chunge3193b92010-09-10 11:44:42 -0700518 int halfScreenSize = getMeasuredWidth() / 2;
519 int screenCenter = mScrollX + halfScreenSize;
Michael Jurka0142d492010-08-25 17:46:15 -0700520 final int childCount = getChildCount();
521 for (int i = 0; i < childCount; ++i) {
522 View layout = (View) getChildAt(i);
Michael Jurkad3ef3062010-11-23 16:23:58 -0800523 int childWidth = getScaledMeasuredWidth(layout);
Michael Jurka0142d492010-08-25 17:46:15 -0700524 int halfChildWidth = (childWidth / 2);
525 int childCenter = getChildOffset(i) + halfChildWidth;
Winson Chunge8878e32010-09-15 20:37:09 -0700526
Winson Chungb0b2e6f2010-10-12 17:49:56 -0700527 // On the first layout, we may not have a width nor a proper offset, so for now
528 // we should just assume full page width (and calculate the offset according to
529 // that).
530 if (childWidth <= 0) {
531 childWidth = getMeasuredWidth();
532 childCenter = (i * childWidth) + (childWidth / 2);
533 }
534
Winson Chunge8878e32010-09-15 20:37:09 -0700535 int d = halfChildWidth;
536 int distanceFromScreenCenter = childCenter - screenCenter;
537 if (distanceFromScreenCenter > 0) {
538 if (i > 0) {
Michael Jurkad3ef3062010-11-23 16:23:58 -0800539 d += getScaledMeasuredWidth(getChildAt(i - 1)) / 2;
Winson Chunge8878e32010-09-15 20:37:09 -0700540 }
Michael Jurka0142d492010-08-25 17:46:15 -0700541 } else {
Winson Chunge8878e32010-09-15 20:37:09 -0700542 if (i < childCount - 1) {
Michael Jurkad3ef3062010-11-23 16:23:58 -0800543 d += getScaledMeasuredWidth(getChildAt(i + 1)) / 2;
Winson Chunge8878e32010-09-15 20:37:09 -0700544 }
Michael Jurka0142d492010-08-25 17:46:15 -0700545 }
Adam Cohen9c4949e2010-10-05 12:27:22 -0700546 d += mPageSpacing;
Winson Chunge8878e32010-09-15 20:37:09 -0700547
Winson Chungb0b2e6f2010-10-12 17:49:56 -0700548 // Preventing potential divide-by-zero
549 d = Math.max(1, d);
550
Winson Chunge8878e32010-09-15 20:37:09 -0700551 float dimAlpha = (float) (Math.abs(distanceFromScreenCenter)) / d;
552 dimAlpha = Math.max(0.0f, Math.min(1.0f, (dimAlpha * dimAlpha)));
553 float alpha = 1.0f - dimAlpha;
554
Adam Cohenf34bab52010-09-30 14:11:56 -0700555 if (alpha < ALPHA_QUANTIZE_LEVEL) {
556 alpha = 0.0f;
557 } else if (alpha > 1.0f - ALPHA_QUANTIZE_LEVEL) {
558 alpha = 1.0f;
559 }
560
Michael Jurkaa40829a2011-02-16 18:02:45 -0800561 // Due to the way we're setting alpha on our children in PagedViewCellLayout,
562 // this optimization causes alpha to not be properly updated sometimes (repro
563 // case: in xlarge mode, swipe to second page in All Apps, then click on "My
564 // Apps" tab. the page will have alpha 0 until you swipe it). Removing
565 // optimization fixes the issue, but we should fix this in a better manner
Michael Jurkacfdb0962011-02-04 01:38:00 -0800566 //if (Float.compare(alpha, layout.getAlpha()) != 0) {
Michael Jurka0142d492010-08-25 17:46:15 -0700567 layout.setAlpha(alpha);
Michael Jurkacfdb0962011-02-04 01:38:00 -0800568 //}
Winson Chung321e9ee2010-08-09 13:37:56 -0700569 }
Michael Jurka0142d492010-08-25 17:46:15 -0700570 mDirtyPageAlpha = false;
Winson Chung321e9ee2010-08-09 13:37:56 -0700571 }
572 }
Winson Chunge3193b92010-09-10 11:44:42 -0700573 }
574
Adam Cohenf34bab52010-09-30 14:11:56 -0700575 protected void screenScrolled(int screenCenter) {
576 }
577
Winson Chunge3193b92010-09-10 11:44:42 -0700578 @Override
579 protected void dispatchDraw(Canvas canvas) {
Adam Cohenf34bab52010-09-30 14:11:56 -0700580 int halfScreenSize = getMeasuredWidth() / 2;
581 int screenCenter = mScrollX + halfScreenSize;
582
583 if (screenCenter != mLastScreenCenter) {
584 screenScrolled(screenCenter);
585 updateAdjacentPagesAlpha();
586 mLastScreenCenter = screenCenter;
587 }
Michael Jurka0142d492010-08-25 17:46:15 -0700588
589 // Find out which screens are visible; as an optimization we only call draw on them
Michael Jurka0142d492010-08-25 17:46:15 -0700590 // As an optimization, this code assumes that all pages have the same width as the 0th
591 // page.
Michael Jurka0142d492010-08-25 17:46:15 -0700592 final int pageCount = getChildCount();
Michael Jurkac4fb9172010-09-02 17:19:20 -0700593 if (pageCount > 0) {
Michael Jurkad3ef3062010-11-23 16:23:58 -0800594 final int pageWidth = getScaledMeasuredWidth(getChildAt(0));
Michael Jurkac4fb9172010-09-02 17:19:20 -0700595 final int screenWidth = getMeasuredWidth();
596 int x = getRelativeChildOffset(0) + pageWidth;
597 int leftScreen = 0;
598 int rightScreen = 0;
599 while (x <= mScrollX) {
600 leftScreen++;
Winson Chungc3f9f4f2010-12-14 17:25:59 -0800601 x += getScaledMeasuredWidth(getChildAt(leftScreen)) + mPageSpacing;
Michael Jurkac4fb9172010-09-02 17:19:20 -0700602 }
603 rightScreen = leftScreen;
Winson Chungc3f9f4f2010-12-14 17:25:59 -0800604 while (x < mScrollX + screenWidth && rightScreen < pageCount) {
Michael Jurkac4fb9172010-09-02 17:19:20 -0700605 rightScreen++;
Winson Chungc3f9f4f2010-12-14 17:25:59 -0800606 if (rightScreen < pageCount) {
607 x += getScaledMeasuredWidth(getChildAt(rightScreen)) + mPageSpacing;
608 }
Michael Jurkac4fb9172010-09-02 17:19:20 -0700609 }
610 rightScreen = Math.min(getChildCount() - 1, rightScreen);
Michael Jurka0142d492010-08-25 17:46:15 -0700611
Michael Jurkac4fb9172010-09-02 17:19:20 -0700612 final long drawingTime = getDrawingTime();
Winson Chung29d6fea2010-12-01 15:47:31 -0800613 // Clip to the bounds
614 canvas.save();
615 canvas.clipRect(mScrollX, mScrollY, mScrollX + mRight - mLeft,
616 mScrollY + mBottom - mTop);
617
Michael Jurkac4fb9172010-09-02 17:19:20 -0700618 for (int i = leftScreen; i <= rightScreen; i++) {
619 drawChild(canvas, getChildAt(i), drawingTime);
620 }
Winson Chung29d6fea2010-12-01 15:47:31 -0800621 canvas.restore();
Michael Jurka0142d492010-08-25 17:46:15 -0700622 }
Winson Chung321e9ee2010-08-09 13:37:56 -0700623 }
624
625 @Override
626 public boolean requestChildRectangleOnScreen(View child, Rect rectangle, boolean immediate) {
Winson Chung86f77532010-08-24 11:08:22 -0700627 int page = indexOfChild(child);
628 if (page != mCurrentPage || !mScroller.isFinished()) {
629 snapToPage(page);
Winson Chung321e9ee2010-08-09 13:37:56 -0700630 return true;
631 }
632 return false;
633 }
634
635 @Override
636 protected boolean onRequestFocusInDescendants(int direction, Rect previouslyFocusedRect) {
Winson Chung86f77532010-08-24 11:08:22 -0700637 int focusablePage;
638 if (mNextPage != INVALID_PAGE) {
639 focusablePage = mNextPage;
Winson Chung321e9ee2010-08-09 13:37:56 -0700640 } else {
Winson Chung86f77532010-08-24 11:08:22 -0700641 focusablePage = mCurrentPage;
Winson Chung321e9ee2010-08-09 13:37:56 -0700642 }
Winson Chung86f77532010-08-24 11:08:22 -0700643 View v = getPageAt(focusablePage);
Winson Chung321e9ee2010-08-09 13:37:56 -0700644 if (v != null) {
645 v.requestFocus(direction, previouslyFocusedRect);
646 }
647 return false;
648 }
649
650 @Override
651 public boolean dispatchUnhandledMove(View focused, int direction) {
652 if (direction == View.FOCUS_LEFT) {
Winson Chung86f77532010-08-24 11:08:22 -0700653 if (getCurrentPage() > 0) {
654 snapToPage(getCurrentPage() - 1);
Winson Chung321e9ee2010-08-09 13:37:56 -0700655 return true;
656 }
657 } else if (direction == View.FOCUS_RIGHT) {
Winson Chung86f77532010-08-24 11:08:22 -0700658 if (getCurrentPage() < getPageCount() - 1) {
659 snapToPage(getCurrentPage() + 1);
Winson Chung321e9ee2010-08-09 13:37:56 -0700660 return true;
661 }
662 }
663 return super.dispatchUnhandledMove(focused, direction);
664 }
665
666 @Override
667 public void addFocusables(ArrayList<View> views, int direction, int focusableMode) {
Winson Chung86f77532010-08-24 11:08:22 -0700668 if (mCurrentPage >= 0 && mCurrentPage < getPageCount()) {
669 getPageAt(mCurrentPage).addFocusables(views, direction);
Winson Chung321e9ee2010-08-09 13:37:56 -0700670 }
671 if (direction == View.FOCUS_LEFT) {
Winson Chung86f77532010-08-24 11:08:22 -0700672 if (mCurrentPage > 0) {
673 getPageAt(mCurrentPage - 1).addFocusables(views, direction);
Winson Chung321e9ee2010-08-09 13:37:56 -0700674 }
675 } else if (direction == View.FOCUS_RIGHT){
Winson Chung86f77532010-08-24 11:08:22 -0700676 if (mCurrentPage < getPageCount() - 1) {
677 getPageAt(mCurrentPage + 1).addFocusables(views, direction);
Winson Chung321e9ee2010-08-09 13:37:56 -0700678 }
679 }
680 }
681
682 /**
683 * If one of our descendant views decides that it could be focused now, only
Winson Chung86f77532010-08-24 11:08:22 -0700684 * pass that along if it's on the current page.
Winson Chung321e9ee2010-08-09 13:37:56 -0700685 *
Winson Chung86f77532010-08-24 11:08:22 -0700686 * This happens when live folders requery, and if they're off page, they
687 * end up calling requestFocus, which pulls it on page.
Winson Chung321e9ee2010-08-09 13:37:56 -0700688 */
689 @Override
690 public void focusableViewAvailable(View focused) {
Winson Chung86f77532010-08-24 11:08:22 -0700691 View current = getPageAt(mCurrentPage);
Winson Chung321e9ee2010-08-09 13:37:56 -0700692 View v = focused;
693 while (true) {
694 if (v == current) {
695 super.focusableViewAvailable(focused);
696 return;
697 }
698 if (v == this) {
699 return;
700 }
701 ViewParent parent = v.getParent();
702 if (parent instanceof View) {
703 v = (View)v.getParent();
704 } else {
705 return;
706 }
707 }
708 }
709
710 /**
711 * {@inheritDoc}
712 */
713 @Override
714 public void requestDisallowInterceptTouchEvent(boolean disallowIntercept) {
715 if (disallowIntercept) {
716 // We need to make sure to cancel our long press if
717 // a scrollable widget takes over touch events
Winson Chung86f77532010-08-24 11:08:22 -0700718 final View currentPage = getChildAt(mCurrentPage);
719 currentPage.cancelLongPress();
Winson Chung321e9ee2010-08-09 13:37:56 -0700720 }
721 super.requestDisallowInterceptTouchEvent(disallowIntercept);
722 }
723
Patrick Dubroyd0ce1ec2011-01-19 18:47:27 -0800724 /**
725 * Return true if a tap at (x, y) should trigger a flip to the previous page.
726 */
727 protected boolean hitsPreviousPage(float x, float y) {
728 return (x < getRelativeChildOffset(mCurrentPage) - mPageSpacing);
729 }
730
731 /**
732 * Return true if a tap at (x, y) should trigger a flip to the next page.
733 */
734 protected boolean hitsNextPage(float x, float y) {
735 return (x > (getMeasuredWidth() - getRelativeChildOffset(mCurrentPage) + mPageSpacing));
736 }
737
Winson Chung321e9ee2010-08-09 13:37:56 -0700738 @Override
739 public boolean onInterceptTouchEvent(MotionEvent ev) {
740 /*
741 * This method JUST determines whether we want to intercept the motion.
742 * If we return true, onTouchEvent will be called and we do the actual
743 * scrolling there.
744 */
Adam Cohen6342bba2011-03-10 11:33:35 -0800745 acquireVelocityTrackerAndAddMovement(ev);
Winson Chung321e9ee2010-08-09 13:37:56 -0700746
Winson Chung45e1d6e2010-11-09 17:19:49 -0800747 // Skip touch handling if there are no pages to swipe
748 if (getChildCount() <= 0) return super.onInterceptTouchEvent(ev);
749
Winson Chung321e9ee2010-08-09 13:37:56 -0700750 /*
751 * Shortcut the most recurring case: the user is in the dragging
752 * state and he is moving his finger. We want to intercept this
753 * motion.
754 */
755 final int action = ev.getAction();
756 if ((action == MotionEvent.ACTION_MOVE) &&
757 (mTouchState == TOUCH_STATE_SCROLLING)) {
758 return true;
759 }
760
Winson Chung321e9ee2010-08-09 13:37:56 -0700761 switch (action & MotionEvent.ACTION_MASK) {
762 case MotionEvent.ACTION_MOVE: {
763 /*
764 * mIsBeingDragged == false, otherwise the shortcut would have caught it. Check
765 * whether the user has moved far enough from his original down touch.
766 */
Michael Jurka1ff706b2010-09-14 17:35:20 -0700767 if (mActivePointerId != INVALID_POINTER) {
768 determineScrollingStart(ev);
769 break;
770 }
771 // if mActivePointerId is INVALID_POINTER, then we must have missed an ACTION_DOWN
772 // event. in that case, treat the first occurence of a move event as a ACTION_DOWN
773 // i.e. fall through to the next case (don't break)
774 // (We sometimes miss ACTION_DOWN events in Workspace because it ignores all events
775 // while it's small- this was causing a crash before we checked for INVALID_POINTER)
Winson Chung321e9ee2010-08-09 13:37:56 -0700776 }
777
778 case MotionEvent.ACTION_DOWN: {
779 final float x = ev.getX();
780 final float y = ev.getY();
781 // Remember location of down touch
782 mDownMotionX = x;
783 mLastMotionX = x;
784 mLastMotionY = y;
Winson Chungc0844aa2011-02-02 15:25:58 -0800785 mLastMotionXRemainder = 0;
Adam Cohenaefd4e12011-02-14 16:39:38 -0800786 mTotalMotionX = 0;
Winson Chung321e9ee2010-08-09 13:37:56 -0700787 mActivePointerId = ev.getPointerId(0);
788 mAllowLongPress = true;
789
790 /*
791 * If being flinged and user touches the screen, initiate drag;
792 * otherwise don't. mScroller.isFinished should be false when
793 * being flinged.
794 */
Michael Jurkafd177c12010-10-19 15:50:43 -0700795 final int xDist = Math.abs(mScroller.getFinalX() - mScroller.getCurrX());
Winson Chung5f2aa4e2010-08-20 14:49:25 -0700796 final boolean finishedScrolling = (mScroller.isFinished() || xDist < mTouchSlop);
797 if (finishedScrolling) {
798 mTouchState = TOUCH_STATE_REST;
799 mScroller.abortAnimation();
800 } else {
801 mTouchState = TOUCH_STATE_SCROLLING;
802 }
Winson Chung321e9ee2010-08-09 13:37:56 -0700803
Winson Chung86f77532010-08-24 11:08:22 -0700804 // check if this can be the beginning of a tap on the side of the pages
Winson Chung321e9ee2010-08-09 13:37:56 -0700805 // to scroll the current page
Patrick Dubroyd0ce1ec2011-01-19 18:47:27 -0800806 if (mTouchState != TOUCH_STATE_PREV_PAGE && mTouchState != TOUCH_STATE_NEXT_PAGE) {
Winson Chung321e9ee2010-08-09 13:37:56 -0700807 if (getChildCount() > 0) {
Patrick Dubroyd0ce1ec2011-01-19 18:47:27 -0800808 if (hitsPreviousPage(x, y)) {
Winson Chung321e9ee2010-08-09 13:37:56 -0700809 mTouchState = TOUCH_STATE_PREV_PAGE;
Patrick Dubroyd0ce1ec2011-01-19 18:47:27 -0800810 } else if (hitsNextPage(x, y)) {
Winson Chung321e9ee2010-08-09 13:37:56 -0700811 mTouchState = TOUCH_STATE_NEXT_PAGE;
812 }
813 }
814 }
815 break;
816 }
817
Winson Chung321e9ee2010-08-09 13:37:56 -0700818 case MotionEvent.ACTION_UP:
Jeff Brown1d0867c2010-12-02 18:27:39 -0800819 onWallpaperTap(ev);
820 case MotionEvent.ACTION_CANCEL:
Winson Chung321e9ee2010-08-09 13:37:56 -0700821 mTouchState = TOUCH_STATE_REST;
822 mAllowLongPress = false;
823 mActivePointerId = INVALID_POINTER;
Adam Cohen6342bba2011-03-10 11:33:35 -0800824 releaseVelocityTracker();
Winson Chung321e9ee2010-08-09 13:37:56 -0700825 break;
826
827 case MotionEvent.ACTION_POINTER_UP:
828 onSecondaryPointerUp(ev);
Adam Cohen6342bba2011-03-10 11:33:35 -0800829 releaseVelocityTracker();
Winson Chung321e9ee2010-08-09 13:37:56 -0700830 break;
831 }
832
833 /*
834 * The only time we want to intercept motion events is if we are in the
835 * drag mode.
836 */
837 return mTouchState != TOUCH_STATE_REST;
838 }
839
Winson Chung80baf5a2010-08-09 16:03:15 -0700840 protected void animateClickFeedback(View v, final Runnable r) {
841 // animate the view slightly to show click feedback running some logic after it is "pressed"
Winson Chung228a0fa2011-01-26 22:14:13 -0800842 ObjectAnimator anim = (ObjectAnimator) AnimatorInflater.
843 loadAnimator(mContext, R.anim.paged_view_click_feedback);
844 anim.setTarget(v);
845 anim.addListener(new AnimatorListenerAdapter() {
846 public void onAnimationRepeat(Animator animation) {
Winson Chung80baf5a2010-08-09 16:03:15 -0700847 r.run();
848 }
Winson Chung80baf5a2010-08-09 16:03:15 -0700849 });
Winson Chung228a0fa2011-01-26 22:14:13 -0800850 anim.start();
Winson Chung80baf5a2010-08-09 16:03:15 -0700851 }
852
Adam Cohenf8d28232011-02-01 21:47:00 -0800853 protected void determineScrollingStart(MotionEvent ev) {
854 determineScrollingStart(ev, 1.0f);
855 }
856
Winson Chung321e9ee2010-08-09 13:37:56 -0700857 /*
858 * Determines if we should change the touch state to start scrolling after the
859 * user moves their touch point too far.
860 */
Adam Cohenf8d28232011-02-01 21:47:00 -0800861 protected void determineScrollingStart(MotionEvent ev, float touchSlopScale) {
Winson Chung321e9ee2010-08-09 13:37:56 -0700862 /*
863 * Locally do absolute value. mLastMotionX is set to the y value
864 * of the down event.
865 */
866 final int pointerIndex = ev.findPointerIndex(mActivePointerId);
867 final float x = ev.getX(pointerIndex);
868 final float y = ev.getY(pointerIndex);
869 final int xDiff = (int) Math.abs(x - mLastMotionX);
870 final int yDiff = (int) Math.abs(y - mLastMotionY);
871
Adam Cohenf8d28232011-02-01 21:47:00 -0800872 final int touchSlop = Math.round(touchSlopScale * mTouchSlop);
Winson Chung321e9ee2010-08-09 13:37:56 -0700873 boolean xPaged = xDiff > mPagingTouchSlop;
874 boolean xMoved = xDiff > touchSlop;
875 boolean yMoved = yDiff > touchSlop;
876
Adam Cohenf8d28232011-02-01 21:47:00 -0800877 if (xMoved || xPaged || yMoved) {
Michael Jurka0142d492010-08-25 17:46:15 -0700878 if (mUsePagingTouchSlop ? xPaged : xMoved) {
Winson Chung321e9ee2010-08-09 13:37:56 -0700879 // Scroll if the user moved far enough along the X axis
880 mTouchState = TOUCH_STATE_SCROLLING;
Adam Cohen6342bba2011-03-10 11:33:35 -0800881 mTotalMotionX += Math.abs(mLastMotionX - x);
Winson Chung321e9ee2010-08-09 13:37:56 -0700882 mLastMotionX = x;
Winson Chungc0844aa2011-02-02 15:25:58 -0800883 mLastMotionXRemainder = 0;
Michael Jurka0142d492010-08-25 17:46:15 -0700884 mTouchX = mScrollX;
885 mSmoothingTime = System.nanoTime() / NANOTIME_DIV;
886 pageBeginMoving();
Winson Chung321e9ee2010-08-09 13:37:56 -0700887 }
888 // Either way, cancel any pending longpress
Adam Cohenf8d28232011-02-01 21:47:00 -0800889 cancelCurrentPageLongPress();
890 }
891 }
892
893 protected void cancelCurrentPageLongPress() {
894 if (mAllowLongPress) {
895 mAllowLongPress = false;
896 // Try canceling the long press. It could also have been scheduled
897 // by a distant descendant, so use the mAllowLongPress flag to block
898 // everything
899 final View currentPage = getPageAt(mCurrentPage);
900 if (currentPage != null) {
901 currentPage.cancelLongPress();
Winson Chung321e9ee2010-08-09 13:37:56 -0700902 }
903 }
904 }
905
Adam Cohene0f66b52010-11-23 15:06:07 -0800906 // This curve determines how the effect of scrolling over the limits of the page dimishes
907 // as the user pulls further and further from the bounds
908 private float overScrollInfluenceCurve(float f) {
909 f -= 1.0f;
910 return f * f * f + 1.0f;
911 }
912
Adam Cohen68d73932010-11-15 10:50:58 -0800913 protected void overScroll(float amount) {
Adam Cohene0f66b52010-11-23 15:06:07 -0800914 int screenSize = getMeasuredWidth();
915
916 float f = (amount / screenSize);
917
918 if (f == 0) return;
919 f = f / (Math.abs(f)) * (overScrollInfluenceCurve(Math.abs(f)));
920
Adam Cohen7bfc9792011-01-28 13:52:37 -0800921 // Clamp this factor, f, to -1 < f < 1
922 if (Math.abs(f) >= 1) {
923 f /= Math.abs(f);
924 }
925
Adam Cohene0f66b52010-11-23 15:06:07 -0800926 int overScrollAmount = (int) Math.round(OVERSCROLL_DAMP_FACTOR * f * screenSize);
Adam Cohen68d73932010-11-15 10:50:58 -0800927 if (amount < 0) {
928 mScrollX = overScrollAmount;
929 } else {
930 mScrollX = mMaxScrollX + overScrollAmount;
931 }
932 invalidate();
933 }
934
Michael Jurkac5b262c2011-01-12 20:24:50 -0800935 protected float maxOverScroll() {
936 // Using the formula in overScroll, assuming that f = 1.0 (which it should generally not
937 // exceed). Used to find out how much extra wallpaper we need for the overscroll effect
938 float f = 1.0f;
939 f = f / (Math.abs(f)) * (overScrollInfluenceCurve(Math.abs(f)));
940 return OVERSCROLL_DAMP_FACTOR * f;
941 }
942
Winson Chung321e9ee2010-08-09 13:37:56 -0700943 @Override
944 public boolean onTouchEvent(MotionEvent ev) {
Winson Chung45e1d6e2010-11-09 17:19:49 -0800945 // Skip touch handling if there are no pages to swipe
946 if (getChildCount() <= 0) return super.onTouchEvent(ev);
947
Michael Jurkab8f06722010-10-10 15:58:46 -0700948 acquireVelocityTrackerAndAddMovement(ev);
Winson Chung321e9ee2010-08-09 13:37:56 -0700949
950 final int action = ev.getAction();
951
952 switch (action & MotionEvent.ACTION_MASK) {
953 case MotionEvent.ACTION_DOWN:
954 /*
955 * If being flinged and user touches, stop the fling. isFinished
956 * will be false if being flinged.
957 */
958 if (!mScroller.isFinished()) {
959 mScroller.abortAnimation();
960 }
961
962 // Remember where the motion event started
963 mDownMotionX = mLastMotionX = ev.getX();
Winson Chungc0844aa2011-02-02 15:25:58 -0800964 mLastMotionXRemainder = 0;
Adam Cohenaefd4e12011-02-14 16:39:38 -0800965 mTotalMotionX = 0;
Winson Chung321e9ee2010-08-09 13:37:56 -0700966 mActivePointerId = ev.getPointerId(0);
Michael Jurka0142d492010-08-25 17:46:15 -0700967 if (mTouchState == TOUCH_STATE_SCROLLING) {
968 pageBeginMoving();
969 }
Winson Chung321e9ee2010-08-09 13:37:56 -0700970 break;
971
972 case MotionEvent.ACTION_MOVE:
973 if (mTouchState == TOUCH_STATE_SCROLLING) {
974 // Scroll to follow the motion event
975 final int pointerIndex = ev.findPointerIndex(mActivePointerId);
976 final float x = ev.getX(pointerIndex);
Winson Chungc0844aa2011-02-02 15:25:58 -0800977 final float deltaX = mLastMotionX + mLastMotionXRemainder - x;
Winson Chung321e9ee2010-08-09 13:37:56 -0700978
Adam Cohenaefd4e12011-02-14 16:39:38 -0800979 mTotalMotionX += Math.abs(deltaX);
980
Winson Chungc0844aa2011-02-02 15:25:58 -0800981 // Only scroll and update mLastMotionX if we have moved some discrete amount. We
982 // keep the remainder because we are actually testing if we've moved from the last
983 // scrolled position (which is discrete).
984 if (Math.abs(deltaX) >= 1.0f) {
Adam Cohen68d73932010-11-15 10:50:58 -0800985 mTouchX += deltaX;
986 mSmoothingTime = System.nanoTime() / NANOTIME_DIV;
987 if (!mDeferScrollUpdate) {
Winson Chungc0844aa2011-02-02 15:25:58 -0800988 scrollBy((int) deltaX, 0);
Adam Cohen68d73932010-11-15 10:50:58 -0800989 } else {
990 invalidate();
Winson Chung321e9ee2010-08-09 13:37:56 -0700991 }
Winson Chungc0844aa2011-02-02 15:25:58 -0800992 mLastMotionX = x;
993 mLastMotionXRemainder = deltaX - (int) deltaX;
Winson Chung321e9ee2010-08-09 13:37:56 -0700994 } else {
995 awakenScrollBars();
996 }
Adam Cohen564976a2010-10-13 18:52:07 -0700997 } else {
Winson Chung321e9ee2010-08-09 13:37:56 -0700998 determineScrollingStart(ev);
999 }
1000 break;
1001
1002 case MotionEvent.ACTION_UP:
1003 if (mTouchState == TOUCH_STATE_SCROLLING) {
1004 final int activePointerId = mActivePointerId;
1005 final int pointerIndex = ev.findPointerIndex(activePointerId);
1006 final float x = ev.getX(pointerIndex);
1007 final VelocityTracker velocityTracker = mVelocityTracker;
1008 velocityTracker.computeCurrentVelocity(1000, mMaximumVelocity);
1009 int velocityX = (int) velocityTracker.getXVelocity(activePointerId);
Winson Chung9cfd25f2010-10-24 16:09:28 -07001010 final int deltaX = (int) (x - mDownMotionX);
Adam Cohenb64cb5a2011-02-15 13:53:42 -08001011 boolean isSignificantMove = Math.abs(deltaX) > MIN_LENGTH_FOR_MOVE;
Michael Jurka0142d492010-08-25 17:46:15 -07001012 final int snapVelocity = mSnapVelocity;
Adam Cohenaefd4e12011-02-14 16:39:38 -08001013
Adam Cohenb64cb5a2011-02-15 13:53:42 -08001014 mTotalMotionX += Math.abs(mLastMotionX + mLastMotionXRemainder - x);
1015
Adam Cohenaefd4e12011-02-14 16:39:38 -08001016 // In the case that the page is moved far to one direction and then is flung
1017 // in the opposite direction, we use a threshold to determine whether we should
1018 // just return to the starting page, or if we should skip one further.
1019 boolean returnToOriginalPage = false;
1020 final int pageWidth = getScaledMeasuredWidth(getChildAt(mCurrentPage));
Adam Cohenb64cb5a2011-02-15 13:53:42 -08001021 if (Math.abs(deltaX) > pageWidth * RETURN_TO_ORIGINAL_PAGE_THRESHOLD &&
Adam Cohenaefd4e12011-02-14 16:39:38 -08001022 Math.signum(velocityX) != Math.signum(deltaX)) {
1023 returnToOriginalPage = true;
1024 }
1025
Adam Cohenb64cb5a2011-02-15 13:53:42 -08001026 boolean isFling = mTotalMotionX > MIN_LENGTH_FOR_FLING &&
Adam Cohenaefd4e12011-02-14 16:39:38 -08001027 Math.abs(velocityX) > snapVelocity;
1028
1029 int finalPage;
1030 // We give flings precedence over large moves, which is why we short-circuit our
1031 // test for a large move if a fling has been registered. That is, a large
1032 // move to the left and fling to the right will register as a fling to the right.
1033 if (((isSignificantMove && deltaX > 0 && !isFling) ||
1034 (isFling && velocityX > 0)) && mCurrentPage > 0) {
1035 finalPage = returnToOriginalPage ? mCurrentPage : mCurrentPage - 1;
1036 snapToPageWithVelocity(finalPage, velocityX);
1037 } else if (((isSignificantMove && deltaX < 0 && !isFling) ||
1038 (isFling && velocityX < 0)) &&
Winson Chung86f77532010-08-24 11:08:22 -07001039 mCurrentPage < getChildCount() - 1) {
Adam Cohenaefd4e12011-02-14 16:39:38 -08001040 finalPage = returnToOriginalPage ? mCurrentPage : mCurrentPage + 1;
1041 snapToPageWithVelocity(finalPage, velocityX);
Winson Chung321e9ee2010-08-09 13:37:56 -07001042 } else {
1043 snapToDestination();
1044 }
Patrick Dubroyd0ce1ec2011-01-19 18:47:27 -08001045 } else if (mTouchState == TOUCH_STATE_PREV_PAGE) {
Winson Chung321e9ee2010-08-09 13:37:56 -07001046 // at this point we have not moved beyond the touch slop
1047 // (otherwise mTouchState would be TOUCH_STATE_SCROLLING), so
1048 // we can just page
Winson Chung86f77532010-08-24 11:08:22 -07001049 int nextPage = Math.max(0, mCurrentPage - 1);
1050 if (nextPage != mCurrentPage) {
1051 snapToPage(nextPage);
Winson Chung321e9ee2010-08-09 13:37:56 -07001052 } else {
1053 snapToDestination();
1054 }
Patrick Dubroyd0ce1ec2011-01-19 18:47:27 -08001055 } else if (mTouchState == TOUCH_STATE_NEXT_PAGE) {
Winson Chung321e9ee2010-08-09 13:37:56 -07001056 // at this point we have not moved beyond the touch slop
1057 // (otherwise mTouchState would be TOUCH_STATE_SCROLLING), so
1058 // we can just page
Winson Chung86f77532010-08-24 11:08:22 -07001059 int nextPage = Math.min(getChildCount() - 1, mCurrentPage + 1);
1060 if (nextPage != mCurrentPage) {
1061 snapToPage(nextPage);
Winson Chung321e9ee2010-08-09 13:37:56 -07001062 } else {
1063 snapToDestination();
1064 }
Jeff Brown1d0867c2010-12-02 18:27:39 -08001065 } else {
1066 onWallpaperTap(ev);
Winson Chung321e9ee2010-08-09 13:37:56 -07001067 }
1068 mTouchState = TOUCH_STATE_REST;
1069 mActivePointerId = INVALID_POINTER;
Michael Jurkab8f06722010-10-10 15:58:46 -07001070 releaseVelocityTracker();
Winson Chung321e9ee2010-08-09 13:37:56 -07001071 break;
1072
1073 case MotionEvent.ACTION_CANCEL:
Michael Jurkab8f06722010-10-10 15:58:46 -07001074 if (mTouchState == TOUCH_STATE_SCROLLING) {
1075 snapToDestination();
1076 }
Winson Chung321e9ee2010-08-09 13:37:56 -07001077 mTouchState = TOUCH_STATE_REST;
1078 mActivePointerId = INVALID_POINTER;
Michael Jurkab8f06722010-10-10 15:58:46 -07001079 releaseVelocityTracker();
Winson Chung321e9ee2010-08-09 13:37:56 -07001080 break;
1081
1082 case MotionEvent.ACTION_POINTER_UP:
1083 onSecondaryPointerUp(ev);
1084 break;
1085 }
1086
1087 return true;
1088 }
1089
Winson Chung185d7162011-02-28 13:47:29 -08001090 @Override
1091 public boolean onGenericMotionEvent(MotionEvent event) {
1092 if ((event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) {
1093 switch (event.getAction()) {
1094 case MotionEvent.ACTION_SCROLL: {
1095 // Handle mouse (or ext. device) by shifting the page depending on the scroll
1096 final float vscroll;
1097 final float hscroll;
1098 if ((event.getMetaState() & KeyEvent.META_SHIFT_ON) != 0) {
1099 vscroll = 0;
1100 hscroll = event.getAxisValue(MotionEvent.AXIS_VSCROLL);
1101 } else {
1102 vscroll = -event.getAxisValue(MotionEvent.AXIS_VSCROLL);
1103 hscroll = event.getAxisValue(MotionEvent.AXIS_HSCROLL);
1104 }
1105 if (hscroll != 0 || vscroll != 0) {
1106 if (hscroll > 0 || vscroll > 0) {
1107 scrollRight();
1108 } else {
1109 scrollLeft();
1110 }
1111 return true;
1112 }
1113 }
1114 }
1115 }
1116 return super.onGenericMotionEvent(event);
1117 }
1118
Michael Jurkab8f06722010-10-10 15:58:46 -07001119 private void acquireVelocityTrackerAndAddMovement(MotionEvent ev) {
1120 if (mVelocityTracker == null) {
1121 mVelocityTracker = VelocityTracker.obtain();
1122 }
1123 mVelocityTracker.addMovement(ev);
1124 }
1125
1126 private void releaseVelocityTracker() {
1127 if (mVelocityTracker != null) {
1128 mVelocityTracker.recycle();
1129 mVelocityTracker = null;
1130 }
1131 }
1132
Winson Chung321e9ee2010-08-09 13:37:56 -07001133 private void onSecondaryPointerUp(MotionEvent ev) {
1134 final int pointerIndex = (ev.getAction() & MotionEvent.ACTION_POINTER_INDEX_MASK) >>
1135 MotionEvent.ACTION_POINTER_INDEX_SHIFT;
1136 final int pointerId = ev.getPointerId(pointerIndex);
1137 if (pointerId == mActivePointerId) {
1138 // This was our active pointer going up. Choose a new
1139 // active pointer and adjust accordingly.
1140 // TODO: Make this decision more intelligent.
1141 final int newPointerIndex = pointerIndex == 0 ? 1 : 0;
1142 mLastMotionX = mDownMotionX = ev.getX(newPointerIndex);
1143 mLastMotionY = ev.getY(newPointerIndex);
Winson Chungc0844aa2011-02-02 15:25:58 -08001144 mLastMotionXRemainder = 0;
Winson Chung321e9ee2010-08-09 13:37:56 -07001145 mActivePointerId = ev.getPointerId(newPointerIndex);
1146 if (mVelocityTracker != null) {
1147 mVelocityTracker.clear();
1148 }
1149 }
Jeff Brown1d0867c2010-12-02 18:27:39 -08001150 if (mTouchState == TOUCH_STATE_REST) {
1151 onWallpaperTap(ev);
1152 }
1153 }
1154
1155 protected void onWallpaperTap(MotionEvent ev) {
Winson Chung321e9ee2010-08-09 13:37:56 -07001156 }
1157
1158 @Override
1159 public void requestChildFocus(View child, View focused) {
1160 super.requestChildFocus(child, focused);
Winson Chung86f77532010-08-24 11:08:22 -07001161 int page = indexOfChild(child);
1162 if (page >= 0 && !isInTouchMode()) {
1163 snapToPage(page);
Winson Chung321e9ee2010-08-09 13:37:56 -07001164 }
1165 }
1166
Winson Chunge3193b92010-09-10 11:44:42 -07001167 protected int getChildIndexForRelativeOffset(int relativeOffset) {
1168 final int childCount = getChildCount();
Adam Cohen9c4949e2010-10-05 12:27:22 -07001169 int left;
1170 int right;
Winson Chunge3193b92010-09-10 11:44:42 -07001171 for (int i = 0; i < childCount; ++i) {
Adam Cohen9c4949e2010-10-05 12:27:22 -07001172 left = getRelativeChildOffset(i);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001173 right = (left + getScaledMeasuredWidth(getChildAt(i)));
Winson Chunge3193b92010-09-10 11:44:42 -07001174 if (left <= relativeOffset && relativeOffset <= right) {
1175 return i;
1176 }
Winson Chunge3193b92010-09-10 11:44:42 -07001177 }
1178 return -1;
1179 }
1180
Winson Chung1908d072011-02-24 18:09:44 -08001181 protected void setMinimumWidthOverride(int minimumWidth) {
1182 mMinimumWidth = minimumWidth;
1183 }
Winson Chung34b23d52011-03-18 11:29:34 -07001184 protected void resetMinimumWidthOverride() {
1185 mMinimumWidth = 0;
1186 }
Winson Chung1908d072011-02-24 18:09:44 -08001187
1188 protected int getChildWidth(int index) {
1189 return Math.max(mMinimumWidth, getChildAt(index).getMeasuredWidth());
1190 }
1191
Winson Chung321e9ee2010-08-09 13:37:56 -07001192 protected int getRelativeChildOffset(int index) {
Winson Chung1908d072011-02-24 18:09:44 -08001193 return (getMeasuredWidth() - getChildWidth(index)) / 2;
Winson Chung321e9ee2010-08-09 13:37:56 -07001194 }
1195
1196 protected int getChildOffset(int index) {
1197 if (getChildCount() == 0)
1198 return 0;
1199
1200 int offset = getRelativeChildOffset(0);
1201 for (int i = 0; i < index; ++i) {
Michael Jurkad3ef3062010-11-23 16:23:58 -08001202 offset += getScaledMeasuredWidth(getChildAt(i)) + mPageSpacing;
Winson Chung321e9ee2010-08-09 13:37:56 -07001203 }
1204 return offset;
1205 }
1206
Michael Jurkad3ef3062010-11-23 16:23:58 -08001207 protected int getScaledMeasuredWidth(View child) {
Winson Chung1908d072011-02-24 18:09:44 -08001208 return (int) (Math.max(mMinimumWidth, child.getMeasuredWidth()) * mLayoutScale + 0.5f);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001209 }
1210
Adam Cohend19d3ca2010-09-15 14:43:42 -07001211 int getPageNearestToCenterOfScreen() {
Winson Chung321e9ee2010-08-09 13:37:56 -07001212 int minDistanceFromScreenCenter = getMeasuredWidth();
1213 int minDistanceFromScreenCenterIndex = -1;
1214 int screenCenter = mScrollX + (getMeasuredWidth() / 2);
1215 final int childCount = getChildCount();
1216 for (int i = 0; i < childCount; ++i) {
Michael Jurka0142d492010-08-25 17:46:15 -07001217 View layout = (View) getChildAt(i);
Michael Jurkad3ef3062010-11-23 16:23:58 -08001218 int childWidth = getScaledMeasuredWidth(layout);
Winson Chung321e9ee2010-08-09 13:37:56 -07001219 int halfChildWidth = (childWidth / 2);
1220 int childCenter = getChildOffset(i) + halfChildWidth;
1221 int distanceFromScreenCenter = Math.abs(childCenter - screenCenter);
1222 if (distanceFromScreenCenter < minDistanceFromScreenCenter) {
1223 minDistanceFromScreenCenter = distanceFromScreenCenter;
1224 minDistanceFromScreenCenterIndex = i;
1225 }
1226 }
Adam Cohend19d3ca2010-09-15 14:43:42 -07001227 return minDistanceFromScreenCenterIndex;
1228 }
1229
1230 protected void snapToDestination() {
1231 snapToPage(getPageNearestToCenterOfScreen(), PAGE_SNAP_ANIMATION_DURATION);
Winson Chung321e9ee2010-08-09 13:37:56 -07001232 }
1233
Adam Cohene0f66b52010-11-23 15:06:07 -08001234 private static class ScrollInterpolator implements Interpolator {
1235 public ScrollInterpolator() {
1236 }
1237
1238 public float getInterpolation(float t) {
1239 t -= 1.0f;
1240 return t*t*t*t*t + 1;
1241 }
1242 }
1243
1244 // We want the duration of the page snap animation to be influenced by the distance that
1245 // the screen has to travel, however, we don't want this duration to be effected in a
1246 // purely linear fashion. Instead, we use this method to moderate the effect that the distance
1247 // of travel has on the overall snap duration.
1248 float distanceInfluenceForSnapDuration(float f) {
1249 f -= 0.5f; // center the values about 0.
1250 f *= 0.3f * Math.PI / 2.0f;
1251 return (float) Math.sin(f);
1252 }
1253
Michael Jurka0142d492010-08-25 17:46:15 -07001254 protected void snapToPageWithVelocity(int whichPage, int velocity) {
Adam Cohene0f66b52010-11-23 15:06:07 -08001255 whichPage = Math.max(0, Math.min(whichPage, getChildCount() - 1));
1256 int halfScreenSize = getMeasuredWidth() / 2;
1257
1258 final int newX = getChildOffset(whichPage) - getRelativeChildOffset(whichPage);
1259 int delta = newX - mUnboundedScrollX;
1260 int duration = 0;
1261
1262 if (Math.abs(velocity) < MIN_FLING_VELOCITY) {
1263 // If the velocity is low enough, then treat this more as an automatic page advance
1264 // as opposed to an apparent physical response to flinging
1265 snapToPage(whichPage, PAGE_SNAP_ANIMATION_DURATION);
1266 return;
1267 }
1268
1269 // Here we compute a "distance" that will be used in the computation of the overall
1270 // snap duration. This is a function of the actual distance that needs to be traveled;
1271 // we keep this value close to half screen size in order to reduce the variance in snap
1272 // duration as a function of the distance the page needs to travel.
1273 float distanceRatio = 1.0f * Math.abs(delta) / 2 * halfScreenSize;
1274 float distance = halfScreenSize + halfScreenSize *
1275 distanceInfluenceForSnapDuration(distanceRatio);
1276
1277 velocity = Math.abs(velocity);
1278 velocity = Math.max(MINIMUM_SNAP_VELOCITY, velocity);
1279
1280 // we want the page's snap velocity to approximately match the velocity at which the
1281 // user flings, so we scale the duration by a value near to the derivative of the scroll
1282 // interpolator at zero, ie. 5. We use 6 to make it a little slower.
1283 duration = 6 * Math.round(1000 * Math.abs(distance / velocity));
1284
1285 snapToPage(whichPage, delta, duration);
Michael Jurka0142d492010-08-25 17:46:15 -07001286 }
1287
1288 protected void snapToPage(int whichPage) {
Winson Chung5f2aa4e2010-08-20 14:49:25 -07001289 snapToPage(whichPage, PAGE_SNAP_ANIMATION_DURATION);
Winson Chung321e9ee2010-08-09 13:37:56 -07001290 }
1291
Michael Jurka0142d492010-08-25 17:46:15 -07001292 protected void snapToPage(int whichPage, int duration) {
Winson Chung86f77532010-08-24 11:08:22 -07001293 whichPage = Math.max(0, Math.min(whichPage, getPageCount() - 1));
Winson Chung321e9ee2010-08-09 13:37:56 -07001294
Winson Chung86f77532010-08-24 11:08:22 -07001295 int newX = getChildOffset(whichPage) - getRelativeChildOffset(whichPage);
Adam Cohen68d73932010-11-15 10:50:58 -08001296 final int sX = mUnboundedScrollX;
Winson Chung321e9ee2010-08-09 13:37:56 -07001297 final int delta = newX - sX;
Michael Jurka0142d492010-08-25 17:46:15 -07001298 snapToPage(whichPage, delta, duration);
1299 }
1300
1301 protected void snapToPage(int whichPage, int delta, int duration) {
1302 mNextPage = whichPage;
1303
1304 View focusedChild = getFocusedChild();
1305 if (focusedChild != null && whichPage != mCurrentPage &&
1306 focusedChild == getChildAt(mCurrentPage)) {
1307 focusedChild.clearFocus();
1308 }
1309
1310 pageBeginMoving();
Winson Chung321e9ee2010-08-09 13:37:56 -07001311 awakenScrollBars(duration);
1312 if (duration == 0) {
1313 duration = Math.abs(delta);
1314 }
1315
1316 if (!mScroller.isFinished()) mScroller.abortAnimation();
Adam Cohen68d73932010-11-15 10:50:58 -08001317 mScroller.startScroll(mUnboundedScrollX, 0, delta, 0, duration);
Winson Chung80baf5a2010-08-09 16:03:15 -07001318
1319 // only load some associated pages
Winson Chung86f77532010-08-24 11:08:22 -07001320 loadAssociatedPages(mNextPage);
Michael Jurka0142d492010-08-25 17:46:15 -07001321 notifyPageSwitchListener();
Winson Chung321e9ee2010-08-09 13:37:56 -07001322 invalidate();
1323 }
1324
Winson Chung321e9ee2010-08-09 13:37:56 -07001325 public void scrollLeft() {
1326 if (mScroller.isFinished()) {
Winson Chung86f77532010-08-24 11:08:22 -07001327 if (mCurrentPage > 0) snapToPage(mCurrentPage - 1);
Winson Chung321e9ee2010-08-09 13:37:56 -07001328 } else {
Winson Chung86f77532010-08-24 11:08:22 -07001329 if (mNextPage > 0) snapToPage(mNextPage - 1);
Winson Chung321e9ee2010-08-09 13:37:56 -07001330 }
1331 }
1332
1333 public void scrollRight() {
1334 if (mScroller.isFinished()) {
Winson Chung86f77532010-08-24 11:08:22 -07001335 if (mCurrentPage < getChildCount() -1) snapToPage(mCurrentPage + 1);
Winson Chung321e9ee2010-08-09 13:37:56 -07001336 } else {
Winson Chung86f77532010-08-24 11:08:22 -07001337 if (mNextPage < getChildCount() -1) snapToPage(mNextPage + 1);
Winson Chung321e9ee2010-08-09 13:37:56 -07001338 }
1339 }
1340
Winson Chung86f77532010-08-24 11:08:22 -07001341 public int getPageForView(View v) {
Winson Chung321e9ee2010-08-09 13:37:56 -07001342 int result = -1;
1343 if (v != null) {
1344 ViewParent vp = v.getParent();
1345 int count = getChildCount();
1346 for (int i = 0; i < count; i++) {
1347 if (vp == getChildAt(i)) {
1348 return i;
1349 }
1350 }
1351 }
1352 return result;
1353 }
1354
1355 /**
1356 * @return True is long presses are still allowed for the current touch
1357 */
1358 public boolean allowLongPress() {
1359 return mAllowLongPress;
1360 }
1361
Michael Jurka0142d492010-08-25 17:46:15 -07001362 /**
1363 * Set true to allow long-press events to be triggered, usually checked by
1364 * {@link Launcher} to accept or block dpad-initiated long-presses.
1365 */
1366 public void setAllowLongPress(boolean allowLongPress) {
1367 mAllowLongPress = allowLongPress;
1368 }
1369
Winson Chung321e9ee2010-08-09 13:37:56 -07001370 public static class SavedState extends BaseSavedState {
Winson Chung86f77532010-08-24 11:08:22 -07001371 int currentPage = -1;
Winson Chung321e9ee2010-08-09 13:37:56 -07001372
1373 SavedState(Parcelable superState) {
1374 super(superState);
1375 }
1376
1377 private SavedState(Parcel in) {
1378 super(in);
Winson Chung86f77532010-08-24 11:08:22 -07001379 currentPage = in.readInt();
Winson Chung321e9ee2010-08-09 13:37:56 -07001380 }
1381
1382 @Override
1383 public void writeToParcel(Parcel out, int flags) {
1384 super.writeToParcel(out, flags);
Winson Chung86f77532010-08-24 11:08:22 -07001385 out.writeInt(currentPage);
Winson Chung321e9ee2010-08-09 13:37:56 -07001386 }
1387
1388 public static final Parcelable.Creator<SavedState> CREATOR =
1389 new Parcelable.Creator<SavedState>() {
1390 public SavedState createFromParcel(Parcel in) {
1391 return new SavedState(in);
1392 }
1393
1394 public SavedState[] newArray(int size) {
1395 return new SavedState[size];
1396 }
1397 };
1398 }
1399
Winson Chung86f77532010-08-24 11:08:22 -07001400 public void loadAssociatedPages(int page) {
Michael Jurka0142d492010-08-25 17:46:15 -07001401 if (mContentIsRefreshable) {
1402 final int count = getChildCount();
1403 if (page < count) {
Winson Chunge3193b92010-09-10 11:44:42 -07001404 int lowerPageBound = getAssociatedLowerPageBound(page);
1405 int upperPageBound = getAssociatedUpperPageBound(page);
Michael Jurka0142d492010-08-25 17:46:15 -07001406 for (int i = 0; i < count; ++i) {
Michael Jurka8245a862011-02-01 17:53:59 -08001407 Page layout = (Page) getChildAt(i);
1408 final int childCount = layout.getPageChildCount();
Michael Jurka0142d492010-08-25 17:46:15 -07001409 if (lowerPageBound <= i && i <= upperPageBound) {
1410 if (mDirtyPageContent.get(i)) {
1411 syncPageItems(i);
1412 mDirtyPageContent.set(i, false);
1413 }
1414 } else {
1415 if (childCount > 0) {
Michael Jurka8245a862011-02-01 17:53:59 -08001416 layout.removeAllViewsOnPage();
Michael Jurka0142d492010-08-25 17:46:15 -07001417 }
1418 mDirtyPageContent.set(i, true);
Winson Chung86f77532010-08-24 11:08:22 -07001419 }
Winson Chung80baf5a2010-08-09 16:03:15 -07001420 }
1421 }
Winson Chung80baf5a2010-08-09 16:03:15 -07001422 }
1423 }
1424
Winson Chunge3193b92010-09-10 11:44:42 -07001425 protected int getAssociatedLowerPageBound(int page) {
1426 return Math.max(0, page - 1);
1427 }
1428 protected int getAssociatedUpperPageBound(int page) {
1429 final int count = getChildCount();
1430 return Math.min(page + 1, count - 1);
1431 }
1432
Winson Chung5f2aa4e2010-08-20 14:49:25 -07001433 protected void startChoiceMode(int mode, ActionMode.Callback callback) {
Patrick Dubroy430c53b2010-09-08 16:01:19 -07001434 if (isChoiceMode(CHOICE_MODE_NONE)) {
1435 mChoiceMode = mode;
1436 mActionMode = startActionMode(callback);
1437 }
Winson Chung5f2aa4e2010-08-20 14:49:25 -07001438 }
1439
Patrick Dubroy2b9ff372010-09-07 17:49:27 -07001440 public void endChoiceMode() {
Winson Chung5f2aa4e2010-08-20 14:49:25 -07001441 if (!isChoiceMode(CHOICE_MODE_NONE)) {
Winson Chung5f2aa4e2010-08-20 14:49:25 -07001442 mChoiceMode = CHOICE_MODE_NONE;
1443 resetCheckedGrandchildren();
Michael Jurkae17e19c2010-09-28 11:01:39 -07001444 if (mActionMode != null) mActionMode.finish();
Patrick Dubroy9f7aec82010-09-06 11:03:37 -07001445 mActionMode = null;
Winson Chung5f2aa4e2010-08-20 14:49:25 -07001446 }
1447 }
1448
1449 protected boolean isChoiceMode(int mode) {
1450 return mChoiceMode == mode;
1451 }
1452
1453 protected ArrayList<Checkable> getCheckedGrandchildren() {
1454 ArrayList<Checkable> checked = new ArrayList<Checkable>();
1455 final int childCount = getChildCount();
1456 for (int i = 0; i < childCount; ++i) {
Michael Jurka8245a862011-02-01 17:53:59 -08001457 Page layout = (Page) getChildAt(i);
1458 final int grandChildCount = layout.getPageChildCount();
Winson Chung5f2aa4e2010-08-20 14:49:25 -07001459 for (int j = 0; j < grandChildCount; ++j) {
Michael Jurka8245a862011-02-01 17:53:59 -08001460 final View v = layout.getChildOnPageAt(j);
Patrick Dubroy9f7aec82010-09-06 11:03:37 -07001461 if (v instanceof Checkable && ((Checkable) v).isChecked()) {
Winson Chung5f2aa4e2010-08-20 14:49:25 -07001462 checked.add((Checkable) v);
1463 }
1464 }
1465 }
1466 return checked;
1467 }
1468
Patrick Dubroy9f7aec82010-09-06 11:03:37 -07001469 /**
1470 * If in CHOICE_MODE_SINGLE and an item is checked, returns that item.
1471 * Otherwise, returns null.
1472 */
1473 protected Checkable getSingleCheckedGrandchild() {
Patrick Dubroy6f133422011-02-24 12:16:12 -08001474 if (mChoiceMode != CHOICE_MODE_MULTIPLE) {
Patrick Dubroy9f7aec82010-09-06 11:03:37 -07001475 final int childCount = getChildCount();
1476 for (int i = 0; i < childCount; ++i) {
Michael Jurka8245a862011-02-01 17:53:59 -08001477 Page layout = (Page) getChildAt(i);
1478 final int grandChildCount = layout.getPageChildCount();
Patrick Dubroy9f7aec82010-09-06 11:03:37 -07001479 for (int j = 0; j < grandChildCount; ++j) {
Michael Jurka8245a862011-02-01 17:53:59 -08001480 final View v = layout.getChildOnPageAt(j);
Patrick Dubroy9f7aec82010-09-06 11:03:37 -07001481 if (v instanceof Checkable && ((Checkable) v).isChecked()) {
1482 return (Checkable) v;
1483 }
1484 }
1485 }
1486 }
1487 return null;
1488 }
1489
Winson Chung5f2aa4e2010-08-20 14:49:25 -07001490 protected void resetCheckedGrandchildren() {
1491 // loop through children, and set all of their children to _not_ be checked
1492 final ArrayList<Checkable> checked = getCheckedGrandchildren();
1493 for (int i = 0; i < checked.size(); ++i) {
1494 final Checkable c = checked.get(i);
1495 c.setChecked(false);
1496 }
1497 }
1498
Winson Chunga12a2502010-12-20 14:41:35 -08001499 public void setRestorePage(int restorePage) {
1500 mRestorePage = restorePage;
1501 }
1502
Winson Chung86f77532010-08-24 11:08:22 -07001503 /**
1504 * This method is called ONLY to synchronize the number of pages that the paged view has.
1505 * To actually fill the pages with information, implement syncPageItems() below. It is
1506 * guaranteed that syncPageItems() will be called for a particular page before it is shown,
1507 * and therefore, individual page items do not need to be updated in this method.
1508 */
Winson Chung321e9ee2010-08-09 13:37:56 -07001509 public abstract void syncPages();
Winson Chung86f77532010-08-24 11:08:22 -07001510
1511 /**
1512 * This method is called to synchronize the items that are on a particular page. If views on
1513 * the page can be reused, then they should be updated within this method.
1514 */
Winson Chung321e9ee2010-08-09 13:37:56 -07001515 public abstract void syncPageItems(int page);
Winson Chung86f77532010-08-24 11:08:22 -07001516
Winson Chung321e9ee2010-08-09 13:37:56 -07001517 public void invalidatePageData() {
Michael Jurka0142d492010-08-25 17:46:15 -07001518 if (mContentIsRefreshable) {
1519 // Update all the pages
1520 syncPages();
Winson Chung86f77532010-08-24 11:08:22 -07001521
Michael Jurka0142d492010-08-25 17:46:15 -07001522 // Mark each of the pages as dirty
1523 final int count = getChildCount();
1524 mDirtyPageContent.clear();
1525 for (int i = 0; i < count; ++i) {
1526 mDirtyPageContent.add(true);
1527 }
1528
Winson Chunga12a2502010-12-20 14:41:35 -08001529 // Use the restore page if necessary
1530 if (mRestorePage > -1) {
1531 mCurrentPage = mRestorePage;
1532 mRestorePage = -1;
1533 }
1534
Michael Jurka0142d492010-08-25 17:46:15 -07001535 // Load any pages that are necessary for the current window of views
1536 loadAssociatedPages(mCurrentPage);
1537 mDirtyPageAlpha = true;
Winson Chungb0b2e6f2010-10-12 17:49:56 -07001538 updateAdjacentPagesAlpha();
Michael Jurka0142d492010-08-25 17:46:15 -07001539 requestLayout();
Winson Chung86f77532010-08-24 11:08:22 -07001540 }
Winson Chung321e9ee2010-08-09 13:37:56 -07001541 }
1542}