Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1 | /* |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2 | * Copyright (C) 2012 The Android Open Source Project |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 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 | |
Daniel Sandler | 325dc23 | 2013-06-05 22:57:57 -0400 | [diff] [blame] | 17 | package com.android.launcher3; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 18 | |
Winson Chung | 228a0fa | 2011-01-26 22:14:13 -0800 | [diff] [blame] | 19 | import android.animation.Animator; |
Winson Chung | 228a0fa | 2011-01-26 22:14:13 -0800 | [diff] [blame] | 20 | import android.animation.AnimatorListenerAdapter; |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 21 | import android.animation.AnimatorSet; |
| 22 | import android.animation.ObjectAnimator; |
| 23 | import android.animation.TimeInterpolator; |
Winson Chung | bb6f6a5 | 2011-07-25 17:55:44 -0700 | [diff] [blame] | 24 | import android.animation.ValueAnimator; |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 25 | import android.animation.ValueAnimator.AnimatorUpdateListener; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 26 | import android.content.Context; |
Adam Cohen | 9c4949e | 2010-10-05 12:27:22 -0700 | [diff] [blame] | 27 | import android.content.res.TypedArray; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 28 | import android.graphics.Canvas; |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 29 | import android.graphics.Matrix; |
| 30 | import android.graphics.PointF; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 31 | import android.graphics.Rect; |
Svetoslav Ganov | 08055f6 | 2012-05-15 11:06:36 -0700 | [diff] [blame] | 32 | import android.os.Bundle; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 33 | import android.os.Parcel; |
| 34 | import android.os.Parcelable; |
Adam Cohen | 5380521 | 2013-10-01 10:39:23 -0700 | [diff] [blame] | 35 | import android.support.v4.view.accessibility.AccessibilityEventCompat; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 36 | import android.util.AttributeSet; |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 37 | import android.util.DisplayMetrics; |
Winson Chung | 785d2eb | 2011-04-14 16:08:02 -0700 | [diff] [blame] | 38 | import android.util.Log; |
Winson Chung | 185d716 | 2011-02-28 13:47:29 -0800 | [diff] [blame] | 39 | import android.view.InputDevice; |
| 40 | import android.view.KeyEvent; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 41 | import android.view.MotionEvent; |
| 42 | import android.view.VelocityTracker; |
| 43 | import android.view.View; |
| 44 | import android.view.ViewConfiguration; |
| 45 | import android.view.ViewGroup; |
| 46 | import android.view.ViewParent; |
Winson Chung | 6a0f57d | 2011-06-29 20:10:49 -0700 | [diff] [blame] | 47 | import android.view.accessibility.AccessibilityEvent; |
Winson Chung | c27d1bb | 2011-09-29 12:07:42 -0700 | [diff] [blame] | 48 | import android.view.accessibility.AccessibilityManager; |
Winson Chung | 6a0f57d | 2011-06-29 20:10:49 -0700 | [diff] [blame] | 49 | import android.view.accessibility.AccessibilityNodeInfo; |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 50 | import android.view.animation.AnimationUtils; |
| 51 | import android.view.animation.DecelerateInterpolator; |
Adam Cohen | e0f66b5 | 2010-11-23 15:06:07 -0800 | [diff] [blame] | 52 | import android.view.animation.Interpolator; |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 53 | import android.view.animation.LinearInterpolator; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 54 | import android.widget.Scroller; |
| 55 | |
Winson Chung | 6a0f57d | 2011-06-29 20:10:49 -0700 | [diff] [blame] | 56 | import java.util.ArrayList; |
| 57 | |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 58 | interface Page { |
| 59 | public int getPageChildCount(); |
| 60 | public View getChildOnPageAt(int i); |
| 61 | public void removeAllViewsOnPage(); |
| 62 | public void removeViewOnPageAt(int i); |
| 63 | public int indexOfChildOnPage(View v); |
| 64 | } |
| 65 | |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 66 | /** |
| 67 | * An abstraction of the original Workspace which supports browsing through a |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 68 | * sequential list of "pages" |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 69 | */ |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 70 | public abstract class PagedView extends ViewGroup implements ViewGroup.OnHierarchyChangeListener { |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 71 | private static final String TAG = "PagedView"; |
Winson Chung | 785d2eb | 2011-04-14 16:08:02 -0700 | [diff] [blame] | 72 | private static final boolean DEBUG = false; |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 73 | protected static final int INVALID_PAGE = -1; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 74 | |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 75 | // the min drag distance for a fling to register, to prevent random page shifts |
Winson Chung | 9cfd25f | 2010-10-24 16:09:28 -0700 | [diff] [blame] | 76 | private static final int MIN_LENGTH_FOR_FLING = 25; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 77 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 78 | protected static final int PAGE_SNAP_ANIMATION_DURATION = 750; |
Winson Chung | f0c6ae0 | 2012-03-21 16:10:31 -0700 | [diff] [blame] | 79 | protected static final int SLOW_PAGE_SNAP_ANIMATION_DURATION = 950; |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 80 | protected static final float NANOTIME_DIV = 1000000000.0f; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 81 | |
Adam Cohen | b5ba097 | 2011-09-07 18:02:31 -0700 | [diff] [blame] | 82 | private static final float OVERSCROLL_ACCELERATE_FACTOR = 2; |
Winson Chung | b26f3d6 | 2011-06-02 10:49:29 -0700 | [diff] [blame] | 83 | private static final float OVERSCROLL_DAMP_FACTOR = 0.14f; |
Winson Chung | 867ca62 | 2012-02-21 15:48:35 -0800 | [diff] [blame] | 84 | |
Adam Cohen | b64cb5a | 2011-02-15 13:53:42 -0800 | [diff] [blame] | 85 | private static final float RETURN_TO_ORIGINAL_PAGE_THRESHOLD = 0.33f; |
Adam Cohen | 00481b3 | 2011-11-18 12:03:48 -0800 | [diff] [blame] | 86 | // The page is moved more than halfway, automatically move to the next page on touch up. |
| 87 | private static final float SIGNIFICANT_MOVE_THRESHOLD = 0.4f; |
Adam Cohen | 68d7393 | 2010-11-15 10:50:58 -0800 | [diff] [blame] | 88 | |
Adam Cohen | 265b9a6 | 2011-12-07 14:37:18 -0800 | [diff] [blame] | 89 | // The following constants need to be scaled based on density. The scaled versions will be |
| 90 | // assigned to the corresponding member variables below. |
| 91 | private static final int FLING_THRESHOLD_VELOCITY = 500; |
| 92 | private static final int MIN_SNAP_VELOCITY = 1500; |
| 93 | private static final int MIN_FLING_VELOCITY = 250; |
| 94 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 95 | // We are disabling touch interaction of the widget region for factory ROM. |
| 96 | private static final boolean DISABLE_TOUCH_INTERACTION = false; |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 97 | private static final boolean DISABLE_TOUCH_SIDE_PAGES = true; |
Adam Cohen | dedbd96 | 2013-07-11 14:21:49 -0700 | [diff] [blame] | 98 | private static final boolean DISABLE_FLING_TO_DELETE = true; |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 99 | |
Adam Cohen | 21cd002 | 2013-10-09 18:57:02 -0700 | [diff] [blame] | 100 | public static final int INVALID_RESTORE_PAGE = -1001; |
| 101 | |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 102 | private boolean mFreeScroll = false; |
| 103 | private int mFreeScrollMinScrollX = -1; |
| 104 | private int mFreeScrollMaxScrollX = -1; |
| 105 | |
Winson Chung | 8aad610 | 2012-05-11 16:27:49 -0700 | [diff] [blame] | 106 | static final int AUTOMATIC_PAGE_SPACING = -1; |
| 107 | |
Adam Cohen | 265b9a6 | 2011-12-07 14:37:18 -0800 | [diff] [blame] | 108 | protected int mFlingThresholdVelocity; |
| 109 | protected int mMinFlingVelocity; |
| 110 | protected int mMinSnapVelocity; |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 111 | |
Adam Cohen | b5ba097 | 2011-09-07 18:02:31 -0700 | [diff] [blame] | 112 | protected float mDensity; |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 113 | protected float mSmoothingTime; |
| 114 | protected float mTouchX; |
| 115 | |
| 116 | protected boolean mFirstLayout = true; |
Adam Cohen | 410f3cd | 2013-09-22 12:09:32 -0700 | [diff] [blame] | 117 | private int mNormalChildHeight; |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 118 | |
| 119 | protected int mCurrentPage; |
Adam Cohen | 21cd002 | 2013-10-09 18:57:02 -0700 | [diff] [blame] | 120 | protected int mRestorePage = INVALID_RESTORE_PAGE; |
Adam Cohen | f698c6e | 2013-07-17 18:44:25 -0700 | [diff] [blame] | 121 | protected int mChildCountOnLastLayout; |
Adam Cohen | e61a9a2 | 2013-06-11 15:45:31 -0700 | [diff] [blame] | 122 | |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 123 | protected int mNextPage = INVALID_PAGE; |
Adam Cohen | 68d7393 | 2010-11-15 10:50:58 -0800 | [diff] [blame] | 124 | protected int mMaxScrollX; |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 125 | protected Scroller mScroller; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 126 | private VelocityTracker mVelocityTracker; |
Adam Cohen | 3b185e2 | 2013-10-29 14:45:58 -0700 | [diff] [blame] | 127 | private int mPageSpacing = 0; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 128 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 129 | private float mParentDownMotionX; |
| 130 | private float mParentDownMotionY; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 131 | private float mDownMotionX; |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 132 | private float mDownMotionY; |
| 133 | private float mDownScrollX; |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 134 | private float mDragViewBaselineLeft; |
Michael Jurka | 7426c42 | 2010-11-11 15:23:47 -0800 | [diff] [blame] | 135 | protected float mLastMotionX; |
Winson Chung | c0844aa | 2011-02-02 15:25:58 -0800 | [diff] [blame] | 136 | protected float mLastMotionXRemainder; |
Michael Jurka | 7426c42 | 2010-11-11 15:23:47 -0800 | [diff] [blame] | 137 | protected float mLastMotionY; |
Adam Cohen | aefd4e1 | 2011-02-14 16:39:38 -0800 | [diff] [blame] | 138 | protected float mTotalMotionX; |
Adam Cohen | f34bab5 | 2010-09-30 14:11:56 -0700 | [diff] [blame] | 139 | private int mLastScreenCenter = -1; |
Adam Cohen | edb4076 | 2013-07-18 16:45:45 -0700 | [diff] [blame] | 140 | |
Adam Cohen | dbdff6b | 2013-09-18 19:09:15 -0700 | [diff] [blame] | 141 | private boolean mCancelTap; |
| 142 | |
Adam Cohen | edb4076 | 2013-07-18 16:45:45 -0700 | [diff] [blame] | 143 | private int[] mPageScrolls; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 144 | |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 145 | protected final static int TOUCH_STATE_REST = 0; |
| 146 | protected final static int TOUCH_STATE_SCROLLING = 1; |
| 147 | protected final static int TOUCH_STATE_PREV_PAGE = 2; |
| 148 | protected final static int TOUCH_STATE_NEXT_PAGE = 3; |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 149 | protected final static int TOUCH_STATE_REORDERING = 4; |
| 150 | |
Adam Cohen | e45440e | 2010-10-14 18:33:38 -0700 | [diff] [blame] | 151 | protected final static float ALPHA_QUANTIZE_LEVEL = 0.0001f; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 152 | |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 153 | protected int mTouchState = TOUCH_STATE_REST; |
Adam Cohen | 2591f6a | 2011-10-25 14:36:40 -0700 | [diff] [blame] | 154 | protected boolean mForceScreenScrolled = false; |
Adam Cohen | cae7f57 | 2013-11-04 14:42:52 -0800 | [diff] [blame] | 155 | private boolean mScrollAbortedFromIntercept = false; |
| 156 | |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 157 | |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 158 | protected OnLongClickListener mLongClickListener; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 159 | |
Michael Jurka | 7426c42 | 2010-11-11 15:23:47 -0800 | [diff] [blame] | 160 | protected int mTouchSlop; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 161 | private int mPagingTouchSlop; |
| 162 | private int mMaximumVelocity; |
Adam Cohen | 9c4949e | 2010-10-05 12:27:22 -0700 | [diff] [blame] | 163 | protected int mPageLayoutPaddingTop; |
| 164 | protected int mPageLayoutPaddingBottom; |
| 165 | protected int mPageLayoutPaddingLeft; |
| 166 | protected int mPageLayoutPaddingRight; |
Winson Chung | df4b83d | 2010-10-20 17:49:27 -0700 | [diff] [blame] | 167 | protected int mPageLayoutWidthGap; |
| 168 | protected int mPageLayoutHeightGap; |
Michael Jurka | 87b1490 | 2011-05-25 22:13:09 -0700 | [diff] [blame] | 169 | protected int mCellCountX = 0; |
| 170 | protected int mCellCountY = 0; |
Winson Chung | 7da1025 | 2010-10-28 16:07:04 -0700 | [diff] [blame] | 171 | protected boolean mCenterPagesVertically; |
Adam Cohen | 68d7393 | 2010-11-15 10:50:58 -0800 | [diff] [blame] | 172 | protected boolean mAllowOverScroll = true; |
| 173 | protected int mUnboundedScrollX; |
Michael Jurka | dde558b | 2011-11-09 22:09:06 -0800 | [diff] [blame] | 174 | protected int[] mTempVisiblePagesRange = new int[2]; |
Michael Jurka | 5e368ff | 2012-05-14 23:13:15 -0700 | [diff] [blame] | 175 | protected boolean mForceDrawAllChildrenNextFrame; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 176 | |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 177 | // mOverScrollX is equal to getScrollX() when we're within the normal scroll range. Otherwise |
Adam Cohen | ebea84d | 2011-11-09 17:20:41 -0800 | [diff] [blame] | 178 | // it is equal to the scaled overscroll position. We use a separate value so as to prevent |
| 179 | // the screens from continuing to translate beyond the normal bounds. |
| 180 | protected int mOverScrollX; |
| 181 | |
Michael Jurka | 5f1c509 | 2010-09-03 14:15:02 -0700 | [diff] [blame] | 182 | protected static final int INVALID_POINTER = -1; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 183 | |
Michael Jurka | 5f1c509 | 2010-09-03 14:15:02 -0700 | [diff] [blame] | 184 | protected int mActivePointerId = INVALID_POINTER; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 185 | |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 186 | private PageSwitchListener mPageSwitchListener; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 187 | |
Michael Jurka | e326f18 | 2011-11-21 14:05:46 -0800 | [diff] [blame] | 188 | protected ArrayList<Boolean> mDirtyPageContent; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 189 | |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 190 | // If true, syncPages and syncPageItems will be called to refresh pages |
| 191 | protected boolean mContentIsRefreshable = true; |
| 192 | |
| 193 | // If true, modify alpha of neighboring pages as user scrolls left/right |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 194 | protected boolean mFadeInAdjacentScreens = false; |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 195 | |
| 196 | // It true, use a different slop parameter (pagingTouchSlop = 2 * touchSlop) for deciding |
| 197 | // to switch to a new page |
| 198 | protected boolean mUsePagingTouchSlop = true; |
| 199 | |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 200 | // If true, the subclass should directly update scrollX itself in its computeScroll method |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 201 | // (SmoothPagedView does this) |
| 202 | protected boolean mDeferScrollUpdate = false; |
Winson Chung | 9c0565f | 2013-07-19 13:49:06 -0700 | [diff] [blame] | 203 | protected boolean mDeferLoadAssociatedPagesUntilScrollCompletes = false; |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 204 | |
Patrick Dubroy | 1262e36 | 2010-10-06 15:49:50 -0700 | [diff] [blame] | 205 | protected boolean mIsPageMoving = false; |
| 206 | |
Winson Chung | f0ea4d3 | 2011-06-06 14:27:16 -0700 | [diff] [blame] | 207 | // All syncs and layout passes are deferred until data is ready. |
| 208 | protected boolean mIsDataReady = false; |
| 209 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 210 | protected boolean mAllowLongPress = true; |
| 211 | |
Winson Chung | d2be381 | 2013-07-16 11:11:32 -0700 | [diff] [blame] | 212 | // Page Indicator |
| 213 | private int mPageIndicatorViewId; |
| 214 | private PageIndicator mPageIndicator; |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 215 | private boolean mAllowPagedViewAnimations = true; |
Winson Chung | 007c698 | 2011-06-14 13:27:53 -0700 | [diff] [blame] | 216 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 217 | // The viewport whether the pages are to be contained (the actual view may be larger than the |
| 218 | // viewport) |
| 219 | private Rect mViewport = new Rect(); |
| 220 | |
| 221 | // Reordering |
| 222 | // We use the min scale to determine how much to expand the actually PagedView measured |
| 223 | // dimensions such that when we are zoomed out, the view is not clipped |
| 224 | private int REORDERING_DROP_REPOSITION_DURATION = 200; |
| 225 | protected int REORDERING_REORDER_REPOSITION_DURATION = 300; |
| 226 | protected int REORDERING_ZOOM_IN_OUT_DURATION = 250; |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 227 | private int REORDERING_SIDE_PAGE_HOVER_TIMEOUT = 80; |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 228 | private float mMinScale = 1f; |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 229 | private boolean mUseMinScale = false; |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 230 | protected View mDragView; |
| 231 | protected AnimatorSet mZoomInOutAnim; |
| 232 | private Runnable mSidePageHoverRunnable; |
| 233 | private int mSidePageHoverIndex = -1; |
| 234 | // This variable's scope is only for the duration of startReordering() and endReordering() |
| 235 | private boolean mReorderingStarted = false; |
| 236 | // This variable's scope is for the duration of startReordering() and after the zoomIn() |
| 237 | // animation after endReordering() |
| 238 | private boolean mIsReordering; |
| 239 | // The runnable that settles the page after snapToPage and animateDragViewToOriginalPosition |
| 240 | private int NUM_ANIMATIONS_RUNNING_BEFORE_ZOOM_OUT = 2; |
| 241 | private int mPostReorderingPreZoomInRemainingAnimationCount; |
| 242 | private Runnable mPostReorderingPreZoomInRunnable; |
| 243 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 244 | // Convenience/caching |
| 245 | private Matrix mTmpInvMatrix = new Matrix(); |
| 246 | private float[] mTmpPoint = new float[2]; |
Winson Chung | c9ca298 | 2013-07-19 12:07:38 -0700 | [diff] [blame] | 247 | private int[] mTmpIntPoint = new int[2]; |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 248 | private Rect mTmpRect = new Rect(); |
| 249 | private Rect mAltTmpRect = new Rect(); |
| 250 | |
| 251 | // Fling to delete |
| 252 | private int FLING_TO_DELETE_FADE_OUT_DURATION = 350; |
| 253 | private float FLING_TO_DELETE_FRICTION = 0.035f; |
| 254 | // The degrees specifies how much deviation from the up vector to still consider a fling "up" |
| 255 | private float FLING_TO_DELETE_MAX_FLING_DEGREES = 65f; |
| 256 | protected int mFlingToDeleteThresholdVelocity = -1400; |
| 257 | // Drag to delete |
| 258 | private boolean mDeferringForDelete = false; |
| 259 | private int DELETE_SLIDE_IN_SIDE_PAGE_DURATION = 250; |
| 260 | private int DRAG_TO_DELETE_FADE_OUT_DURATION = 350; |
| 261 | |
| 262 | // Drop to delete |
| 263 | private View mDeleteDropTarget; |
| 264 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 265 | // Bouncer |
| 266 | private boolean mTopAlignPageWhenShrinkingForBouncer = false; |
Winson Chung | b44b524 | 2011-06-13 11:32:14 -0700 | [diff] [blame] | 267 | |
John Spurlock | 77e1f47 | 2013-09-11 10:09:51 -0400 | [diff] [blame] | 268 | protected final Rect mInsets = new Rect(); |
| 269 | |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 270 | public interface PageSwitchListener { |
| 271 | void onPageSwitch(View newPage, int newPageIndex); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 272 | } |
| 273 | |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 274 | public PagedView(Context context) { |
| 275 | this(context, null); |
| 276 | } |
| 277 | |
| 278 | public PagedView(Context context, AttributeSet attrs) { |
| 279 | this(context, attrs, 0); |
| 280 | } |
| 281 | |
| 282 | public PagedView(Context context, AttributeSet attrs, int defStyle) { |
| 283 | super(context, attrs, defStyle); |
Winson Chung | c9ca298 | 2013-07-19 12:07:38 -0700 | [diff] [blame] | 284 | |
Adam Cohen | 9c4949e | 2010-10-05 12:27:22 -0700 | [diff] [blame] | 285 | TypedArray a = context.obtainStyledAttributes(attrs, |
| 286 | R.styleable.PagedView, defStyle, 0); |
Adam Cohen | 0cd0eba | 2013-10-28 14:22:25 -0700 | [diff] [blame] | 287 | |
Adam Cohen | 9c4949e | 2010-10-05 12:27:22 -0700 | [diff] [blame] | 288 | mPageLayoutPaddingTop = a.getDimensionPixelSize( |
Winson Chung | 1908d07 | 2011-02-24 18:09:44 -0800 | [diff] [blame] | 289 | R.styleable.PagedView_pageLayoutPaddingTop, 0); |
Adam Cohen | 9c4949e | 2010-10-05 12:27:22 -0700 | [diff] [blame] | 290 | mPageLayoutPaddingBottom = a.getDimensionPixelSize( |
Winson Chung | 1908d07 | 2011-02-24 18:09:44 -0800 | [diff] [blame] | 291 | R.styleable.PagedView_pageLayoutPaddingBottom, 0); |
Adam Cohen | 9c4949e | 2010-10-05 12:27:22 -0700 | [diff] [blame] | 292 | mPageLayoutPaddingLeft = a.getDimensionPixelSize( |
Winson Chung | 1908d07 | 2011-02-24 18:09:44 -0800 | [diff] [blame] | 293 | R.styleable.PagedView_pageLayoutPaddingLeft, 0); |
Adam Cohen | 9c4949e | 2010-10-05 12:27:22 -0700 | [diff] [blame] | 294 | mPageLayoutPaddingRight = a.getDimensionPixelSize( |
Winson Chung | 1908d07 | 2011-02-24 18:09:44 -0800 | [diff] [blame] | 295 | R.styleable.PagedView_pageLayoutPaddingRight, 0); |
Winson Chung | df4b83d | 2010-10-20 17:49:27 -0700 | [diff] [blame] | 296 | mPageLayoutWidthGap = a.getDimensionPixelSize( |
Winson Chung | 7d7541e | 2011-09-16 20:14:36 -0700 | [diff] [blame] | 297 | R.styleable.PagedView_pageLayoutWidthGap, 0); |
Winson Chung | df4b83d | 2010-10-20 17:49:27 -0700 | [diff] [blame] | 298 | mPageLayoutHeightGap = a.getDimensionPixelSize( |
Winson Chung | 7d7541e | 2011-09-16 20:14:36 -0700 | [diff] [blame] | 299 | R.styleable.PagedView_pageLayoutHeightGap, 0); |
Winson Chung | d2be381 | 2013-07-16 11:11:32 -0700 | [diff] [blame] | 300 | mPageIndicatorViewId = a.getResourceId(R.styleable.PagedView_pageIndicator, -1); |
Adam Cohen | 9c4949e | 2010-10-05 12:27:22 -0700 | [diff] [blame] | 301 | a.recycle(); |
| 302 | |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 303 | setHapticFeedbackEnabled(false); |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 304 | init(); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 305 | } |
| 306 | |
| 307 | /** |
| 308 | * Initializes various states for this workspace. |
| 309 | */ |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 310 | protected void init() { |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 311 | mDirtyPageContent = new ArrayList<Boolean>(); |
| 312 | mDirtyPageContent.ensureCapacity(32); |
Adam Cohen | e0f66b5 | 2010-11-23 15:06:07 -0800 | [diff] [blame] | 313 | mScroller = new Scroller(getContext(), new ScrollInterpolator()); |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 314 | mCurrentPage = 0; |
Winson Chung | 7da1025 | 2010-10-28 16:07:04 -0700 | [diff] [blame] | 315 | mCenterPagesVertically = true; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 316 | |
| 317 | final ViewConfiguration configuration = ViewConfiguration.get(getContext()); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 318 | mTouchSlop = configuration.getScaledPagingTouchSlop(); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 319 | mPagingTouchSlop = configuration.getScaledPagingTouchSlop(); |
| 320 | mMaximumVelocity = configuration.getScaledMaximumFlingVelocity(); |
Adam Cohen | b5ba097 | 2011-09-07 18:02:31 -0700 | [diff] [blame] | 321 | mDensity = getResources().getDisplayMetrics().density; |
Adam Cohen | 265b9a6 | 2011-12-07 14:37:18 -0800 | [diff] [blame] | 322 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 323 | // Scale the fling-to-delete threshold by the density |
| 324 | mFlingToDeleteThresholdVelocity = |
| 325 | (int) (mFlingToDeleteThresholdVelocity * mDensity); |
| 326 | |
Adam Cohen | 265b9a6 | 2011-12-07 14:37:18 -0800 | [diff] [blame] | 327 | mFlingThresholdVelocity = (int) (FLING_THRESHOLD_VELOCITY * mDensity); |
| 328 | mMinFlingVelocity = (int) (MIN_FLING_VELOCITY * mDensity); |
| 329 | mMinSnapVelocity = (int) (MIN_SNAP_VELOCITY * mDensity); |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 330 | setOnHierarchyChangeListener(this); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 331 | } |
| 332 | |
Winson Chung | d2be381 | 2013-07-16 11:11:32 -0700 | [diff] [blame] | 333 | protected void onAttachedToWindow() { |
Adam Cohen | 5380521 | 2013-10-01 10:39:23 -0700 | [diff] [blame] | 334 | super.onAttachedToWindow(); |
| 335 | |
Winson Chung | d2be381 | 2013-07-16 11:11:32 -0700 | [diff] [blame] | 336 | // Hook up the page indicator |
| 337 | ViewGroup parent = (ViewGroup) getParent(); |
| 338 | if (mPageIndicator == null && mPageIndicatorViewId > -1) { |
| 339 | mPageIndicator = (PageIndicator) parent.findViewById(mPageIndicatorViewId); |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 340 | mPageIndicator.removeAllMarkers(mAllowPagedViewAnimations); |
Winson Chung | 82dfe58 | 2013-07-26 15:07:49 -0700 | [diff] [blame] | 341 | |
Winson Chung | 7819a56 | 2013-09-19 15:55:45 -0700 | [diff] [blame] | 342 | ArrayList<PageIndicator.PageMarkerResources> markers = |
| 343 | new ArrayList<PageIndicator.PageMarkerResources>(); |
Winson Chung | 82dfe58 | 2013-07-26 15:07:49 -0700 | [diff] [blame] | 344 | for (int i = 0; i < getChildCount(); ++i) { |
| 345 | markers.add(getPageIndicatorMarker(i)); |
| 346 | } |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 347 | |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 348 | mPageIndicator.addMarkers(markers, mAllowPagedViewAnimations); |
Adam Cohen | fbdf427 | 2013-10-09 13:02:21 -0700 | [diff] [blame] | 349 | |
| 350 | OnClickListener listener = getPageIndicatorClickListener(); |
| 351 | if (listener != null) { |
| 352 | mPageIndicator.setOnClickListener(listener); |
| 353 | } |
Adam Cohen | 5380521 | 2013-10-01 10:39:23 -0700 | [diff] [blame] | 354 | mPageIndicator.setContentDescription(getPageIndicatorDescription()); |
Winson Chung | d2be381 | 2013-07-16 11:11:32 -0700 | [diff] [blame] | 355 | } |
| 356 | } |
| 357 | |
Adam Cohen | 5380521 | 2013-10-01 10:39:23 -0700 | [diff] [blame] | 358 | protected String getPageIndicatorDescription() { |
| 359 | return getCurrentPageDescription(); |
| 360 | } |
| 361 | |
| 362 | protected OnClickListener getPageIndicatorClickListener() { |
| 363 | return null; |
| 364 | } |
| 365 | |
Winson Chung | d2be381 | 2013-07-16 11:11:32 -0700 | [diff] [blame] | 366 | protected void onDetachedFromWindow() { |
| 367 | // Unhook the page indicator |
| 368 | mPageIndicator = null; |
| 369 | } |
| 370 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 371 | void setDeleteDropTarget(View v) { |
| 372 | mDeleteDropTarget = v; |
| 373 | } |
| 374 | |
| 375 | // Convenience methods to map points from self to parent and vice versa |
| 376 | float[] mapPointFromViewToParent(View v, float x, float y) { |
| 377 | mTmpPoint[0] = x; |
| 378 | mTmpPoint[1] = y; |
| 379 | v.getMatrix().mapPoints(mTmpPoint); |
| 380 | mTmpPoint[0] += v.getLeft(); |
| 381 | mTmpPoint[1] += v.getTop(); |
| 382 | return mTmpPoint; |
| 383 | } |
| 384 | float[] mapPointFromParentToView(View v, float x, float y) { |
| 385 | mTmpPoint[0] = x - v.getLeft(); |
| 386 | mTmpPoint[1] = y - v.getTop(); |
| 387 | v.getMatrix().invert(mTmpInvMatrix); |
| 388 | mTmpInvMatrix.mapPoints(mTmpPoint); |
| 389 | return mTmpPoint; |
| 390 | } |
| 391 | |
| 392 | void updateDragViewTranslationDuringDrag() { |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 393 | if (mDragView != null) { |
| 394 | float x = (mLastMotionX - mDownMotionX) + (getScrollX() - mDownScrollX) + |
| 395 | (mDragViewBaselineLeft - mDragView.getLeft()); |
| 396 | float y = mLastMotionY - mDownMotionY; |
| 397 | mDragView.setTranslationX(x); |
| 398 | mDragView.setTranslationY(y); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 399 | |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 400 | if (DEBUG) Log.d(TAG, "PagedView.updateDragViewTranslationDuringDrag(): " |
| 401 | + x + ", " + y); |
| 402 | } |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 403 | } |
| 404 | |
| 405 | public void setMinScale(float f) { |
| 406 | mMinScale = f; |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 407 | mUseMinScale = true; |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 408 | requestLayout(); |
| 409 | } |
| 410 | |
| 411 | @Override |
| 412 | public void setScaleX(float scaleX) { |
| 413 | super.setScaleX(scaleX); |
| 414 | if (isReordering(true)) { |
| 415 | float[] p = mapPointFromParentToView(this, mParentDownMotionX, mParentDownMotionY); |
| 416 | mLastMotionX = p[0]; |
| 417 | mLastMotionY = p[1]; |
| 418 | updateDragViewTranslationDuringDrag(); |
| 419 | } |
| 420 | } |
| 421 | |
| 422 | // Convenience methods to get the actual width/height of the PagedView (since it is measured |
| 423 | // to be larger to account for the minimum possible scale) |
| 424 | int getViewportWidth() { |
| 425 | return mViewport.width(); |
| 426 | } |
| 427 | int getViewportHeight() { |
| 428 | return mViewport.height(); |
| 429 | } |
| 430 | |
| 431 | // Convenience methods to get the offset ASSUMING that we are centering the pages in the |
| 432 | // PagedView both horizontally and vertically |
| 433 | int getViewportOffsetX() { |
| 434 | return (getMeasuredWidth() - getViewportWidth()) / 2; |
| 435 | } |
| 436 | |
| 437 | int getViewportOffsetY() { |
| 438 | return (getMeasuredHeight() - getViewportHeight()) / 2; |
| 439 | } |
| 440 | |
Adam Cohen | edb4076 | 2013-07-18 16:45:45 -0700 | [diff] [blame] | 441 | PageIndicator getPageIndicator() { |
| 442 | return mPageIndicator; |
| 443 | } |
Winson Chung | 7819a56 | 2013-09-19 15:55:45 -0700 | [diff] [blame] | 444 | protected PageIndicator.PageMarkerResources getPageIndicatorMarker(int pageIndex) { |
| 445 | return new PageIndicator.PageMarkerResources(); |
Winson Chung | 82dfe58 | 2013-07-26 15:07:49 -0700 | [diff] [blame] | 446 | } |
Adam Cohen | edb4076 | 2013-07-18 16:45:45 -0700 | [diff] [blame] | 447 | |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 448 | public void setPageSwitchListener(PageSwitchListener pageSwitchListener) { |
| 449 | mPageSwitchListener = pageSwitchListener; |
| 450 | if (mPageSwitchListener != null) { |
| 451 | mPageSwitchListener.onPageSwitch(getPageAt(mCurrentPage), mCurrentPage); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 452 | } |
| 453 | } |
| 454 | |
| 455 | /** |
Winson Chung | 52aee60 | 2013-01-30 12:01:02 -0800 | [diff] [blame] | 456 | * Note: this is a reimplementation of View.isLayoutRtl() since that is currently hidden api. |
| 457 | */ |
| 458 | public boolean isLayoutRtl() { |
| 459 | return (getLayoutDirection() == LAYOUT_DIRECTION_RTL); |
| 460 | } |
| 461 | |
| 462 | /** |
Winson Chung | f0ea4d3 | 2011-06-06 14:27:16 -0700 | [diff] [blame] | 463 | * Called by subclasses to mark that data is ready, and that we can begin loading and laying |
| 464 | * out pages. |
| 465 | */ |
| 466 | protected void setDataIsReady() { |
| 467 | mIsDataReady = true; |
| 468 | } |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 469 | |
Winson Chung | f0ea4d3 | 2011-06-06 14:27:16 -0700 | [diff] [blame] | 470 | protected boolean isDataReady() { |
| 471 | return mIsDataReady; |
| 472 | } |
| 473 | |
| 474 | /** |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 475 | * Returns the index of the currently displayed page. |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 476 | * |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 477 | * @return The index of the currently displayed page. |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 478 | */ |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 479 | int getCurrentPage() { |
| 480 | return mCurrentPage; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 481 | } |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 482 | |
Winson Chung | 360e63f | 2012-04-27 13:48:05 -0700 | [diff] [blame] | 483 | int getNextPage() { |
| 484 | return (mNextPage != INVALID_PAGE) ? mNextPage : mCurrentPage; |
| 485 | } |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 486 | |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 487 | int getPageCount() { |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 488 | return getChildCount(); |
| 489 | } |
| 490 | |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 491 | View getPageAt(int index) { |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 492 | return getChildAt(index); |
| 493 | } |
| 494 | |
Adam Cohen | ae4f155 | 2011-10-20 00:15:42 -0700 | [diff] [blame] | 495 | protected int indexToPage(int index) { |
| 496 | return index; |
| 497 | } |
| 498 | |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 499 | /** |
Winson Chung | bbc60d8 | 2010-11-11 16:34:41 -0800 | [diff] [blame] | 500 | * Updates the scroll of the current page immediately to its final scroll position. We use this |
| 501 | * in CustomizePagedView to allow tabs to share the same PagedView while resetting the scroll of |
| 502 | * the previous tab page. |
| 503 | */ |
| 504 | protected void updateCurrentPageScroll() { |
Adam Cohen | 0ffac43 | 2013-07-10 11:19:26 -0700 | [diff] [blame] | 505 | // If the current page is invalid, just reset the scroll position to zero |
| 506 | int newX = 0; |
| 507 | if (0 <= mCurrentPage && mCurrentPage < getPageCount()) { |
Adam Cohen | edb4076 | 2013-07-18 16:45:45 -0700 | [diff] [blame] | 508 | newX = getScrollForPage(mCurrentPage); |
Adam Cohen | 0ffac43 | 2013-07-10 11:19:26 -0700 | [diff] [blame] | 509 | } |
Winson Chung | bbc60d8 | 2010-11-11 16:34:41 -0800 | [diff] [blame] | 510 | scrollTo(newX, 0); |
| 511 | mScroller.setFinalX(newX); |
Adam Cohen | 4fe4c93 | 2013-10-28 16:02:34 -0700 | [diff] [blame] | 512 | forceFinishScroller(); |
Winson Chung | bbc60d8 | 2010-11-11 16:34:41 -0800 | [diff] [blame] | 513 | } |
| 514 | |
| 515 | /** |
Chet Haase | bc2f082 | 2012-10-26 17:59:53 -0700 | [diff] [blame] | 516 | * Called during AllApps/Home transitions to avoid unnecessary work. When that other animation |
Adam Cohen | 4fe4c93 | 2013-10-28 16:02:34 -0700 | [diff] [blame] | 517 | * {@link #updateCurrentPageScroll()} should be called, to correctly set the final state and |
| 518 | * re-enable scrolling. |
Chet Haase | bc2f082 | 2012-10-26 17:59:53 -0700 | [diff] [blame] | 519 | */ |
Adam Cohen | 4fe4c93 | 2013-10-28 16:02:34 -0700 | [diff] [blame] | 520 | void stopScrolling() { |
Winson Chung | b88ae41 | 2013-10-29 17:21:56 -0700 | [diff] [blame] | 521 | mCurrentPage = getNextPage(); |
Adam Cohen | 4fe4c93 | 2013-10-28 16:02:34 -0700 | [diff] [blame] | 522 | forceFinishScroller(); |
Chet Haase | bc2f082 | 2012-10-26 17:59:53 -0700 | [diff] [blame] | 523 | } |
| 524 | |
Adam Cohen | 8bdbaab | 2013-10-29 15:25:02 -0700 | [diff] [blame] | 525 | private void abortScrollerAnimation(boolean resetNextPage) { |
Adam Cohen | 4fe4c93 | 2013-10-28 16:02:34 -0700 | [diff] [blame] | 526 | mScroller.abortAnimation(); |
| 527 | // We need to clean up the next page here to avoid computeScrollHelper from |
| 528 | // updating current page on the pass. |
Adam Cohen | 8bdbaab | 2013-10-29 15:25:02 -0700 | [diff] [blame] | 529 | if (resetNextPage) { |
| 530 | mNextPage = INVALID_PAGE; |
| 531 | } |
Chet Haase | bc2f082 | 2012-10-26 17:59:53 -0700 | [diff] [blame] | 532 | } |
Adam Cohen | 4fe4c93 | 2013-10-28 16:02:34 -0700 | [diff] [blame] | 533 | |
| 534 | private void forceFinishScroller() { |
| 535 | mScroller.forceFinished(true); |
| 536 | // We need to clean up the next page here to avoid computeScrollHelper from |
| 537 | // updating current page on the pass. |
| 538 | mNextPage = INVALID_PAGE; |
| 539 | } |
| 540 | |
Chet Haase | bc2f082 | 2012-10-26 17:59:53 -0700 | [diff] [blame] | 541 | /** |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 542 | * Sets the current page. |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 543 | */ |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 544 | void setCurrentPage(int currentPage) { |
Patrick Dubroy | 72e0d34 | 2010-11-09 15:23:28 -0800 | [diff] [blame] | 545 | if (!mScroller.isFinished()) { |
Adam Cohen | 8bdbaab | 2013-10-29 15:25:02 -0700 | [diff] [blame] | 546 | abortScrollerAnimation(true); |
Patrick Dubroy | 72e0d34 | 2010-11-09 15:23:28 -0800 | [diff] [blame] | 547 | } |
Michael Jurka | d3ef306 | 2010-11-23 16:23:58 -0800 | [diff] [blame] | 548 | // don't introduce any checks like mCurrentPage == currentPage here-- if we change the |
| 549 | // the default |
| 550 | if (getChildCount() == 0) { |
Patrick Dubroy | 72e0d34 | 2010-11-09 15:23:28 -0800 | [diff] [blame] | 551 | return; |
| 552 | } |
Adam Cohen | e61a9a2 | 2013-06-11 15:45:31 -0700 | [diff] [blame] | 553 | mForceScreenScrolled = true; |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 554 | mCurrentPage = Math.max(0, Math.min(currentPage, getPageCount() - 1)); |
Winson Chung | 181c3dc | 2013-07-17 15:36:20 -0700 | [diff] [blame] | 555 | updateCurrentPageScroll(); |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 556 | notifyPageSwitchListener(); |
Winson Chung | a12a250 | 2010-12-20 14:41:35 -0800 | [diff] [blame] | 557 | invalidate(); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 558 | } |
| 559 | |
Winson Chung | 8c87cd8 | 2013-07-23 16:20:10 -0700 | [diff] [blame] | 560 | /** |
| 561 | * The restore page will be set in place of the current page at the next (likely first) |
| 562 | * layout. |
| 563 | */ |
| 564 | void setRestorePage(int restorePage) { |
| 565 | mRestorePage = restorePage; |
| 566 | } |
| 567 | |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 568 | protected void notifyPageSwitchListener() { |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 569 | if (mPageSwitchListener != null) { |
| 570 | mPageSwitchListener.onPageSwitch(getPageAt(mCurrentPage), mCurrentPage); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 571 | } |
Winson Chung | d2be381 | 2013-07-16 11:11:32 -0700 | [diff] [blame] | 572 | |
| 573 | // Update the page indicator (when we aren't reordering) |
| 574 | if (mPageIndicator != null && !isReordering(false)) { |
| 575 | mPageIndicator.setActiveMarker(getNextPage()); |
| 576 | } |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 577 | } |
Michael Jurka | ce7e05f | 2011-02-01 22:02:35 -0800 | [diff] [blame] | 578 | protected void pageBeginMoving() { |
Michael Jurka | d74c984 | 2011-07-10 12:44:21 -0700 | [diff] [blame] | 579 | if (!mIsPageMoving) { |
| 580 | mIsPageMoving = true; |
| 581 | onPageBeginMoving(); |
| 582 | } |
Patrick Dubroy | 1262e36 | 2010-10-06 15:49:50 -0700 | [diff] [blame] | 583 | } |
| 584 | |
Michael Jurka | ce7e05f | 2011-02-01 22:02:35 -0800 | [diff] [blame] | 585 | protected void pageEndMoving() { |
Michael Jurka | d74c984 | 2011-07-10 12:44:21 -0700 | [diff] [blame] | 586 | if (mIsPageMoving) { |
| 587 | mIsPageMoving = false; |
| 588 | onPageEndMoving(); |
| 589 | } |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 590 | } |
| 591 | |
Adam Cohen | 26976d9 | 2011-03-22 15:33:33 -0700 | [diff] [blame] | 592 | protected boolean isPageMoving() { |
| 593 | return mIsPageMoving; |
| 594 | } |
| 595 | |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 596 | // a method that subclasses can override to add behavior |
Patrick Dubroy | 1262e36 | 2010-10-06 15:49:50 -0700 | [diff] [blame] | 597 | protected void onPageBeginMoving() { |
| 598 | } |
| 599 | |
| 600 | // a method that subclasses can override to add behavior |
| 601 | protected void onPageEndMoving() { |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 602 | } |
| 603 | |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 604 | /** |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 605 | * Registers the specified listener on each page contained in this workspace. |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 606 | * |
| 607 | * @param l The listener used to respond to long clicks. |
| 608 | */ |
| 609 | @Override |
| 610 | public void setOnLongClickListener(OnLongClickListener l) { |
| 611 | mLongClickListener = l; |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 612 | final int count = getPageCount(); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 613 | for (int i = 0; i < count; i++) { |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 614 | getPageAt(i).setOnLongClickListener(l); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 615 | } |
Adam Cohen | 1697b79 | 2013-09-17 19:08:21 -0700 | [diff] [blame] | 616 | super.setOnLongClickListener(l); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 617 | } |
| 618 | |
| 619 | @Override |
Adam Cohen | 68d7393 | 2010-11-15 10:50:58 -0800 | [diff] [blame] | 620 | public void scrollBy(int x, int y) { |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 621 | scrollTo(mUnboundedScrollX + x, getScrollY() + y); |
Adam Cohen | 68d7393 | 2010-11-15 10:50:58 -0800 | [diff] [blame] | 622 | } |
| 623 | |
| 624 | @Override |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 625 | public void scrollTo(int x, int y) { |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 626 | // In free scroll mode, we clamp the scrollX |
| 627 | if (mFreeScroll) { |
| 628 | x = Math.min(x, mFreeScrollMaxScrollX); |
| 629 | x = Math.max(x, mFreeScrollMinScrollX); |
| 630 | } |
| 631 | |
Adam Cohen | 0ffac43 | 2013-07-10 11:19:26 -0700 | [diff] [blame] | 632 | final boolean isRtl = isLayoutRtl(); |
Adam Cohen | 68d7393 | 2010-11-15 10:50:58 -0800 | [diff] [blame] | 633 | mUnboundedScrollX = x; |
| 634 | |
Adam Cohen | 0ffac43 | 2013-07-10 11:19:26 -0700 | [diff] [blame] | 635 | boolean isXBeforeFirstPage = isRtl ? (x > mMaxScrollX) : (x < 0); |
| 636 | boolean isXAfterLastPage = isRtl ? (x < 0) : (x > mMaxScrollX); |
| 637 | if (isXBeforeFirstPage) { |
Adam Cohen | 68d7393 | 2010-11-15 10:50:58 -0800 | [diff] [blame] | 638 | super.scrollTo(0, y); |
| 639 | if (mAllowOverScroll) { |
Adam Cohen | 0ffac43 | 2013-07-10 11:19:26 -0700 | [diff] [blame] | 640 | if (isRtl) { |
| 641 | overScroll(x - mMaxScrollX); |
| 642 | } else { |
| 643 | overScroll(x); |
| 644 | } |
Adam Cohen | 68d7393 | 2010-11-15 10:50:58 -0800 | [diff] [blame] | 645 | } |
Adam Cohen | 0ffac43 | 2013-07-10 11:19:26 -0700 | [diff] [blame] | 646 | } else if (isXAfterLastPage) { |
Adam Cohen | 68d7393 | 2010-11-15 10:50:58 -0800 | [diff] [blame] | 647 | super.scrollTo(mMaxScrollX, y); |
| 648 | if (mAllowOverScroll) { |
Adam Cohen | 0ffac43 | 2013-07-10 11:19:26 -0700 | [diff] [blame] | 649 | if (isRtl) { |
| 650 | overScroll(x); |
| 651 | } else { |
| 652 | overScroll(x - mMaxScrollX); |
| 653 | } |
Adam Cohen | 68d7393 | 2010-11-15 10:50:58 -0800 | [diff] [blame] | 654 | } |
| 655 | } else { |
Adam Cohen | ebea84d | 2011-11-09 17:20:41 -0800 | [diff] [blame] | 656 | mOverScrollX = x; |
Adam Cohen | 68d7393 | 2010-11-15 10:50:58 -0800 | [diff] [blame] | 657 | super.scrollTo(x, y); |
| 658 | } |
| 659 | |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 660 | mTouchX = x; |
| 661 | mSmoothingTime = System.nanoTime() / NANOTIME_DIV; |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 662 | |
| 663 | // Update the last motion events when scrolling |
| 664 | if (isReordering(true)) { |
| 665 | float[] p = mapPointFromParentToView(this, mParentDownMotionX, mParentDownMotionY); |
| 666 | mLastMotionX = p[0]; |
| 667 | mLastMotionY = p[1]; |
| 668 | updateDragViewTranslationDuringDrag(); |
| 669 | } |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 670 | } |
| 671 | |
Adam Cohen | 5380521 | 2013-10-01 10:39:23 -0700 | [diff] [blame] | 672 | private void sendScrollAccessibilityEvent() { |
| 673 | AccessibilityManager am = |
| 674 | (AccessibilityManager) getContext().getSystemService(Context.ACCESSIBILITY_SERVICE); |
| 675 | if (am.isEnabled()) { |
| 676 | AccessibilityEvent ev = |
| 677 | AccessibilityEvent.obtain(AccessibilityEvent.TYPE_VIEW_SCROLLED); |
Adam Cohen | 5380521 | 2013-10-01 10:39:23 -0700 | [diff] [blame] | 678 | ev.setItemCount(getChildCount()); |
| 679 | ev.setFromIndex(mCurrentPage); |
Adam Cohen | e4602ae | 2013-10-31 15:46:45 -0700 | [diff] [blame] | 680 | ev.setToIndex(getNextPage()); |
Adam Cohen | 5380521 | 2013-10-01 10:39:23 -0700 | [diff] [blame] | 681 | |
Alan Viverette | 254139a | 2013-10-08 13:13:46 -0700 | [diff] [blame] | 682 | final int action; |
Adam Cohen | 5380521 | 2013-10-01 10:39:23 -0700 | [diff] [blame] | 683 | if (getNextPage() >= mCurrentPage) { |
| 684 | action = AccessibilityNodeInfo.ACTION_SCROLL_FORWARD; |
| 685 | } else { |
| 686 | action = AccessibilityNodeInfo.ACTION_SCROLL_BACKWARD; |
| 687 | } |
| 688 | |
| 689 | ev.setAction(action); |
| 690 | sendAccessibilityEventUnchecked(ev); |
| 691 | } |
| 692 | } |
| 693 | |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 694 | // we moved this functionality to a helper function so SmoothPagedView can reuse it |
| 695 | protected boolean computeScrollHelper() { |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 696 | if (mScroller.computeScrollOffset()) { |
Winson Chung | 557d6ed | 2011-07-08 15:34:52 -0700 | [diff] [blame] | 697 | // Don't bother scrolling if the page does not need to be moved |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 698 | if (getScrollX() != mScroller.getCurrX() |
| 699 | || getScrollY() != mScroller.getCurrY() |
Michael Jurka | b06d95f | 2012-04-02 06:26:53 -0700 | [diff] [blame] | 700 | || mOverScrollX != mScroller.getCurrX()) { |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 701 | float scaleX = mFreeScroll ? getScaleX() : 1f; |
| 702 | int scrollX = (int) (mScroller.getCurrX() * (1 / scaleX)); |
| 703 | scrollTo(scrollX, mScroller.getCurrY()); |
Winson Chung | 557d6ed | 2011-07-08 15:34:52 -0700 | [diff] [blame] | 704 | } |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 705 | invalidate(); |
| 706 | return true; |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 707 | } else if (mNextPage != INVALID_PAGE) { |
Adam Cohen | 5380521 | 2013-10-01 10:39:23 -0700 | [diff] [blame] | 708 | sendScrollAccessibilityEvent(); |
| 709 | |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 710 | mCurrentPage = Math.max(0, Math.min(mNextPage, getPageCount() - 1)); |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 711 | mNextPage = INVALID_PAGE; |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 712 | notifyPageSwitchListener(); |
Winson Chung | b44b524 | 2011-06-13 11:32:14 -0700 | [diff] [blame] | 713 | |
Winson Chung | 9c0565f | 2013-07-19 13:49:06 -0700 | [diff] [blame] | 714 | // Load the associated pages if necessary |
| 715 | if (mDeferLoadAssociatedPagesUntilScrollCompletes) { |
| 716 | loadAssociatedPages(mCurrentPage); |
| 717 | mDeferLoadAssociatedPagesUntilScrollCompletes = false; |
| 718 | } |
| 719 | |
Adam Cohen | 73aa975 | 2010-11-24 16:26:58 -0800 | [diff] [blame] | 720 | // We don't want to trigger a page end moving unless the page has settled |
| 721 | // and the user has stopped scrolling |
| 722 | if (mTouchState == TOUCH_STATE_REST) { |
| 723 | pageEndMoving(); |
| 724 | } |
Winson Chung | c27d1bb | 2011-09-29 12:07:42 -0700 | [diff] [blame] | 725 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 726 | onPostReorderingAnimationCompleted(); |
Adam Cohen | 5380521 | 2013-10-01 10:39:23 -0700 | [diff] [blame] | 727 | AccessibilityManager am = (AccessibilityManager) |
Adam Cohen | 0ffac43 | 2013-07-10 11:19:26 -0700 | [diff] [blame] | 728 | getContext().getSystemService(Context.ACCESSIBILITY_SERVICE); |
Adam Cohen | 5380521 | 2013-10-01 10:39:23 -0700 | [diff] [blame] | 729 | if (am.isEnabled()) { |
| 730 | // Notify the user when the page changes |
| 731 | announceForAccessibility(getCurrentPageDescription()); |
Adam Cohen | 0ffac43 | 2013-07-10 11:19:26 -0700 | [diff] [blame] | 732 | } |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 733 | return true; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 734 | } |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 735 | return false; |
| 736 | } |
| 737 | |
| 738 | @Override |
| 739 | public void computeScroll() { |
| 740 | computeScrollHelper(); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 741 | } |
| 742 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 743 | protected boolean shouldSetTopAlignedPivotForWidget(int childIndex) { |
| 744 | return mTopAlignPageWhenShrinkingForBouncer; |
| 745 | } |
| 746 | |
Adam Cohen | 96d30a1 | 2013-07-16 18:13:21 -0700 | [diff] [blame] | 747 | public static class LayoutParams extends ViewGroup.LayoutParams { |
| 748 | public boolean isFullScreenPage = false; |
| 749 | |
| 750 | /** |
| 751 | * {@inheritDoc} |
| 752 | */ |
| 753 | public LayoutParams(int width, int height) { |
| 754 | super(width, height); |
| 755 | } |
| 756 | |
| 757 | public LayoutParams(ViewGroup.LayoutParams source) { |
| 758 | super(source); |
| 759 | } |
| 760 | } |
| 761 | |
| 762 | protected LayoutParams generateDefaultLayoutParams() { |
| 763 | return new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); |
| 764 | } |
| 765 | |
Adam Cohen | edb4076 | 2013-07-18 16:45:45 -0700 | [diff] [blame] | 766 | public void addFullScreenPage(View page) { |
Adam Cohen | 96d30a1 | 2013-07-16 18:13:21 -0700 | [diff] [blame] | 767 | LayoutParams lp = generateDefaultLayoutParams(); |
| 768 | lp.isFullScreenPage = true; |
| 769 | super.addView(page, 0, lp); |
| 770 | } |
| 771 | |
Adam Cohen | 410f3cd | 2013-09-22 12:09:32 -0700 | [diff] [blame] | 772 | public int getNormalChildHeight() { |
| 773 | return mNormalChildHeight; |
| 774 | } |
| 775 | |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 776 | @Override |
| 777 | protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 778 | if (!mIsDataReady || getChildCount() == 0) { |
Winson Chung | f0ea4d3 | 2011-06-06 14:27:16 -0700 | [diff] [blame] | 779 | super.onMeasure(widthMeasureSpec, heightMeasureSpec); |
| 780 | return; |
| 781 | } |
| 782 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 783 | // We measure the dimensions of the PagedView to be larger than the pages so that when we |
| 784 | // zoom out (and scale down), the view is still contained in the parent |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 785 | int widthMode = MeasureSpec.getMode(widthMeasureSpec); |
| 786 | int widthSize = MeasureSpec.getSize(widthMeasureSpec); |
| 787 | int heightMode = MeasureSpec.getMode(heightMeasureSpec); |
Winson Chung | 8aad610 | 2012-05-11 16:27:49 -0700 | [diff] [blame] | 788 | int heightSize = MeasureSpec.getSize(heightMeasureSpec); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 789 | // NOTE: We multiply by 1.5f to account for the fact that depending on the offset of the |
| 790 | // viewport, we can be at most one and a half screens offset once we scale down |
| 791 | DisplayMetrics dm = getResources().getDisplayMetrics(); |
Adam Cohen | 3b185e2 | 2013-10-29 14:45:58 -0700 | [diff] [blame] | 792 | int maxSize = Math.max(dm.widthPixels + mInsets.left + mInsets.right, |
| 793 | dm.heightPixels + mInsets.top + mInsets.bottom); |
Adam Cohen | 410f3cd | 2013-09-22 12:09:32 -0700 | [diff] [blame] | 794 | |
Adam Cohen | 3b185e2 | 2013-10-29 14:45:58 -0700 | [diff] [blame] | 795 | int parentWidthSize = (int) (1.5f * maxSize); |
| 796 | int parentHeightSize = maxSize; |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 797 | int scaledWidthSize, scaledHeightSize; |
| 798 | if (mUseMinScale) { |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 799 | scaledWidthSize = (int) (parentWidthSize / mMinScale); |
| 800 | scaledHeightSize = (int) (parentHeightSize / mMinScale); |
| 801 | } else { |
| 802 | scaledWidthSize = widthSize; |
| 803 | scaledHeightSize = heightSize; |
| 804 | } |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 805 | mViewport.set(0, 0, widthSize, heightSize); |
| 806 | |
| 807 | if (widthMode == MeasureSpec.UNSPECIFIED || heightMode == MeasureSpec.UNSPECIFIED) { |
| 808 | super.onMeasure(widthMeasureSpec, heightMeasureSpec); |
| 809 | return; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 810 | } |
| 811 | |
Winson Chung | 8aad610 | 2012-05-11 16:27:49 -0700 | [diff] [blame] | 812 | // Return early if we aren't given a proper dimension |
| 813 | if (widthSize <= 0 || heightSize <= 0) { |
| 814 | super.onMeasure(widthMeasureSpec, heightMeasureSpec); |
| 815 | return; |
| 816 | } |
| 817 | |
Adam Lesinski | 6b879f0 | 2010-11-04 16:15:23 -0700 | [diff] [blame] | 818 | /* Allow the height to be set as WRAP_CONTENT. This allows the particular case |
| 819 | * of the All apps view on XLarge displays to not take up more space then it needs. Width |
| 820 | * is still not allowed to be set as WRAP_CONTENT since many parts of the code expect |
| 821 | * each page to have the same width. |
| 822 | */ |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 823 | final int verticalPadding = getPaddingTop() + getPaddingBottom(); |
| 824 | final int horizontalPadding = getPaddingLeft() + getPaddingRight(); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 825 | |
| 826 | // The children are given the same width and height as the workspace |
Michael Jurka | 5f1c509 | 2010-09-03 14:15:02 -0700 | [diff] [blame] | 827 | // unless they were set to WRAP_CONTENT |
Winson Chung | 785d2eb | 2011-04-14 16:08:02 -0700 | [diff] [blame] | 828 | if (DEBUG) Log.d(TAG, "PagedView.onMeasure(): " + widthSize + ", " + heightSize); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 829 | if (DEBUG) Log.d(TAG, "PagedView.scaledSize: " + scaledWidthSize + ", " + scaledHeightSize); |
| 830 | if (DEBUG) Log.d(TAG, "PagedView.parentSize: " + parentWidthSize + ", " + parentHeightSize); |
| 831 | if (DEBUG) Log.d(TAG, "PagedView.horizontalPadding: " + horizontalPadding); |
| 832 | if (DEBUG) Log.d(TAG, "PagedView.verticalPadding: " + verticalPadding); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 833 | final int childCount = getChildCount(); |
| 834 | for (int i = 0; i < childCount; i++) { |
Michael Jurka | 5f1c509 | 2010-09-03 14:15:02 -0700 | [diff] [blame] | 835 | // disallowing padding in paged view (just pass 0) |
Adam Cohen | 22f823d | 2011-09-01 17:22:18 -0700 | [diff] [blame] | 836 | final View child = getPageAt(i); |
Vladimir Marko | 2824b07 | 2013-10-04 16:42:17 +0100 | [diff] [blame] | 837 | if (child.getVisibility() != GONE) { |
| 838 | final LayoutParams lp = (LayoutParams) child.getLayoutParams(); |
Michael Jurka | 5f1c509 | 2010-09-03 14:15:02 -0700 | [diff] [blame] | 839 | |
Vladimir Marko | 2824b07 | 2013-10-04 16:42:17 +0100 | [diff] [blame] | 840 | int childWidthMode; |
| 841 | int childHeightMode; |
| 842 | int childWidth; |
| 843 | int childHeight; |
Adam Cohen | 96d30a1 | 2013-07-16 18:13:21 -0700 | [diff] [blame] | 844 | |
Vladimir Marko | 2824b07 | 2013-10-04 16:42:17 +0100 | [diff] [blame] | 845 | if (!lp.isFullScreenPage) { |
| 846 | if (lp.width == LayoutParams.WRAP_CONTENT) { |
| 847 | childWidthMode = MeasureSpec.AT_MOST; |
| 848 | } else { |
| 849 | childWidthMode = MeasureSpec.EXACTLY; |
| 850 | } |
| 851 | |
| 852 | if (lp.height == LayoutParams.WRAP_CONTENT) { |
| 853 | childHeightMode = MeasureSpec.AT_MOST; |
| 854 | } else { |
| 855 | childHeightMode = MeasureSpec.EXACTLY; |
| 856 | } |
| 857 | |
Adam Cohen | 3b185e2 | 2013-10-29 14:45:58 -0700 | [diff] [blame] | 858 | childWidth = getViewportWidth() - horizontalPadding |
| 859 | - mInsets.left - mInsets.right; |
| 860 | childHeight = getViewportHeight() - verticalPadding |
| 861 | - mInsets.top - mInsets.bottom; |
Vladimir Marko | 2824b07 | 2013-10-04 16:42:17 +0100 | [diff] [blame] | 862 | mNormalChildHeight = childHeight; |
Adam Cohen | 96d30a1 | 2013-07-16 18:13:21 -0700 | [diff] [blame] | 863 | } else { |
| 864 | childWidthMode = MeasureSpec.EXACTLY; |
Adam Cohen | 96d30a1 | 2013-07-16 18:13:21 -0700 | [diff] [blame] | 865 | childHeightMode = MeasureSpec.EXACTLY; |
Vladimir Marko | 2824b07 | 2013-10-04 16:42:17 +0100 | [diff] [blame] | 866 | |
Adam Cohen | 3b185e2 | 2013-10-29 14:45:58 -0700 | [diff] [blame] | 867 | childWidth = getViewportWidth() - mInsets.left - mInsets.right; |
| 868 | childHeight = getViewportHeight(); |
Adam Cohen | 96d30a1 | 2013-07-16 18:13:21 -0700 | [diff] [blame] | 869 | } |
| 870 | |
Vladimir Marko | 2824b07 | 2013-10-04 16:42:17 +0100 | [diff] [blame] | 871 | final int childWidthMeasureSpec = |
| 872 | MeasureSpec.makeMeasureSpec(childWidth, childWidthMode); |
| 873 | final int childHeightMeasureSpec = |
| 874 | MeasureSpec.makeMeasureSpec(childHeight, childHeightMode); |
| 875 | child.measure(childWidthMeasureSpec, childHeightMeasureSpec); |
Michael Jurka | 5f1c509 | 2010-09-03 14:15:02 -0700 | [diff] [blame] | 876 | } |
Adam Lesinski | 6b879f0 | 2010-11-04 16:15:23 -0700 | [diff] [blame] | 877 | } |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 878 | setMeasuredDimension(scaledWidthSize, scaledHeightSize); |
Adam Cohen | 60b0712 | 2011-11-14 17:26:06 -0800 | [diff] [blame] | 879 | } |
| 880 | |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 881 | @Override |
Michael Jurka | 28750fb | 2010-09-24 17:43:49 -0700 | [diff] [blame] | 882 | protected void onLayout(boolean changed, int left, int top, int right, int bottom) { |
Adam Cohen | dcd297f | 2013-06-18 13:13:40 -0700 | [diff] [blame] | 883 | if (!mIsDataReady || getChildCount() == 0) { |
Winson Chung | f0ea4d3 | 2011-06-06 14:27:16 -0700 | [diff] [blame] | 884 | return; |
| 885 | } |
| 886 | |
Winson Chung | 785d2eb | 2011-04-14 16:08:02 -0700 | [diff] [blame] | 887 | if (DEBUG) Log.d(TAG, "PagedView.onLayout()"); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 888 | final int childCount = getChildCount(); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 889 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 890 | int offsetX = getViewportOffsetX(); |
| 891 | int offsetY = getViewportOffsetY(); |
| 892 | |
| 893 | // Update the viewport offsets |
| 894 | mViewport.offset(offsetX, offsetY); |
| 895 | |
Adam Cohen | 0ffac43 | 2013-07-10 11:19:26 -0700 | [diff] [blame] | 896 | final boolean isRtl = isLayoutRtl(); |
| 897 | |
| 898 | final int startIndex = isRtl ? childCount - 1 : 0; |
| 899 | final int endIndex = isRtl ? -1 : childCount; |
| 900 | final int delta = isRtl ? -1 : 1; |
| 901 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 902 | int verticalPadding = getPaddingTop() + getPaddingBottom(); |
Adam Cohen | edb4076 | 2013-07-18 16:45:45 -0700 | [diff] [blame] | 903 | |
Adam Cohen | 3b185e2 | 2013-10-29 14:45:58 -0700 | [diff] [blame] | 904 | LayoutParams lp = (LayoutParams) getChildAt(startIndex).getLayoutParams(); |
| 905 | |
| 906 | int childLeft = offsetX + (lp.isFullScreenPage ? 0 : getPaddingLeft()); |
Adam Cohen | edb4076 | 2013-07-18 16:45:45 -0700 | [diff] [blame] | 907 | if (mPageScrolls == null || getChildCount() != mChildCountOnLastLayout) { |
| 908 | mPageScrolls = new int[getChildCount()]; |
| 909 | } |
| 910 | |
Adam Cohen | 0ffac43 | 2013-07-10 11:19:26 -0700 | [diff] [blame] | 911 | for (int i = startIndex; i != endIndex; i += delta) { |
Adam Cohen | 22f823d | 2011-09-01 17:22:18 -0700 | [diff] [blame] | 912 | final View child = getPageAt(i); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 913 | if (child.getVisibility() != View.GONE) { |
Adam Cohen | 3b185e2 | 2013-10-29 14:45:58 -0700 | [diff] [blame] | 914 | lp = (LayoutParams) child.getLayoutParams(); |
Vladimir Marko | 2824b07 | 2013-10-04 16:42:17 +0100 | [diff] [blame] | 915 | int childTop; |
| 916 | if (lp.isFullScreenPage) { |
| 917 | childTop = offsetY; |
| 918 | } else { |
| 919 | childTop = offsetY + getPaddingTop() + mInsets.top; |
| 920 | if (mCenterPagesVertically) { |
| 921 | childTop += (getViewportHeight() - mInsets.top - mInsets.bottom - verticalPadding - child.getMeasuredHeight()) / 2; |
| 922 | } |
| 923 | } |
| 924 | |
Adam Cohen | 96d30a1 | 2013-07-16 18:13:21 -0700 | [diff] [blame] | 925 | final int childWidth = child.getMeasuredWidth(); |
Adam Lesinski | 6b879f0 | 2010-11-04 16:15:23 -0700 | [diff] [blame] | 926 | final int childHeight = child.getMeasuredHeight(); |
Michael Jurka | d3ef306 | 2010-11-23 16:23:58 -0800 | [diff] [blame] | 927 | |
Winson Chung | 785d2eb | 2011-04-14 16:08:02 -0700 | [diff] [blame] | 928 | if (DEBUG) Log.d(TAG, "\tlayout-child" + i + ": " + childLeft + ", " + childTop); |
Adam Lesinski | 6b879f0 | 2010-11-04 16:15:23 -0700 | [diff] [blame] | 929 | child.layout(childLeft, childTop, |
Michael Jurka | d3ef306 | 2010-11-23 16:23:58 -0800 | [diff] [blame] | 930 | childLeft + child.getMeasuredWidth(), childTop + childHeight); |
Adam Cohen | edb4076 | 2013-07-18 16:45:45 -0700 | [diff] [blame] | 931 | |
Adam Cohen | 3b185e2 | 2013-10-29 14:45:58 -0700 | [diff] [blame] | 932 | int scrollOffsetLeft = lp.isFullScreenPage ? 0 : getPaddingLeft(); |
| 933 | mPageScrolls[i] = childLeft - scrollOffsetLeft - offsetX; |
| 934 | childLeft += childWidth + mPageSpacing; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 935 | } |
| 936 | } |
Winson Chung | c3665fa | 2011-09-14 17:56:27 -0700 | [diff] [blame] | 937 | |
| 938 | if (mFirstLayout && mCurrentPage >= 0 && mCurrentPage < getChildCount()) { |
| 939 | setHorizontalScrollBarEnabled(false); |
Michael Jurka | dd6c091 | 2012-01-16 06:46:20 -0800 | [diff] [blame] | 940 | updateCurrentPageScroll(); |
Winson Chung | c3665fa | 2011-09-14 17:56:27 -0700 | [diff] [blame] | 941 | setHorizontalScrollBarEnabled(true); |
| 942 | mFirstLayout = false; |
| 943 | } |
Adam Cohen | f698c6e | 2013-07-17 18:44:25 -0700 | [diff] [blame] | 944 | |
| 945 | if (childCount > 0) { |
| 946 | final int index = isLayoutRtl() ? 0 : childCount - 1; |
Adam Cohen | edb4076 | 2013-07-18 16:45:45 -0700 | [diff] [blame] | 947 | mMaxScrollX = getScrollForPage(index); |
Adam Cohen | f698c6e | 2013-07-17 18:44:25 -0700 | [diff] [blame] | 948 | } else { |
| 949 | mMaxScrollX = 0; |
| 950 | } |
| 951 | |
| 952 | if (mScroller.isFinished() && mChildCountOnLastLayout != getChildCount() && |
| 953 | !mDeferringForDelete) { |
Adam Cohen | 21cd002 | 2013-10-09 18:57:02 -0700 | [diff] [blame] | 954 | if (mRestorePage != INVALID_RESTORE_PAGE) { |
Winson Chung | 8c87cd8 | 2013-07-23 16:20:10 -0700 | [diff] [blame] | 955 | setCurrentPage(mRestorePage); |
Adam Cohen | 21cd002 | 2013-10-09 18:57:02 -0700 | [diff] [blame] | 956 | mRestorePage = INVALID_RESTORE_PAGE; |
Winson Chung | 8c87cd8 | 2013-07-23 16:20:10 -0700 | [diff] [blame] | 957 | } else { |
| 958 | setCurrentPage(getNextPage()); |
| 959 | } |
Adam Cohen | f698c6e | 2013-07-17 18:44:25 -0700 | [diff] [blame] | 960 | } |
| 961 | mChildCountOnLastLayout = getChildCount(); |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 962 | |
| 963 | if (isReordering(true)) { |
| 964 | updateDragViewTranslationDuringDrag(); |
| 965 | } |
Winson Chung | e3193b9 | 2010-09-10 11:44:42 -0700 | [diff] [blame] | 966 | } |
| 967 | |
Adam Cohen | 3b185e2 | 2013-10-29 14:45:58 -0700 | [diff] [blame] | 968 | public void setPageSpacing(int pageSpacing) { |
| 969 | mPageSpacing = pageSpacing; |
| 970 | requestLayout(); |
| 971 | } |
| 972 | |
Adam Cohen | f34bab5 | 2010-09-30 14:11:56 -0700 | [diff] [blame] | 973 | protected void screenScrolled(int screenCenter) { |
Michael Jurka | 869390b | 2012-05-06 15:55:19 -0700 | [diff] [blame] | 974 | boolean isInOverscroll = mOverScrollX < 0 || mOverScrollX > mMaxScrollX; |
| 975 | |
| 976 | if (mFadeInAdjacentScreens && !isInOverscroll) { |
Adam Cohen | 7389496 | 2011-10-31 13:17:17 -0700 | [diff] [blame] | 977 | for (int i = 0; i < getChildCount(); i++) { |
| 978 | View child = getChildAt(i); |
| 979 | if (child != null) { |
| 980 | float scrollProgress = getScrollProgress(screenCenter, child, i); |
| 981 | float alpha = 1 - Math.abs(scrollProgress); |
Michael Jurka | 7372c59 | 2012-01-16 04:21:35 -0800 | [diff] [blame] | 982 | child.setAlpha(alpha); |
Adam Cohen | 7389496 | 2011-10-31 13:17:17 -0700 | [diff] [blame] | 983 | } |
| 984 | } |
| 985 | invalidate(); |
| 986 | } |
Adam Cohen | f34bab5 | 2010-09-30 14:11:56 -0700 | [diff] [blame] | 987 | } |
| 988 | |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 989 | protected void enablePagedViewAnimations() { |
| 990 | mAllowPagedViewAnimations = true; |
| 991 | |
| 992 | } |
| 993 | protected void disablePagedViewAnimations() { |
| 994 | mAllowPagedViewAnimations = false; |
| 995 | } |
| 996 | |
Winson Chung | e3193b9 | 2010-09-10 11:44:42 -0700 | [diff] [blame] | 997 | @Override |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 998 | public void onChildViewAdded(View parent, View child) { |
Winson Chung | d2be381 | 2013-07-16 11:11:32 -0700 | [diff] [blame] | 999 | // Update the page indicator, we don't update the page indicator as we |
| 1000 | // add/remove pages |
| 1001 | if (mPageIndicator != null && !isReordering(false)) { |
Winson Chung | 82dfe58 | 2013-07-26 15:07:49 -0700 | [diff] [blame] | 1002 | int pageIndex = indexOfChild(child); |
Winson Chung | 7819a56 | 2013-09-19 15:55:45 -0700 | [diff] [blame] | 1003 | mPageIndicator.addMarker(pageIndex, |
| 1004 | getPageIndicatorMarker(pageIndex), |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 1005 | mAllowPagedViewAnimations); |
Winson Chung | d2be381 | 2013-07-16 11:11:32 -0700 | [diff] [blame] | 1006 | } |
| 1007 | |
Adam Cohen | 2591f6a | 2011-10-25 14:36:40 -0700 | [diff] [blame] | 1008 | // This ensures that when children are added, they get the correct transforms / alphas |
| 1009 | // in accordance with any scroll effects. |
| 1010 | mForceScreenScrolled = true; |
Adam Cohen | 7a9e58a | 2013-10-01 18:02:13 -0700 | [diff] [blame] | 1011 | updateFreescrollBounds(); |
Adam Cohen | 2591f6a | 2011-10-25 14:36:40 -0700 | [diff] [blame] | 1012 | invalidate(); |
| 1013 | } |
| 1014 | |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 1015 | @Override |
| 1016 | public void onChildViewRemoved(View parent, View child) { |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1017 | mForceScreenScrolled = true; |
Adam Cohen | 7a9e58a | 2013-10-01 18:02:13 -0700 | [diff] [blame] | 1018 | updateFreescrollBounds(); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1019 | invalidate(); |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 1020 | } |
| 1021 | |
Winson Chung | d2be381 | 2013-07-16 11:11:32 -0700 | [diff] [blame] | 1022 | private void removeMarkerForView(int index) { |
| 1023 | // Update the page indicator, we don't update the page indicator as we |
| 1024 | // add/remove pages |
| 1025 | if (mPageIndicator != null && !isReordering(false)) { |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 1026 | mPageIndicator.removeMarker(index, mAllowPagedViewAnimations); |
Winson Chung | d2be381 | 2013-07-16 11:11:32 -0700 | [diff] [blame] | 1027 | } |
| 1028 | } |
| 1029 | |
| 1030 | @Override |
| 1031 | public void removeView(View v) { |
| 1032 | // XXX: We should find a better way to hook into this before the view |
| 1033 | // gets removed form its parent... |
| 1034 | removeMarkerForView(indexOfChild(v)); |
| 1035 | super.removeView(v); |
| 1036 | } |
| 1037 | @Override |
| 1038 | public void removeViewInLayout(View v) { |
| 1039 | // XXX: We should find a better way to hook into this before the view |
| 1040 | // gets removed form its parent... |
| 1041 | removeMarkerForView(indexOfChild(v)); |
| 1042 | super.removeViewInLayout(v); |
| 1043 | } |
| 1044 | @Override |
| 1045 | public void removeViewAt(int index) { |
| 1046 | // XXX: We should find a better way to hook into this before the view |
| 1047 | // gets removed form its parent... |
| 1048 | removeViewAt(index); |
| 1049 | super.removeViewAt(index); |
| 1050 | } |
| 1051 | @Override |
| 1052 | public void removeAllViewsInLayout() { |
| 1053 | // Update the page indicator, we don't update the page indicator as we |
| 1054 | // add/remove pages |
| 1055 | if (mPageIndicator != null) { |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 1056 | mPageIndicator.removeAllMarkers(mAllowPagedViewAnimations); |
Winson Chung | d2be381 | 2013-07-16 11:11:32 -0700 | [diff] [blame] | 1057 | } |
| 1058 | |
| 1059 | super.removeAllViewsInLayout(); |
| 1060 | } |
| 1061 | |
Adam Cohen | 7389496 | 2011-10-31 13:17:17 -0700 | [diff] [blame] | 1062 | protected int getChildOffset(int index) { |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1063 | if (index < 0 || index > getChildCount() - 1) return 0; |
| 1064 | |
Adam Cohen | f698c6e | 2013-07-17 18:44:25 -0700 | [diff] [blame] | 1065 | int offset = getPageAt(index).getLeft() - getViewportOffsetX(); |
Adam Cohen | 7389496 | 2011-10-31 13:17:17 -0700 | [diff] [blame] | 1066 | |
Adam Cohen | f698c6e | 2013-07-17 18:44:25 -0700 | [diff] [blame] | 1067 | return offset; |
Adam Cohen | 7389496 | 2011-10-31 13:17:17 -0700 | [diff] [blame] | 1068 | } |
| 1069 | |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 1070 | protected void getOverviewModePages(int[] range) { |
Winson Chung | c9ca298 | 2013-07-19 12:07:38 -0700 | [diff] [blame] | 1071 | range[0] = 0; |
Adam Cohen | 1f1f45d | 2013-10-02 09:40:18 -0700 | [diff] [blame] | 1072 | range[1] = Math.max(0, getChildCount() - 1); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1073 | } |
| 1074 | |
Michael Jurka | dde558b | 2011-11-09 22:09:06 -0800 | [diff] [blame] | 1075 | protected void getVisiblePages(int[] range) { |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 1076 | final int pageCount = getChildCount(); |
Winson Chung | c9ca298 | 2013-07-19 12:07:38 -0700 | [diff] [blame] | 1077 | mTmpIntPoint[0] = mTmpIntPoint[1] = 0; |
Michael Jurka | 4ff7d79 | 2012-04-02 03:46:50 -0700 | [diff] [blame] | 1078 | |
Adam Cohen | af9b0e5 | 2013-09-23 19:27:38 -0700 | [diff] [blame] | 1079 | range[0] = -1; |
| 1080 | range[1] = -1; |
| 1081 | |
Michael Jurka | c4fb917 | 2010-09-02 17:19:20 -0700 | [diff] [blame] | 1082 | if (pageCount > 0) { |
Winson Chung | c9ca298 | 2013-07-19 12:07:38 -0700 | [diff] [blame] | 1083 | int viewportWidth = getViewportWidth(); |
Adam Cohen | af9b0e5 | 2013-09-23 19:27:38 -0700 | [diff] [blame] | 1084 | int curScreen = 0; |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1085 | |
Adam Cohen | af9b0e5 | 2013-09-23 19:27:38 -0700 | [diff] [blame] | 1086 | int count = getChildCount(); |
| 1087 | for (int i = 0; i < count; i++) { |
| 1088 | View currPage = getPageAt(i); |
Winson Chung | c9ca298 | 2013-07-19 12:07:38 -0700 | [diff] [blame] | 1089 | |
Winson Chung | c9ca298 | 2013-07-19 12:07:38 -0700 | [diff] [blame] | 1090 | mTmpIntPoint[0] = 0; |
Winson Chung | c763c4e | 2013-07-19 13:49:06 -0700 | [diff] [blame] | 1091 | Utilities.getDescendantCoordRelativeToParent(currPage, this, mTmpIntPoint, false); |
Adam Cohen | af9b0e5 | 2013-09-23 19:27:38 -0700 | [diff] [blame] | 1092 | if (mTmpIntPoint[0] > viewportWidth) { |
| 1093 | if (range[0] == -1) { |
| 1094 | continue; |
| 1095 | } else { |
| 1096 | break; |
| 1097 | } |
| 1098 | } |
| 1099 | |
Adam Cohen | 6a678da | 2013-09-24 10:58:01 -0700 | [diff] [blame] | 1100 | mTmpIntPoint[0] = currPage.getMeasuredWidth(); |
Adam Cohen | af9b0e5 | 2013-09-23 19:27:38 -0700 | [diff] [blame] | 1101 | Utilities.getDescendantCoordRelativeToParent(currPage, this, mTmpIntPoint, false); |
| 1102 | if (mTmpIntPoint[0] < 0) { |
| 1103 | if (range[0] == -1) { |
| 1104 | continue; |
| 1105 | } else { |
| 1106 | break; |
| 1107 | } |
| 1108 | } |
| 1109 | curScreen = i; |
| 1110 | if (range[0] < 0) { |
| 1111 | range[0] = curScreen; |
Winson Chung | c9ca298 | 2013-07-19 12:07:38 -0700 | [diff] [blame] | 1112 | } |
| 1113 | } |
Adam Cohen | af9b0e5 | 2013-09-23 19:27:38 -0700 | [diff] [blame] | 1114 | |
| 1115 | range[1] = curScreen; |
Michael Jurka | dde558b | 2011-11-09 22:09:06 -0800 | [diff] [blame] | 1116 | } else { |
| 1117 | range[0] = -1; |
| 1118 | range[1] = -1; |
| 1119 | } |
| 1120 | } |
| 1121 | |
Michael Jurka | 920d7f4 | 2012-05-14 16:29:55 -0700 | [diff] [blame] | 1122 | protected boolean shouldDrawChild(View child) { |
Adam Cohen | f343499 | 2013-09-16 16:52:59 -0700 | [diff] [blame] | 1123 | return child.getAlpha() > 0 && child.getVisibility() == VISIBLE; |
Michael Jurka | 920d7f4 | 2012-05-14 16:29:55 -0700 | [diff] [blame] | 1124 | } |
| 1125 | |
Michael Jurka | dde558b | 2011-11-09 22:09:06 -0800 | [diff] [blame] | 1126 | @Override |
| 1127 | protected void dispatchDraw(Canvas canvas) { |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1128 | int halfScreenSize = getViewportWidth() / 2; |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 1129 | // mOverScrollX is equal to getScrollX() when we're within the normal scroll range. |
| 1130 | // Otherwise it is equal to the scaled overscroll position. |
Adam Cohen | ebea84d | 2011-11-09 17:20:41 -0800 | [diff] [blame] | 1131 | int screenCenter = mOverScrollX + halfScreenSize; |
Michael Jurka | dde558b | 2011-11-09 22:09:06 -0800 | [diff] [blame] | 1132 | |
| 1133 | if (screenCenter != mLastScreenCenter || mForceScreenScrolled) { |
Michael Jurka | b06d95f | 2012-04-02 06:26:53 -0700 | [diff] [blame] | 1134 | // set mForceScreenScrolled before calling screenScrolled so that screenScrolled can |
| 1135 | // set it for the next frame |
| 1136 | mForceScreenScrolled = false; |
Michael Jurka | dde558b | 2011-11-09 22:09:06 -0800 | [diff] [blame] | 1137 | screenScrolled(screenCenter); |
| 1138 | mLastScreenCenter = screenCenter; |
Michael Jurka | dde558b | 2011-11-09 22:09:06 -0800 | [diff] [blame] | 1139 | } |
| 1140 | |
| 1141 | // Find out which screens are visible; as an optimization we only call draw on them |
| 1142 | final int pageCount = getChildCount(); |
| 1143 | if (pageCount > 0) { |
| 1144 | getVisiblePages(mTempVisiblePagesRange); |
| 1145 | final int leftScreen = mTempVisiblePagesRange[0]; |
| 1146 | final int rightScreen = mTempVisiblePagesRange[1]; |
Winson Chung | c6f10b9 | 2011-11-14 11:39:07 -0800 | [diff] [blame] | 1147 | if (leftScreen != -1 && rightScreen != -1) { |
| 1148 | final long drawingTime = getDrawingTime(); |
| 1149 | // Clip to the bounds |
| 1150 | canvas.save(); |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 1151 | canvas.clipRect(getScrollX(), getScrollY(), getScrollX() + getRight() - getLeft(), |
| 1152 | getScrollY() + getBottom() - getTop()); |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 1153 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1154 | // Draw all the children, leaving the drag view for last |
| 1155 | for (int i = pageCount - 1; i >= 0; i--) { |
Michael Jurka | 80c6985 | 2011-12-16 14:16:32 -0800 | [diff] [blame] | 1156 | final View v = getPageAt(i); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1157 | if (v == mDragView) continue; |
Michael Jurka | 5e368ff | 2012-05-14 23:13:15 -0700 | [diff] [blame] | 1158 | if (mForceDrawAllChildrenNextFrame || |
| 1159 | (leftScreen <= i && i <= rightScreen && shouldDrawChild(v))) { |
Michael Jurka | 80c6985 | 2011-12-16 14:16:32 -0800 | [diff] [blame] | 1160 | drawChild(canvas, v, drawingTime); |
Michael Jurka | 80c6985 | 2011-12-16 14:16:32 -0800 | [diff] [blame] | 1161 | } |
Winson Chung | c6f10b9 | 2011-11-14 11:39:07 -0800 | [diff] [blame] | 1162 | } |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1163 | // Draw the drag view on top (if there is one) |
| 1164 | if (mDragView != null) { |
| 1165 | drawChild(canvas, mDragView, drawingTime); |
| 1166 | } |
| 1167 | |
Michael Jurka | 5e368ff | 2012-05-14 23:13:15 -0700 | [diff] [blame] | 1168 | mForceDrawAllChildrenNextFrame = false; |
Winson Chung | c6f10b9 | 2011-11-14 11:39:07 -0800 | [diff] [blame] | 1169 | canvas.restore(); |
Michael Jurka | c4fb917 | 2010-09-02 17:19:20 -0700 | [diff] [blame] | 1170 | } |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 1171 | } |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1172 | } |
| 1173 | |
| 1174 | @Override |
| 1175 | public boolean requestChildRectangleOnScreen(View child, Rect rectangle, boolean immediate) { |
Adam Cohen | ae4f155 | 2011-10-20 00:15:42 -0700 | [diff] [blame] | 1176 | int page = indexToPage(indexOfChild(child)); |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 1177 | if (page != mCurrentPage || !mScroller.isFinished()) { |
| 1178 | snapToPage(page); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1179 | return true; |
| 1180 | } |
| 1181 | return false; |
| 1182 | } |
| 1183 | |
| 1184 | @Override |
| 1185 | protected boolean onRequestFocusInDescendants(int direction, Rect previouslyFocusedRect) { |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 1186 | int focusablePage; |
| 1187 | if (mNextPage != INVALID_PAGE) { |
| 1188 | focusablePage = mNextPage; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1189 | } else { |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 1190 | focusablePage = mCurrentPage; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1191 | } |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 1192 | View v = getPageAt(focusablePage); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1193 | if (v != null) { |
Adam Cohen | 76fc085 | 2011-06-17 13:26:23 -0700 | [diff] [blame] | 1194 | return v.requestFocus(direction, previouslyFocusedRect); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1195 | } |
| 1196 | return false; |
| 1197 | } |
| 1198 | |
| 1199 | @Override |
| 1200 | public boolean dispatchUnhandledMove(View focused, int direction) { |
Adam Cohen | 0ffac43 | 2013-07-10 11:19:26 -0700 | [diff] [blame] | 1201 | // XXX-RTL: This will be fixed in a future CL |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1202 | if (direction == View.FOCUS_LEFT) { |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 1203 | if (getCurrentPage() > 0) { |
| 1204 | snapToPage(getCurrentPage() - 1); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1205 | return true; |
| 1206 | } |
| 1207 | } else if (direction == View.FOCUS_RIGHT) { |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 1208 | if (getCurrentPage() < getPageCount() - 1) { |
| 1209 | snapToPage(getCurrentPage() + 1); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1210 | return true; |
| 1211 | } |
| 1212 | } |
| 1213 | return super.dispatchUnhandledMove(focused, direction); |
| 1214 | } |
| 1215 | |
| 1216 | @Override |
| 1217 | public void addFocusables(ArrayList<View> views, int direction, int focusableMode) { |
Adam Cohen | 0ffac43 | 2013-07-10 11:19:26 -0700 | [diff] [blame] | 1218 | // XXX-RTL: This will be fixed in a future CL |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 1219 | if (mCurrentPage >= 0 && mCurrentPage < getPageCount()) { |
alanv | af51995 | 2012-05-07 17:33:22 -0700 | [diff] [blame] | 1220 | getPageAt(mCurrentPage).addFocusables(views, direction, focusableMode); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1221 | } |
| 1222 | if (direction == View.FOCUS_LEFT) { |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 1223 | if (mCurrentPage > 0) { |
alanv | af51995 | 2012-05-07 17:33:22 -0700 | [diff] [blame] | 1224 | getPageAt(mCurrentPage - 1).addFocusables(views, direction, focusableMode); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1225 | } |
| 1226 | } else if (direction == View.FOCUS_RIGHT){ |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 1227 | if (mCurrentPage < getPageCount() - 1) { |
alanv | af51995 | 2012-05-07 17:33:22 -0700 | [diff] [blame] | 1228 | getPageAt(mCurrentPage + 1).addFocusables(views, direction, focusableMode); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1229 | } |
| 1230 | } |
| 1231 | } |
| 1232 | |
| 1233 | /** |
| 1234 | * If one of our descendant views decides that it could be focused now, only |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 1235 | * pass that along if it's on the current page. |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1236 | * |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 1237 | * This happens when live folders requery, and if they're off page, they |
| 1238 | * end up calling requestFocus, which pulls it on page. |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1239 | */ |
| 1240 | @Override |
| 1241 | public void focusableViewAvailable(View focused) { |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 1242 | View current = getPageAt(mCurrentPage); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1243 | View v = focused; |
| 1244 | while (true) { |
| 1245 | if (v == current) { |
| 1246 | super.focusableViewAvailable(focused); |
| 1247 | return; |
| 1248 | } |
| 1249 | if (v == this) { |
| 1250 | return; |
| 1251 | } |
| 1252 | ViewParent parent = v.getParent(); |
| 1253 | if (parent instanceof View) { |
| 1254 | v = (View)v.getParent(); |
| 1255 | } else { |
| 1256 | return; |
| 1257 | } |
| 1258 | } |
| 1259 | } |
| 1260 | |
| 1261 | /** |
| 1262 | * {@inheritDoc} |
| 1263 | */ |
| 1264 | @Override |
| 1265 | public void requestDisallowInterceptTouchEvent(boolean disallowIntercept) { |
| 1266 | if (disallowIntercept) { |
| 1267 | // We need to make sure to cancel our long press if |
| 1268 | // a scrollable widget takes over touch events |
Adam Cohen | 22f823d | 2011-09-01 17:22:18 -0700 | [diff] [blame] | 1269 | final View currentPage = getPageAt(mCurrentPage); |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 1270 | currentPage.cancelLongPress(); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1271 | } |
| 1272 | super.requestDisallowInterceptTouchEvent(disallowIntercept); |
| 1273 | } |
| 1274 | |
Patrick Dubroy | d0ce1ec | 2011-01-19 18:47:27 -0800 | [diff] [blame] | 1275 | /** |
| 1276 | * Return true if a tap at (x, y) should trigger a flip to the previous page. |
| 1277 | */ |
| 1278 | protected boolean hitsPreviousPage(float x, float y) { |
Adam Cohen | 0ffac43 | 2013-07-10 11:19:26 -0700 | [diff] [blame] | 1279 | if (isLayoutRtl()) { |
| 1280 | return (x > (getViewportOffsetX() + getViewportWidth() - |
Adam Cohen | 3b185e2 | 2013-10-29 14:45:58 -0700 | [diff] [blame] | 1281 | getPaddingRight() - mPageSpacing)); |
Adam Cohen | 0ffac43 | 2013-07-10 11:19:26 -0700 | [diff] [blame] | 1282 | } |
Adam Cohen | 3b185e2 | 2013-10-29 14:45:58 -0700 | [diff] [blame] | 1283 | return (x < getViewportOffsetX() + getPaddingLeft() + mPageSpacing); |
Patrick Dubroy | d0ce1ec | 2011-01-19 18:47:27 -0800 | [diff] [blame] | 1284 | } |
| 1285 | |
| 1286 | /** |
| 1287 | * Return true if a tap at (x, y) should trigger a flip to the next page. |
| 1288 | */ |
| 1289 | protected boolean hitsNextPage(float x, float y) { |
Adam Cohen | 0ffac43 | 2013-07-10 11:19:26 -0700 | [diff] [blame] | 1290 | if (isLayoutRtl()) { |
Adam Cohen | 3b185e2 | 2013-10-29 14:45:58 -0700 | [diff] [blame] | 1291 | return (x < getViewportOffsetX() + getPaddingLeft() + mPageSpacing); |
Adam Cohen | 0ffac43 | 2013-07-10 11:19:26 -0700 | [diff] [blame] | 1292 | } |
| 1293 | return (x > (getViewportOffsetX() + getViewportWidth() - |
Adam Cohen | 3b185e2 | 2013-10-29 14:45:58 -0700 | [diff] [blame] | 1294 | getPaddingRight() - mPageSpacing)); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1295 | } |
Winson Chung | 52aee60 | 2013-01-30 12:01:02 -0800 | [diff] [blame] | 1296 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1297 | /** Returns whether x and y originated within the buffered viewport */ |
| 1298 | private boolean isTouchPointInViewportWithBuffer(int x, int y) { |
| 1299 | mTmpRect.set(mViewport.left - mViewport.width() / 2, mViewport.top, |
| 1300 | mViewport.right + mViewport.width() / 2, mViewport.bottom); |
| 1301 | return mTmpRect.contains(x, y); |
| 1302 | } |
| 1303 | |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1304 | @Override |
| 1305 | public boolean onInterceptTouchEvent(MotionEvent ev) { |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1306 | if (DISABLE_TOUCH_INTERACTION) { |
| 1307 | return false; |
| 1308 | } |
| 1309 | |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1310 | /* |
| 1311 | * This method JUST determines whether we want to intercept the motion. |
| 1312 | * If we return true, onTouchEvent will be called and we do the actual |
| 1313 | * scrolling there. |
| 1314 | */ |
Adam Cohen | 6342bba | 2011-03-10 11:33:35 -0800 | [diff] [blame] | 1315 | acquireVelocityTrackerAndAddMovement(ev); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1316 | |
Winson Chung | 45e1d6e | 2010-11-09 17:19:49 -0800 | [diff] [blame] | 1317 | // Skip touch handling if there are no pages to swipe |
| 1318 | if (getChildCount() <= 0) return super.onInterceptTouchEvent(ev); |
| 1319 | |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1320 | /* |
| 1321 | * Shortcut the most recurring case: the user is in the dragging |
| 1322 | * state and he is moving his finger. We want to intercept this |
| 1323 | * motion. |
| 1324 | */ |
| 1325 | final int action = ev.getAction(); |
| 1326 | if ((action == MotionEvent.ACTION_MOVE) && |
| 1327 | (mTouchState == TOUCH_STATE_SCROLLING)) { |
| 1328 | return true; |
| 1329 | } |
| 1330 | |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1331 | switch (action & MotionEvent.ACTION_MASK) { |
| 1332 | case MotionEvent.ACTION_MOVE: { |
| 1333 | /* |
| 1334 | * mIsBeingDragged == false, otherwise the shortcut would have caught it. Check |
| 1335 | * whether the user has moved far enough from his original down touch. |
| 1336 | */ |
Michael Jurka | 1ff706b | 2010-09-14 17:35:20 -0700 | [diff] [blame] | 1337 | if (mActivePointerId != INVALID_POINTER) { |
| 1338 | determineScrollingStart(ev); |
Michael Jurka | 1ff706b | 2010-09-14 17:35:20 -0700 | [diff] [blame] | 1339 | } |
| 1340 | // if mActivePointerId is INVALID_POINTER, then we must have missed an ACTION_DOWN |
| 1341 | // event. in that case, treat the first occurence of a move event as a ACTION_DOWN |
| 1342 | // i.e. fall through to the next case (don't break) |
| 1343 | // (We sometimes miss ACTION_DOWN events in Workspace because it ignores all events |
| 1344 | // while it's small- this was causing a crash before we checked for INVALID_POINTER) |
Adam Cohen | 93c9756 | 2013-09-26 13:48:01 -0700 | [diff] [blame] | 1345 | break; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1346 | } |
| 1347 | |
| 1348 | case MotionEvent.ACTION_DOWN: { |
| 1349 | final float x = ev.getX(); |
| 1350 | final float y = ev.getY(); |
| 1351 | // Remember location of down touch |
| 1352 | mDownMotionX = x; |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1353 | mDownMotionY = y; |
| 1354 | mDownScrollX = getScrollX(); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1355 | mLastMotionX = x; |
| 1356 | mLastMotionY = y; |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1357 | float[] p = mapPointFromViewToParent(this, x, y); |
| 1358 | mParentDownMotionX = p[0]; |
| 1359 | mParentDownMotionY = p[1]; |
Winson Chung | c0844aa | 2011-02-02 15:25:58 -0800 | [diff] [blame] | 1360 | mLastMotionXRemainder = 0; |
Adam Cohen | aefd4e1 | 2011-02-14 16:39:38 -0800 | [diff] [blame] | 1361 | mTotalMotionX = 0; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1362 | mActivePointerId = ev.getPointerId(0); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1363 | |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1364 | /* |
| 1365 | * If being flinged and user touches the screen, initiate drag; |
| 1366 | * otherwise don't. mScroller.isFinished should be false when |
| 1367 | * being flinged. |
| 1368 | */ |
Michael Jurka | fd177c1 | 2010-10-19 15:50:43 -0700 | [diff] [blame] | 1369 | final int xDist = Math.abs(mScroller.getFinalX() - mScroller.getCurrX()); |
Winson Chung | 5f2aa4e | 2010-08-20 14:49:25 -0700 | [diff] [blame] | 1370 | final boolean finishedScrolling = (mScroller.isFinished() || xDist < mTouchSlop); |
| 1371 | if (finishedScrolling) { |
| 1372 | mTouchState = TOUCH_STATE_REST; |
Adam Cohen | cae7f57 | 2013-11-04 14:42:52 -0800 | [diff] [blame] | 1373 | mScrollAbortedFromIntercept = true; |
Adam Cohen | 8bdbaab | 2013-10-29 15:25:02 -0700 | [diff] [blame] | 1374 | abortScrollerAnimation(false); |
Winson Chung | 5f2aa4e | 2010-08-20 14:49:25 -0700 | [diff] [blame] | 1375 | } else { |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1376 | if (isTouchPointInViewportWithBuffer((int) mDownMotionX, (int) mDownMotionY)) { |
| 1377 | mTouchState = TOUCH_STATE_SCROLLING; |
| 1378 | } else { |
| 1379 | mTouchState = TOUCH_STATE_REST; |
| 1380 | } |
Winson Chung | 5f2aa4e | 2010-08-20 14:49:25 -0700 | [diff] [blame] | 1381 | } |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1382 | |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 1383 | // check if this can be the beginning of a tap on the side of the pages |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1384 | // to scroll the current page |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1385 | if (!DISABLE_TOUCH_SIDE_PAGES) { |
| 1386 | if (mTouchState != TOUCH_STATE_PREV_PAGE && mTouchState != TOUCH_STATE_NEXT_PAGE) { |
| 1387 | if (getChildCount() > 0) { |
| 1388 | if (hitsPreviousPage(x, y)) { |
| 1389 | mTouchState = TOUCH_STATE_PREV_PAGE; |
| 1390 | } else if (hitsNextPage(x, y)) { |
| 1391 | mTouchState = TOUCH_STATE_NEXT_PAGE; |
| 1392 | } |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1393 | } |
| 1394 | } |
| 1395 | } |
| 1396 | break; |
| 1397 | } |
| 1398 | |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1399 | case MotionEvent.ACTION_UP: |
Jeff Brown | 1d0867c | 2010-12-02 18:27:39 -0800 | [diff] [blame] | 1400 | case MotionEvent.ACTION_CANCEL: |
Adam Cohen | cae7f57 | 2013-11-04 14:42:52 -0800 | [diff] [blame] | 1401 | if (mScrollAbortedFromIntercept) { |
| 1402 | snapToDestination(); |
| 1403 | } |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1404 | resetTouchState(); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1405 | break; |
| 1406 | |
| 1407 | case MotionEvent.ACTION_POINTER_UP: |
| 1408 | onSecondaryPointerUp(ev); |
Adam Cohen | 6342bba | 2011-03-10 11:33:35 -0800 | [diff] [blame] | 1409 | releaseVelocityTracker(); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1410 | break; |
| 1411 | } |
| 1412 | |
| 1413 | /* |
| 1414 | * The only time we want to intercept motion events is if we are in the |
| 1415 | * drag mode. |
| 1416 | */ |
| 1417 | return mTouchState != TOUCH_STATE_REST; |
| 1418 | } |
| 1419 | |
Adam Cohen | f8d2823 | 2011-02-01 21:47:00 -0800 | [diff] [blame] | 1420 | protected void determineScrollingStart(MotionEvent ev) { |
| 1421 | determineScrollingStart(ev, 1.0f); |
| 1422 | } |
| 1423 | |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1424 | /* |
| 1425 | * Determines if we should change the touch state to start scrolling after the |
| 1426 | * user moves their touch point too far. |
| 1427 | */ |
Adam Cohen | f8d2823 | 2011-02-01 21:47:00 -0800 | [diff] [blame] | 1428 | protected void determineScrollingStart(MotionEvent ev, float touchSlopScale) { |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1429 | // Disallow scrolling if we don't have a valid pointer index |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1430 | final int pointerIndex = ev.findPointerIndex(mActivePointerId); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1431 | if (pointerIndex == -1) return; |
| 1432 | |
| 1433 | // Disallow scrolling if we started the gesture from outside the viewport |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1434 | final float x = ev.getX(pointerIndex); |
| 1435 | final float y = ev.getY(pointerIndex); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1436 | if (!isTouchPointInViewportWithBuffer((int) x, (int) y)) return; |
| 1437 | |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1438 | final int xDiff = (int) Math.abs(x - mLastMotionX); |
| 1439 | final int yDiff = (int) Math.abs(y - mLastMotionY); |
| 1440 | |
Adam Cohen | f8d2823 | 2011-02-01 21:47:00 -0800 | [diff] [blame] | 1441 | final int touchSlop = Math.round(touchSlopScale * mTouchSlop); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1442 | boolean xPaged = xDiff > mPagingTouchSlop; |
| 1443 | boolean xMoved = xDiff > touchSlop; |
| 1444 | boolean yMoved = yDiff > touchSlop; |
| 1445 | |
Adam Cohen | f8d2823 | 2011-02-01 21:47:00 -0800 | [diff] [blame] | 1446 | if (xMoved || xPaged || yMoved) { |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 1447 | if (mUsePagingTouchSlop ? xPaged : xMoved) { |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1448 | // Scroll if the user moved far enough along the X axis |
| 1449 | mTouchState = TOUCH_STATE_SCROLLING; |
Adam Cohen | 6342bba | 2011-03-10 11:33:35 -0800 | [diff] [blame] | 1450 | mTotalMotionX += Math.abs(mLastMotionX - x); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1451 | mLastMotionX = x; |
Winson Chung | c0844aa | 2011-02-02 15:25:58 -0800 | [diff] [blame] | 1452 | mLastMotionXRemainder = 0; |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1453 | mTouchX = getViewportOffsetX() + getScrollX(); |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 1454 | mSmoothingTime = System.nanoTime() / NANOTIME_DIV; |
| 1455 | pageBeginMoving(); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1456 | } |
Adam Cohen | f8d2823 | 2011-02-01 21:47:00 -0800 | [diff] [blame] | 1457 | } |
| 1458 | } |
| 1459 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1460 | protected float getMaxScrollProgress() { |
| 1461 | return 1.0f; |
| 1462 | } |
| 1463 | |
Adam Cohen | f8d2823 | 2011-02-01 21:47:00 -0800 | [diff] [blame] | 1464 | protected void cancelCurrentPageLongPress() { |
| 1465 | if (mAllowLongPress) { |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1466 | //mAllowLongPress = false; |
Adam Cohen | f8d2823 | 2011-02-01 21:47:00 -0800 | [diff] [blame] | 1467 | // Try canceling the long press. It could also have been scheduled |
| 1468 | // by a distant descendant, so use the mAllowLongPress flag to block |
| 1469 | // everything |
| 1470 | final View currentPage = getPageAt(mCurrentPage); |
| 1471 | if (currentPage != null) { |
| 1472 | currentPage.cancelLongPress(); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1473 | } |
| 1474 | } |
| 1475 | } |
| 1476 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1477 | protected float getBoundedScrollProgress(int screenCenter, View v, int page) { |
| 1478 | final int halfScreenSize = getViewportWidth() / 2; |
| 1479 | |
| 1480 | screenCenter = Math.min(getScrollX() + halfScreenSize, screenCenter); |
| 1481 | screenCenter = Math.max(halfScreenSize, screenCenter); |
| 1482 | |
| 1483 | return getScrollProgress(screenCenter, v, page); |
| 1484 | } |
| 1485 | |
Adam Cohen | b5ba097 | 2011-09-07 18:02:31 -0700 | [diff] [blame] | 1486 | protected float getScrollProgress(int screenCenter, View v, int page) { |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1487 | final int halfScreenSize = getViewportWidth() / 2; |
Adam Cohen | b5ba097 | 2011-09-07 18:02:31 -0700 | [diff] [blame] | 1488 | |
Adam Cohen | edb4076 | 2013-07-18 16:45:45 -0700 | [diff] [blame] | 1489 | int delta = screenCenter - (getScrollForPage(page) + halfScreenSize); |
Adam Cohen | 3b185e2 | 2013-10-29 14:45:58 -0700 | [diff] [blame] | 1490 | int count = getChildCount(); |
| 1491 | |
| 1492 | final int totalDistance; |
| 1493 | |
| 1494 | int adjacentPage = page + 1; |
| 1495 | if ((delta < 0 && !isLayoutRtl()) || (delta > 0 && isLayoutRtl())) { |
| 1496 | adjacentPage = page - 1; |
| 1497 | } |
| 1498 | |
| 1499 | if (adjacentPage < 0 || adjacentPage > count - 1) { |
| 1500 | totalDistance = v.getMeasuredWidth() + mPageSpacing; |
| 1501 | } else { |
| 1502 | totalDistance = Math.abs(getScrollForPage(adjacentPage) - getScrollForPage(page)); |
| 1503 | } |
Adam Cohen | b5ba097 | 2011-09-07 18:02:31 -0700 | [diff] [blame] | 1504 | |
| 1505 | float scrollProgress = delta / (totalDistance * 1.0f); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1506 | scrollProgress = Math.min(scrollProgress, getMaxScrollProgress()); |
| 1507 | scrollProgress = Math.max(scrollProgress, - getMaxScrollProgress()); |
Adam Cohen | b5ba097 | 2011-09-07 18:02:31 -0700 | [diff] [blame] | 1508 | return scrollProgress; |
| 1509 | } |
| 1510 | |
Adam Cohen | edb4076 | 2013-07-18 16:45:45 -0700 | [diff] [blame] | 1511 | public int getScrollForPage(int index) { |
Adam Cohen | 1f1f45d | 2013-10-02 09:40:18 -0700 | [diff] [blame] | 1512 | if (mPageScrolls == null || index >= mPageScrolls.length || index < 0) { |
Adam Cohen | edb4076 | 2013-07-18 16:45:45 -0700 | [diff] [blame] | 1513 | return 0; |
| 1514 | } else { |
| 1515 | return mPageScrolls[index]; |
| 1516 | } |
| 1517 | } |
| 1518 | |
Adam Cohen | 564a2e7 | 2013-10-09 14:47:32 -0700 | [diff] [blame] | 1519 | // While layout transitions are occurring, a child's position may stray from its baseline |
| 1520 | // position. This method returns the magnitude of this stray at any given time. |
| 1521 | public int getLayoutTransitionOffsetForPage(int index) { |
| 1522 | if (mPageScrolls == null || index >= mPageScrolls.length || index < 0) { |
| 1523 | return 0; |
| 1524 | } else { |
| 1525 | View child = getChildAt(index); |
Adam Cohen | 3b185e2 | 2013-10-29 14:45:58 -0700 | [diff] [blame] | 1526 | |
| 1527 | int scrollOffset = 0; |
| 1528 | LayoutParams lp = (LayoutParams) child.getLayoutParams(); |
| 1529 | if (!lp.isFullScreenPage) { |
| 1530 | scrollOffset = isLayoutRtl() ? getPaddingRight() : getPaddingLeft(); |
| 1531 | } |
| 1532 | |
Adam Cohen | 564a2e7 | 2013-10-09 14:47:32 -0700 | [diff] [blame] | 1533 | int baselineX = mPageScrolls[index] + scrollOffset + getViewportOffsetX(); |
| 1534 | return (int) (child.getX() - baselineX); |
| 1535 | } |
| 1536 | } |
| 1537 | |
Adam Cohen | e0f66b5 | 2010-11-23 15:06:07 -0800 | [diff] [blame] | 1538 | // This curve determines how the effect of scrolling over the limits of the page dimishes |
| 1539 | // as the user pulls further and further from the bounds |
| 1540 | private float overScrollInfluenceCurve(float f) { |
| 1541 | f -= 1.0f; |
| 1542 | return f * f * f + 1.0f; |
| 1543 | } |
| 1544 | |
Adam Cohen | b5ba097 | 2011-09-07 18:02:31 -0700 | [diff] [blame] | 1545 | protected void acceleratedOverScroll(float amount) { |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1546 | int screenSize = getViewportWidth(); |
Adam Cohen | b5ba097 | 2011-09-07 18:02:31 -0700 | [diff] [blame] | 1547 | |
| 1548 | // We want to reach the max over scroll effect when the user has |
| 1549 | // over scrolled half the size of the screen |
| 1550 | float f = OVERSCROLL_ACCELERATE_FACTOR * (amount / screenSize); |
| 1551 | |
| 1552 | if (f == 0) return; |
| 1553 | |
| 1554 | // Clamp this factor, f, to -1 < f < 1 |
| 1555 | if (Math.abs(f) >= 1) { |
| 1556 | f /= Math.abs(f); |
| 1557 | } |
| 1558 | |
| 1559 | int overScrollAmount = (int) Math.round(f * screenSize); |
| 1560 | if (amount < 0) { |
Adam Cohen | ebea84d | 2011-11-09 17:20:41 -0800 | [diff] [blame] | 1561 | mOverScrollX = overScrollAmount; |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 1562 | super.scrollTo(0, getScrollY()); |
Adam Cohen | b5ba097 | 2011-09-07 18:02:31 -0700 | [diff] [blame] | 1563 | } else { |
Adam Cohen | ebea84d | 2011-11-09 17:20:41 -0800 | [diff] [blame] | 1564 | mOverScrollX = mMaxScrollX + overScrollAmount; |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 1565 | super.scrollTo(mMaxScrollX, getScrollY()); |
Adam Cohen | b5ba097 | 2011-09-07 18:02:31 -0700 | [diff] [blame] | 1566 | } |
| 1567 | invalidate(); |
| 1568 | } |
| 1569 | |
| 1570 | protected void dampedOverScroll(float amount) { |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1571 | int screenSize = getViewportWidth(); |
Adam Cohen | e0f66b5 | 2010-11-23 15:06:07 -0800 | [diff] [blame] | 1572 | |
| 1573 | float f = (amount / screenSize); |
| 1574 | |
| 1575 | if (f == 0) return; |
| 1576 | f = f / (Math.abs(f)) * (overScrollInfluenceCurve(Math.abs(f))); |
| 1577 | |
Adam Cohen | 7bfc979 | 2011-01-28 13:52:37 -0800 | [diff] [blame] | 1578 | // Clamp this factor, f, to -1 < f < 1 |
| 1579 | if (Math.abs(f) >= 1) { |
| 1580 | f /= Math.abs(f); |
| 1581 | } |
| 1582 | |
Adam Cohen | e0f66b5 | 2010-11-23 15:06:07 -0800 | [diff] [blame] | 1583 | int overScrollAmount = (int) Math.round(OVERSCROLL_DAMP_FACTOR * f * screenSize); |
Adam Cohen | 68d7393 | 2010-11-15 10:50:58 -0800 | [diff] [blame] | 1584 | if (amount < 0) { |
Adam Cohen | ebea84d | 2011-11-09 17:20:41 -0800 | [diff] [blame] | 1585 | mOverScrollX = overScrollAmount; |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 1586 | super.scrollTo(0, getScrollY()); |
Adam Cohen | 68d7393 | 2010-11-15 10:50:58 -0800 | [diff] [blame] | 1587 | } else { |
Adam Cohen | ebea84d | 2011-11-09 17:20:41 -0800 | [diff] [blame] | 1588 | mOverScrollX = mMaxScrollX + overScrollAmount; |
Michael Jurka | 8b805b1 | 2012-04-18 14:23:14 -0700 | [diff] [blame] | 1589 | super.scrollTo(mMaxScrollX, getScrollY()); |
Adam Cohen | 68d7393 | 2010-11-15 10:50:58 -0800 | [diff] [blame] | 1590 | } |
| 1591 | invalidate(); |
| 1592 | } |
| 1593 | |
Adam Cohen | b5ba097 | 2011-09-07 18:02:31 -0700 | [diff] [blame] | 1594 | protected void overScroll(float amount) { |
| 1595 | dampedOverScroll(amount); |
| 1596 | } |
| 1597 | |
Michael Jurka | c5b262c | 2011-01-12 20:24:50 -0800 | [diff] [blame] | 1598 | protected float maxOverScroll() { |
| 1599 | // Using the formula in overScroll, assuming that f = 1.0 (which it should generally not |
Adam Cohen | b5ba097 | 2011-09-07 18:02:31 -0700 | [diff] [blame] | 1600 | // exceed). Used to find out how much extra wallpaper we need for the over scroll effect |
Michael Jurka | c5b262c | 2011-01-12 20:24:50 -0800 | [diff] [blame] | 1601 | float f = 1.0f; |
| 1602 | f = f / (Math.abs(f)) * (overScrollInfluenceCurve(Math.abs(f))); |
| 1603 | return OVERSCROLL_DAMP_FACTOR * f; |
| 1604 | } |
| 1605 | |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 1606 | protected void enableFreeScroll() { |
| 1607 | setEnableFreeScroll(true, -1); |
| 1608 | } |
| 1609 | |
| 1610 | protected void disableFreeScroll(int snapPage) { |
| 1611 | setEnableFreeScroll(false, snapPage); |
| 1612 | } |
| 1613 | |
Adam Cohen | 7a9e58a | 2013-10-01 18:02:13 -0700 | [diff] [blame] | 1614 | void updateFreescrollBounds() { |
| 1615 | getOverviewModePages(mTempVisiblePagesRange); |
| 1616 | if (isLayoutRtl()) { |
| 1617 | mFreeScrollMinScrollX = getScrollForPage(mTempVisiblePagesRange[1]); |
| 1618 | mFreeScrollMaxScrollX = getScrollForPage(mTempVisiblePagesRange[0]); |
| 1619 | } else { |
| 1620 | mFreeScrollMinScrollX = getScrollForPage(mTempVisiblePagesRange[0]); |
| 1621 | mFreeScrollMaxScrollX = getScrollForPage(mTempVisiblePagesRange[1]); |
| 1622 | } |
| 1623 | } |
| 1624 | |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 1625 | private void setEnableFreeScroll(boolean freeScroll, int snapPage) { |
| 1626 | mFreeScroll = freeScroll; |
| 1627 | |
| 1628 | if (snapPage == -1) { |
| 1629 | snapPage = getPageNearestToCenterOfScreen(); |
| 1630 | } |
| 1631 | |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 1632 | if (!mFreeScroll) { |
| 1633 | snapToPage(snapPage); |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 1634 | } else { |
Adam Cohen | 7a9e58a | 2013-10-01 18:02:13 -0700 | [diff] [blame] | 1635 | updateFreescrollBounds(); |
| 1636 | getOverviewModePages(mTempVisiblePagesRange); |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 1637 | if (getCurrentPage() < mTempVisiblePagesRange[0]) { |
| 1638 | setCurrentPage(mTempVisiblePagesRange[0]); |
| 1639 | } else if (getCurrentPage() > mTempVisiblePagesRange[1]) { |
| 1640 | setCurrentPage(mTempVisiblePagesRange[1]); |
| 1641 | } |
| 1642 | } |
| 1643 | |
| 1644 | setEnableOverscroll(!freeScroll); |
| 1645 | } |
| 1646 | |
| 1647 | private void setEnableOverscroll(boolean enable) { |
| 1648 | mAllowOverScroll = enable; |
| 1649 | } |
| 1650 | |
| 1651 | int getNearestHoverOverPageIndex() { |
| 1652 | if (mDragView != null) { |
| 1653 | int dragX = (int) (mDragView.getLeft() + (mDragView.getMeasuredWidth() / 2) |
| 1654 | + mDragView.getTranslationX()); |
| 1655 | getOverviewModePages(mTempVisiblePagesRange); |
| 1656 | int minDistance = Integer.MAX_VALUE; |
| 1657 | int minIndex = indexOfChild(mDragView); |
| 1658 | for (int i = mTempVisiblePagesRange[0]; i <= mTempVisiblePagesRange[1]; i++) { |
| 1659 | View page = getPageAt(i); |
| 1660 | int pageX = (int) (page.getLeft() + page.getMeasuredWidth() / 2); |
| 1661 | int d = Math.abs(dragX - pageX); |
| 1662 | if (d < minDistance) { |
| 1663 | minIndex = i; |
| 1664 | minDistance = d; |
| 1665 | } |
| 1666 | } |
| 1667 | return minIndex; |
| 1668 | } |
| 1669 | return -1; |
| 1670 | } |
| 1671 | |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1672 | @Override |
| 1673 | public boolean onTouchEvent(MotionEvent ev) { |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1674 | if (DISABLE_TOUCH_INTERACTION) { |
| 1675 | return false; |
| 1676 | } |
| 1677 | |
Adam Cohen | 1697b79 | 2013-09-17 19:08:21 -0700 | [diff] [blame] | 1678 | super.onTouchEvent(ev); |
| 1679 | |
Winson Chung | 45e1d6e | 2010-11-09 17:19:49 -0800 | [diff] [blame] | 1680 | // Skip touch handling if there are no pages to swipe |
| 1681 | if (getChildCount() <= 0) return super.onTouchEvent(ev); |
| 1682 | |
Michael Jurka | b8f0672 | 2010-10-10 15:58:46 -0700 | [diff] [blame] | 1683 | acquireVelocityTrackerAndAddMovement(ev); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1684 | |
| 1685 | final int action = ev.getAction(); |
| 1686 | |
| 1687 | switch (action & MotionEvent.ACTION_MASK) { |
| 1688 | case MotionEvent.ACTION_DOWN: |
| 1689 | /* |
| 1690 | * If being flinged and user touches, stop the fling. isFinished |
| 1691 | * will be false if being flinged. |
| 1692 | */ |
| 1693 | if (!mScroller.isFinished()) { |
Adam Cohen | 8bdbaab | 2013-10-29 15:25:02 -0700 | [diff] [blame] | 1694 | abortScrollerAnimation(false); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1695 | } |
| 1696 | |
| 1697 | // Remember where the motion event started |
| 1698 | mDownMotionX = mLastMotionX = ev.getX(); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1699 | mDownMotionY = mLastMotionY = ev.getY(); |
| 1700 | mDownScrollX = getScrollX(); |
| 1701 | float[] p = mapPointFromViewToParent(this, mLastMotionX, mLastMotionY); |
| 1702 | mParentDownMotionX = p[0]; |
| 1703 | mParentDownMotionY = p[1]; |
Winson Chung | c0844aa | 2011-02-02 15:25:58 -0800 | [diff] [blame] | 1704 | mLastMotionXRemainder = 0; |
Adam Cohen | aefd4e1 | 2011-02-14 16:39:38 -0800 | [diff] [blame] | 1705 | mTotalMotionX = 0; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1706 | mActivePointerId = ev.getPointerId(0); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1707 | |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 1708 | if (mTouchState == TOUCH_STATE_SCROLLING) { |
| 1709 | pageBeginMoving(); |
| 1710 | } |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1711 | break; |
| 1712 | |
| 1713 | case MotionEvent.ACTION_MOVE: |
| 1714 | if (mTouchState == TOUCH_STATE_SCROLLING) { |
| 1715 | // Scroll to follow the motion event |
| 1716 | final int pointerIndex = ev.findPointerIndex(mActivePointerId); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1717 | |
| 1718 | if (pointerIndex == -1) return true; |
| 1719 | |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1720 | final float x = ev.getX(pointerIndex); |
Winson Chung | c0844aa | 2011-02-02 15:25:58 -0800 | [diff] [blame] | 1721 | final float deltaX = mLastMotionX + mLastMotionXRemainder - x; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1722 | |
Adam Cohen | aefd4e1 | 2011-02-14 16:39:38 -0800 | [diff] [blame] | 1723 | mTotalMotionX += Math.abs(deltaX); |
| 1724 | |
Winson Chung | c0844aa | 2011-02-02 15:25:58 -0800 | [diff] [blame] | 1725 | // Only scroll and update mLastMotionX if we have moved some discrete amount. We |
| 1726 | // keep the remainder because we are actually testing if we've moved from the last |
| 1727 | // scrolled position (which is discrete). |
| 1728 | if (Math.abs(deltaX) >= 1.0f) { |
Adam Cohen | 68d7393 | 2010-11-15 10:50:58 -0800 | [diff] [blame] | 1729 | mTouchX += deltaX; |
| 1730 | mSmoothingTime = System.nanoTime() / NANOTIME_DIV; |
| 1731 | if (!mDeferScrollUpdate) { |
Winson Chung | c0844aa | 2011-02-02 15:25:58 -0800 | [diff] [blame] | 1732 | scrollBy((int) deltaX, 0); |
Winson Chung | 785d2eb | 2011-04-14 16:08:02 -0700 | [diff] [blame] | 1733 | if (DEBUG) Log.d(TAG, "onTouchEvent().Scrolling: " + deltaX); |
Adam Cohen | 68d7393 | 2010-11-15 10:50:58 -0800 | [diff] [blame] | 1734 | } else { |
| 1735 | invalidate(); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1736 | } |
Winson Chung | c0844aa | 2011-02-02 15:25:58 -0800 | [diff] [blame] | 1737 | mLastMotionX = x; |
| 1738 | mLastMotionXRemainder = deltaX - (int) deltaX; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1739 | } else { |
| 1740 | awakenScrollBars(); |
| 1741 | } |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1742 | } else if (mTouchState == TOUCH_STATE_REORDERING) { |
| 1743 | // Update the last motion position |
| 1744 | mLastMotionX = ev.getX(); |
| 1745 | mLastMotionY = ev.getY(); |
| 1746 | |
| 1747 | // Update the parent down so that our zoom animations take this new movement into |
| 1748 | // account |
| 1749 | float[] pt = mapPointFromViewToParent(this, mLastMotionX, mLastMotionY); |
| 1750 | mParentDownMotionX = pt[0]; |
| 1751 | mParentDownMotionY = pt[1]; |
| 1752 | updateDragViewTranslationDuringDrag(); |
| 1753 | |
| 1754 | // Find the closest page to the touch point |
| 1755 | final int dragViewIndex = indexOfChild(mDragView); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1756 | |
| 1757 | // Change the drag view if we are hovering over the drop target |
| 1758 | boolean isHoveringOverDelete = isHoveringOverDeleteDropTarget( |
| 1759 | (int) mParentDownMotionX, (int) mParentDownMotionY); |
| 1760 | setPageHoveringOverDeleteDropTarget(dragViewIndex, isHoveringOverDelete); |
| 1761 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1762 | if (DEBUG) Log.d(TAG, "mLastMotionX: " + mLastMotionX); |
| 1763 | if (DEBUG) Log.d(TAG, "mLastMotionY: " + mLastMotionY); |
| 1764 | if (DEBUG) Log.d(TAG, "mParentDownMotionX: " + mParentDownMotionX); |
| 1765 | if (DEBUG) Log.d(TAG, "mParentDownMotionY: " + mParentDownMotionY); |
| 1766 | |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 1767 | final int pageUnderPointIndex = getNearestHoverOverPageIndex(); |
| 1768 | if (pageUnderPointIndex > -1 && pageUnderPointIndex != indexOfChild(mDragView) && |
| 1769 | !isHoveringOverDelete) { |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1770 | mTempVisiblePagesRange[0] = 0; |
| 1771 | mTempVisiblePagesRange[1] = getPageCount() - 1; |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 1772 | getOverviewModePages(mTempVisiblePagesRange); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1773 | if (mTempVisiblePagesRange[0] <= pageUnderPointIndex && |
| 1774 | pageUnderPointIndex <= mTempVisiblePagesRange[1] && |
| 1775 | pageUnderPointIndex != mSidePageHoverIndex && mScroller.isFinished()) { |
| 1776 | mSidePageHoverIndex = pageUnderPointIndex; |
| 1777 | mSidePageHoverRunnable = new Runnable() { |
| 1778 | @Override |
| 1779 | public void run() { |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1780 | // Setup the scroll to the correct page before we swap the views |
| 1781 | snapToPage(pageUnderPointIndex); |
| 1782 | |
| 1783 | // For each of the pages between the paged view and the drag view, |
| 1784 | // animate them from the previous position to the new position in |
| 1785 | // the layout (as a result of the drag view moving in the layout) |
| 1786 | int shiftDelta = (dragViewIndex < pageUnderPointIndex) ? -1 : 1; |
| 1787 | int lowerIndex = (dragViewIndex < pageUnderPointIndex) ? |
| 1788 | dragViewIndex + 1 : pageUnderPointIndex; |
| 1789 | int upperIndex = (dragViewIndex > pageUnderPointIndex) ? |
| 1790 | dragViewIndex - 1 : pageUnderPointIndex; |
| 1791 | for (int i = lowerIndex; i <= upperIndex; ++i) { |
| 1792 | View v = getChildAt(i); |
| 1793 | // dragViewIndex < pageUnderPointIndex, so after we remove the |
| 1794 | // drag view all subsequent views to pageUnderPointIndex will |
| 1795 | // shift down. |
| 1796 | int oldX = getViewportOffsetX() + getChildOffset(i); |
| 1797 | int newX = getViewportOffsetX() + getChildOffset(i + shiftDelta); |
| 1798 | |
| 1799 | // Animate the view translation from its old position to its new |
| 1800 | // position |
| 1801 | AnimatorSet anim = (AnimatorSet) v.getTag(ANIM_TAG_KEY); |
| 1802 | if (anim != null) { |
| 1803 | anim.cancel(); |
| 1804 | } |
| 1805 | |
| 1806 | v.setTranslationX(oldX - newX); |
| 1807 | anim = new AnimatorSet(); |
| 1808 | anim.setDuration(REORDERING_REORDER_REPOSITION_DURATION); |
| 1809 | anim.playTogether( |
| 1810 | ObjectAnimator.ofFloat(v, "translationX", 0f)); |
| 1811 | anim.start(); |
| 1812 | v.setTag(anim); |
| 1813 | } |
| 1814 | |
| 1815 | removeView(mDragView); |
| 1816 | onRemoveView(mDragView, false); |
| 1817 | addView(mDragView, pageUnderPointIndex); |
| 1818 | onAddView(mDragView, pageUnderPointIndex); |
| 1819 | mSidePageHoverIndex = -1; |
Winson Chung | d2be381 | 2013-07-16 11:11:32 -0700 | [diff] [blame] | 1820 | mPageIndicator.setActiveMarker(getNextPage()); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1821 | } |
| 1822 | }; |
| 1823 | postDelayed(mSidePageHoverRunnable, REORDERING_SIDE_PAGE_HOVER_TIMEOUT); |
| 1824 | } |
| 1825 | } else { |
| 1826 | removeCallbacks(mSidePageHoverRunnable); |
| 1827 | mSidePageHoverIndex = -1; |
| 1828 | } |
Adam Cohen | 564976a | 2010-10-13 18:52:07 -0700 | [diff] [blame] | 1829 | } else { |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1830 | determineScrollingStart(ev); |
| 1831 | } |
| 1832 | break; |
| 1833 | |
| 1834 | case MotionEvent.ACTION_UP: |
| 1835 | if (mTouchState == TOUCH_STATE_SCROLLING) { |
| 1836 | final int activePointerId = mActivePointerId; |
| 1837 | final int pointerIndex = ev.findPointerIndex(activePointerId); |
| 1838 | final float x = ev.getX(pointerIndex); |
| 1839 | final VelocityTracker velocityTracker = mVelocityTracker; |
| 1840 | velocityTracker.computeCurrentVelocity(1000, mMaximumVelocity); |
| 1841 | int velocityX = (int) velocityTracker.getXVelocity(activePointerId); |
Winson Chung | 9cfd25f | 2010-10-24 16:09:28 -0700 | [diff] [blame] | 1842 | final int deltaX = (int) (x - mDownMotionX); |
Adam Cohen | 96d30a1 | 2013-07-16 18:13:21 -0700 | [diff] [blame] | 1843 | final int pageWidth = getPageAt(mCurrentPage).getMeasuredWidth(); |
Adam Cohen | 00481b3 | 2011-11-18 12:03:48 -0800 | [diff] [blame] | 1844 | boolean isSignificantMove = Math.abs(deltaX) > pageWidth * |
| 1845 | SIGNIFICANT_MOVE_THRESHOLD; |
Adam Cohen | aefd4e1 | 2011-02-14 16:39:38 -0800 | [diff] [blame] | 1846 | |
Adam Cohen | b64cb5a | 2011-02-15 13:53:42 -0800 | [diff] [blame] | 1847 | mTotalMotionX += Math.abs(mLastMotionX + mLastMotionXRemainder - x); |
| 1848 | |
Adam Cohen | 00481b3 | 2011-11-18 12:03:48 -0800 | [diff] [blame] | 1849 | boolean isFling = mTotalMotionX > MIN_LENGTH_FOR_FLING && |
Adam Cohen | 265b9a6 | 2011-12-07 14:37:18 -0800 | [diff] [blame] | 1850 | Math.abs(velocityX) > mFlingThresholdVelocity; |
Adam Cohen | 00481b3 | 2011-11-18 12:03:48 -0800 | [diff] [blame] | 1851 | |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 1852 | if (!mFreeScroll) { |
| 1853 | // In the case that the page is moved far to one direction and then is flung |
| 1854 | // in the opposite direction, we use a threshold to determine whether we should |
| 1855 | // just return to the starting page, or if we should skip one further. |
| 1856 | boolean returnToOriginalPage = false; |
| 1857 | if (Math.abs(deltaX) > pageWidth * RETURN_TO_ORIGINAL_PAGE_THRESHOLD && |
| 1858 | Math.signum(velocityX) != Math.signum(deltaX) && isFling) { |
| 1859 | returnToOriginalPage = true; |
| 1860 | } |
Adam Cohen | aefd4e1 | 2011-02-14 16:39:38 -0800 | [diff] [blame] | 1861 | |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 1862 | int finalPage; |
| 1863 | // We give flings precedence over large moves, which is why we short-circuit our |
| 1864 | // test for a large move if a fling has been registered. That is, a large |
| 1865 | // move to the left and fling to the right will register as a fling to the right. |
| 1866 | final boolean isRtl = isLayoutRtl(); |
| 1867 | boolean isDeltaXLeft = isRtl ? deltaX > 0 : deltaX < 0; |
| 1868 | boolean isVelocityXLeft = isRtl ? velocityX > 0 : velocityX < 0; |
| 1869 | if (((isSignificantMove && !isDeltaXLeft && !isFling) || |
| 1870 | (isFling && !isVelocityXLeft)) && mCurrentPage > 0) { |
| 1871 | finalPage = returnToOriginalPage ? mCurrentPage : mCurrentPage - 1; |
| 1872 | snapToPageWithVelocity(finalPage, velocityX); |
| 1873 | } else if (((isSignificantMove && isDeltaXLeft && !isFling) || |
| 1874 | (isFling && isVelocityXLeft)) && |
| 1875 | mCurrentPage < getChildCount() - 1) { |
| 1876 | finalPage = returnToOriginalPage ? mCurrentPage : mCurrentPage + 1; |
| 1877 | snapToPageWithVelocity(finalPage, velocityX); |
| 1878 | } else { |
| 1879 | snapToDestination(); |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 1880 | } |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1881 | } else { |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 1882 | if (!mScroller.isFinished()) { |
Adam Cohen | 8bdbaab | 2013-10-29 15:25:02 -0700 | [diff] [blame] | 1883 | abortScrollerAnimation(true); |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 1884 | } |
| 1885 | |
| 1886 | float scaleX = getScaleX(); |
| 1887 | int vX = (int) (-velocityX * scaleX); |
| 1888 | int initialScrollX = (int) (getScrollX() * scaleX); |
| 1889 | |
| 1890 | mScroller.fling(initialScrollX, |
| 1891 | getScrollY(), vX, 0, Integer.MIN_VALUE, Integer.MAX_VALUE, 0, 0); |
| 1892 | invalidate(); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1893 | } |
Adam Cohen | cae7f57 | 2013-11-04 14:42:52 -0800 | [diff] [blame] | 1894 | } else if (mTouchState == TOUCH_STATE_PREV_PAGE) { |
| 1895 | // at this point we have not moved beyond the touch slop |
| 1896 | // (otherwise mTouchState would be TOUCH_STATE_SCROLLING), so |
| 1897 | // we can just page |
| 1898 | int nextPage = Math.max(0, mCurrentPage - 1); |
| 1899 | if (nextPage != mCurrentPage) { |
| 1900 | snapToPage(nextPage); |
| 1901 | } else { |
| 1902 | snapToDestination(); |
| 1903 | } |
Patrick Dubroy | d0ce1ec | 2011-01-19 18:47:27 -0800 | [diff] [blame] | 1904 | } else if (mTouchState == TOUCH_STATE_NEXT_PAGE) { |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1905 | // at this point we have not moved beyond the touch slop |
| 1906 | // (otherwise mTouchState would be TOUCH_STATE_SCROLLING), so |
| 1907 | // we can just page |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 1908 | int nextPage = Math.min(getChildCount() - 1, mCurrentPage + 1); |
| 1909 | if (nextPage != mCurrentPage) { |
| 1910 | snapToPage(nextPage); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1911 | } else { |
| 1912 | snapToDestination(); |
| 1913 | } |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1914 | } else if (mTouchState == TOUCH_STATE_REORDERING) { |
| 1915 | // Update the last motion position |
| 1916 | mLastMotionX = ev.getX(); |
| 1917 | mLastMotionY = ev.getY(); |
| 1918 | |
| 1919 | // Update the parent down so that our zoom animations take this new movement into |
| 1920 | // account |
| 1921 | float[] pt = mapPointFromViewToParent(this, mLastMotionX, mLastMotionY); |
| 1922 | mParentDownMotionX = pt[0]; |
| 1923 | mParentDownMotionY = pt[1]; |
| 1924 | updateDragViewTranslationDuringDrag(); |
| 1925 | boolean handledFling = false; |
| 1926 | if (!DISABLE_FLING_TO_DELETE) { |
| 1927 | // Check the velocity and see if we are flinging-to-delete |
| 1928 | PointF flingToDeleteVector = isFlingingToDelete(); |
| 1929 | if (flingToDeleteVector != null) { |
| 1930 | onFlingToDelete(flingToDeleteVector); |
| 1931 | handledFling = true; |
| 1932 | } |
| 1933 | } |
| 1934 | if (!handledFling && isHoveringOverDeleteDropTarget((int) mParentDownMotionX, |
| 1935 | (int) mParentDownMotionY)) { |
| 1936 | onDropToDelete(); |
| 1937 | } |
Jeff Brown | 1d0867c | 2010-12-02 18:27:39 -0800 | [diff] [blame] | 1938 | } else { |
Adam Cohen | dbdff6b | 2013-09-18 19:09:15 -0700 | [diff] [blame] | 1939 | if (!mCancelTap) { |
| 1940 | onUnhandledTap(ev); |
| 1941 | } |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1942 | } |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1943 | |
| 1944 | // Remove the callback to wait for the side page hover timeout |
| 1945 | removeCallbacks(mSidePageHoverRunnable); |
| 1946 | // End any intermediate reordering states |
| 1947 | resetTouchState(); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1948 | break; |
| 1949 | |
| 1950 | case MotionEvent.ACTION_CANCEL: |
Michael Jurka | b8f0672 | 2010-10-10 15:58:46 -0700 | [diff] [blame] | 1951 | if (mTouchState == TOUCH_STATE_SCROLLING) { |
| 1952 | snapToDestination(); |
| 1953 | } |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1954 | resetTouchState(); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1955 | break; |
| 1956 | |
| 1957 | case MotionEvent.ACTION_POINTER_UP: |
| 1958 | onSecondaryPointerUp(ev); |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 1959 | releaseVelocityTracker(); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 1960 | break; |
| 1961 | } |
| 1962 | |
| 1963 | return true; |
| 1964 | } |
| 1965 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1966 | public void onFlingToDelete(View v) {} |
| 1967 | public void onRemoveView(View v, boolean deletePermanently) {} |
| 1968 | public void onRemoveViewAnimationCompleted() {} |
| 1969 | public void onAddView(View v, int index) {} |
| 1970 | |
| 1971 | private void resetTouchState() { |
| 1972 | releaseVelocityTracker(); |
| 1973 | endReordering(); |
Adam Cohen | dbdff6b | 2013-09-18 19:09:15 -0700 | [diff] [blame] | 1974 | mCancelTap = false; |
Adam Cohen | cae7f57 | 2013-11-04 14:42:52 -0800 | [diff] [blame] | 1975 | mScrollAbortedFromIntercept = false; |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1976 | mTouchState = TOUCH_STATE_REST; |
| 1977 | mActivePointerId = INVALID_POINTER; |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1978 | } |
| 1979 | |
Adam Cohen | 1697b79 | 2013-09-17 19:08:21 -0700 | [diff] [blame] | 1980 | protected void onUnhandledTap(MotionEvent ev) { |
| 1981 | ((Launcher) getContext()).onClick(this); |
| 1982 | } |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 1983 | |
Winson Chung | 185d716 | 2011-02-28 13:47:29 -0800 | [diff] [blame] | 1984 | @Override |
| 1985 | public boolean onGenericMotionEvent(MotionEvent event) { |
| 1986 | if ((event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) { |
| 1987 | switch (event.getAction()) { |
| 1988 | case MotionEvent.ACTION_SCROLL: { |
| 1989 | // Handle mouse (or ext. device) by shifting the page depending on the scroll |
| 1990 | final float vscroll; |
| 1991 | final float hscroll; |
| 1992 | if ((event.getMetaState() & KeyEvent.META_SHIFT_ON) != 0) { |
| 1993 | vscroll = 0; |
| 1994 | hscroll = event.getAxisValue(MotionEvent.AXIS_VSCROLL); |
| 1995 | } else { |
| 1996 | vscroll = -event.getAxisValue(MotionEvent.AXIS_VSCROLL); |
| 1997 | hscroll = event.getAxisValue(MotionEvent.AXIS_HSCROLL); |
| 1998 | } |
| 1999 | if (hscroll != 0 || vscroll != 0) { |
Adam Cohen | 0ffac43 | 2013-07-10 11:19:26 -0700 | [diff] [blame] | 2000 | boolean isForwardScroll = isLayoutRtl() ? (hscroll < 0 || vscroll < 0) |
| 2001 | : (hscroll > 0 || vscroll > 0); |
| 2002 | if (isForwardScroll) { |
Winson Chung | 185d716 | 2011-02-28 13:47:29 -0800 | [diff] [blame] | 2003 | scrollRight(); |
| 2004 | } else { |
| 2005 | scrollLeft(); |
| 2006 | } |
| 2007 | return true; |
| 2008 | } |
| 2009 | } |
| 2010 | } |
| 2011 | } |
| 2012 | return super.onGenericMotionEvent(event); |
| 2013 | } |
| 2014 | |
Michael Jurka | b8f0672 | 2010-10-10 15:58:46 -0700 | [diff] [blame] | 2015 | private void acquireVelocityTrackerAndAddMovement(MotionEvent ev) { |
| 2016 | if (mVelocityTracker == null) { |
| 2017 | mVelocityTracker = VelocityTracker.obtain(); |
| 2018 | } |
| 2019 | mVelocityTracker.addMovement(ev); |
| 2020 | } |
| 2021 | |
| 2022 | private void releaseVelocityTracker() { |
| 2023 | if (mVelocityTracker != null) { |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 2024 | mVelocityTracker.clear(); |
Michael Jurka | b8f0672 | 2010-10-10 15:58:46 -0700 | [diff] [blame] | 2025 | mVelocityTracker.recycle(); |
| 2026 | mVelocityTracker = null; |
| 2027 | } |
| 2028 | } |
| 2029 | |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2030 | private void onSecondaryPointerUp(MotionEvent ev) { |
| 2031 | final int pointerIndex = (ev.getAction() & MotionEvent.ACTION_POINTER_INDEX_MASK) >> |
| 2032 | MotionEvent.ACTION_POINTER_INDEX_SHIFT; |
| 2033 | final int pointerId = ev.getPointerId(pointerIndex); |
| 2034 | if (pointerId == mActivePointerId) { |
| 2035 | // This was our active pointer going up. Choose a new |
| 2036 | // active pointer and adjust accordingly. |
| 2037 | // TODO: Make this decision more intelligent. |
| 2038 | final int newPointerIndex = pointerIndex == 0 ? 1 : 0; |
| 2039 | mLastMotionX = mDownMotionX = ev.getX(newPointerIndex); |
| 2040 | mLastMotionY = ev.getY(newPointerIndex); |
Winson Chung | c0844aa | 2011-02-02 15:25:58 -0800 | [diff] [blame] | 2041 | mLastMotionXRemainder = 0; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2042 | mActivePointerId = ev.getPointerId(newPointerIndex); |
| 2043 | if (mVelocityTracker != null) { |
| 2044 | mVelocityTracker.clear(); |
| 2045 | } |
| 2046 | } |
Jeff Brown | 1d0867c | 2010-12-02 18:27:39 -0800 | [diff] [blame] | 2047 | } |
| 2048 | |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2049 | @Override |
| 2050 | public void requestChildFocus(View child, View focused) { |
| 2051 | super.requestChildFocus(child, focused); |
Adam Cohen | ae4f155 | 2011-10-20 00:15:42 -0700 | [diff] [blame] | 2052 | int page = indexToPage(indexOfChild(child)); |
Winson Chung | 97d85d2 | 2011-04-13 11:27:36 -0700 | [diff] [blame] | 2053 | if (page >= 0 && page != getCurrentPage() && !isInTouchMode()) { |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 2054 | snapToPage(page); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2055 | } |
| 2056 | } |
| 2057 | |
Winson Chung | 1908d07 | 2011-02-24 18:09:44 -0800 | [diff] [blame] | 2058 | protected int getChildWidth(int index) { |
Adam Cohen | 96d30a1 | 2013-07-16 18:13:21 -0700 | [diff] [blame] | 2059 | return getPageAt(index).getMeasuredWidth(); |
Winson Chung | 1908d07 | 2011-02-24 18:09:44 -0800 | [diff] [blame] | 2060 | } |
| 2061 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2062 | int getPageNearestToPoint(float x) { |
| 2063 | int index = 0; |
| 2064 | for (int i = 0; i < getChildCount(); ++i) { |
| 2065 | if (x < getChildAt(i).getRight() - getScrollX()) { |
| 2066 | return index; |
| 2067 | } else { |
| 2068 | index++; |
| 2069 | } |
| 2070 | } |
| 2071 | return Math.min(index, getChildCount() - 1); |
| 2072 | } |
| 2073 | |
Adam Cohen | d19d3ca | 2010-09-15 14:43:42 -0700 | [diff] [blame] | 2074 | int getPageNearestToCenterOfScreen() { |
Adam Cohen | 22f823d | 2011-09-01 17:22:18 -0700 | [diff] [blame] | 2075 | int minDistanceFromScreenCenter = Integer.MAX_VALUE; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2076 | int minDistanceFromScreenCenterIndex = -1; |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2077 | int screenCenter = getViewportOffsetX() + getScrollX() + (getViewportWidth() / 2); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2078 | final int childCount = getChildCount(); |
| 2079 | for (int i = 0; i < childCount; ++i) { |
Adam Cohen | 22f823d | 2011-09-01 17:22:18 -0700 | [diff] [blame] | 2080 | View layout = (View) getPageAt(i); |
Adam Cohen | 96d30a1 | 2013-07-16 18:13:21 -0700 | [diff] [blame] | 2081 | int childWidth = layout.getMeasuredWidth(); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2082 | int halfChildWidth = (childWidth / 2); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2083 | int childCenter = getViewportOffsetX() + getChildOffset(i) + halfChildWidth; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2084 | int distanceFromScreenCenter = Math.abs(childCenter - screenCenter); |
| 2085 | if (distanceFromScreenCenter < minDistanceFromScreenCenter) { |
| 2086 | minDistanceFromScreenCenter = distanceFromScreenCenter; |
| 2087 | minDistanceFromScreenCenterIndex = i; |
| 2088 | } |
| 2089 | } |
Adam Cohen | d19d3ca | 2010-09-15 14:43:42 -0700 | [diff] [blame] | 2090 | return minDistanceFromScreenCenterIndex; |
| 2091 | } |
| 2092 | |
| 2093 | protected void snapToDestination() { |
| 2094 | snapToPage(getPageNearestToCenterOfScreen(), PAGE_SNAP_ANIMATION_DURATION); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2095 | } |
| 2096 | |
Adam Cohen | e0f66b5 | 2010-11-23 15:06:07 -0800 | [diff] [blame] | 2097 | private static class ScrollInterpolator implements Interpolator { |
| 2098 | public ScrollInterpolator() { |
| 2099 | } |
| 2100 | |
| 2101 | public float getInterpolation(float t) { |
| 2102 | t -= 1.0f; |
| 2103 | return t*t*t*t*t + 1; |
| 2104 | } |
| 2105 | } |
| 2106 | |
| 2107 | // We want the duration of the page snap animation to be influenced by the distance that |
| 2108 | // the screen has to travel, however, we don't want this duration to be effected in a |
| 2109 | // purely linear fashion. Instead, we use this method to moderate the effect that the distance |
| 2110 | // of travel has on the overall snap duration. |
| 2111 | float distanceInfluenceForSnapDuration(float f) { |
| 2112 | f -= 0.5f; // center the values about 0. |
| 2113 | f *= 0.3f * Math.PI / 2.0f; |
| 2114 | return (float) Math.sin(f); |
| 2115 | } |
| 2116 | |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 2117 | protected void snapToPageWithVelocity(int whichPage, int velocity) { |
Adam Cohen | e0f66b5 | 2010-11-23 15:06:07 -0800 | [diff] [blame] | 2118 | whichPage = Math.max(0, Math.min(whichPage, getChildCount() - 1)); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2119 | int halfScreenSize = getViewportWidth() / 2; |
Adam Cohen | e0f66b5 | 2010-11-23 15:06:07 -0800 | [diff] [blame] | 2120 | |
Adam Cohen | edb4076 | 2013-07-18 16:45:45 -0700 | [diff] [blame] | 2121 | final int newX = getScrollForPage(whichPage); |
Adam Cohen | e0f66b5 | 2010-11-23 15:06:07 -0800 | [diff] [blame] | 2122 | int delta = newX - mUnboundedScrollX; |
| 2123 | int duration = 0; |
| 2124 | |
Adam Cohen | 265b9a6 | 2011-12-07 14:37:18 -0800 | [diff] [blame] | 2125 | if (Math.abs(velocity) < mMinFlingVelocity) { |
Adam Cohen | e0f66b5 | 2010-11-23 15:06:07 -0800 | [diff] [blame] | 2126 | // If the velocity is low enough, then treat this more as an automatic page advance |
| 2127 | // as opposed to an apparent physical response to flinging |
| 2128 | snapToPage(whichPage, PAGE_SNAP_ANIMATION_DURATION); |
| 2129 | return; |
| 2130 | } |
| 2131 | |
| 2132 | // Here we compute a "distance" that will be used in the computation of the overall |
| 2133 | // snap duration. This is a function of the actual distance that needs to be traveled; |
| 2134 | // we keep this value close to half screen size in order to reduce the variance in snap |
| 2135 | // duration as a function of the distance the page needs to travel. |
Michael Jurka | 20b7ca9 | 2011-06-07 20:09:16 -0700 | [diff] [blame] | 2136 | float distanceRatio = Math.min(1f, 1.0f * Math.abs(delta) / (2 * halfScreenSize)); |
Adam Cohen | e0f66b5 | 2010-11-23 15:06:07 -0800 | [diff] [blame] | 2137 | float distance = halfScreenSize + halfScreenSize * |
| 2138 | distanceInfluenceForSnapDuration(distanceRatio); |
| 2139 | |
| 2140 | velocity = Math.abs(velocity); |
Adam Cohen | 265b9a6 | 2011-12-07 14:37:18 -0800 | [diff] [blame] | 2141 | velocity = Math.max(mMinSnapVelocity, velocity); |
Adam Cohen | e0f66b5 | 2010-11-23 15:06:07 -0800 | [diff] [blame] | 2142 | |
| 2143 | // we want the page's snap velocity to approximately match the velocity at which the |
| 2144 | // user flings, so we scale the duration by a value near to the derivative of the scroll |
Michael Jurka | 20b7ca9 | 2011-06-07 20:09:16 -0700 | [diff] [blame] | 2145 | // interpolator at zero, ie. 5. We use 4 to make it a little slower. |
| 2146 | duration = 4 * Math.round(1000 * Math.abs(distance / velocity)); |
Adam Cohen | e0f66b5 | 2010-11-23 15:06:07 -0800 | [diff] [blame] | 2147 | |
| 2148 | snapToPage(whichPage, delta, duration); |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 2149 | } |
| 2150 | |
| 2151 | protected void snapToPage(int whichPage) { |
Winson Chung | 5f2aa4e | 2010-08-20 14:49:25 -0700 | [diff] [blame] | 2152 | snapToPage(whichPage, PAGE_SNAP_ANIMATION_DURATION); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2153 | } |
| 2154 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2155 | protected void snapToPageImmediately(int whichPage) { |
| 2156 | snapToPage(whichPage, PAGE_SNAP_ANIMATION_DURATION, true); |
| 2157 | } |
| 2158 | |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 2159 | protected void snapToPage(int whichPage, int duration) { |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2160 | snapToPage(whichPage, duration, false); |
| 2161 | } |
| 2162 | |
| 2163 | protected void snapToPage(int whichPage, int duration, boolean immediate) { |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 2164 | whichPage = Math.max(0, Math.min(whichPage, getPageCount() - 1)); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2165 | |
Adam Cohen | edb4076 | 2013-07-18 16:45:45 -0700 | [diff] [blame] | 2166 | int newX = getScrollForPage(whichPage); |
Adam Cohen | 68d7393 | 2010-11-15 10:50:58 -0800 | [diff] [blame] | 2167 | final int sX = mUnboundedScrollX; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2168 | final int delta = newX - sX; |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2169 | snapToPage(whichPage, delta, duration, immediate); |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 2170 | } |
| 2171 | |
| 2172 | protected void snapToPage(int whichPage, int delta, int duration) { |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2173 | snapToPage(whichPage, delta, duration, false); |
| 2174 | } |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 2175 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2176 | protected void snapToPage(int whichPage, int delta, int duration, boolean immediate) { |
| 2177 | mNextPage = whichPage; |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 2178 | View focusedChild = getFocusedChild(); |
| 2179 | if (focusedChild != null && whichPage != mCurrentPage && |
Adam Cohen | 22f823d | 2011-09-01 17:22:18 -0700 | [diff] [blame] | 2180 | focusedChild == getPageAt(mCurrentPage)) { |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 2181 | focusedChild.clearFocus(); |
| 2182 | } |
| 2183 | |
Adam Cohen | 5380521 | 2013-10-01 10:39:23 -0700 | [diff] [blame] | 2184 | sendScrollAccessibilityEvent(); |
| 2185 | |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 2186 | pageBeginMoving(); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2187 | awakenScrollBars(duration); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2188 | if (immediate) { |
| 2189 | duration = 0; |
| 2190 | } else if (duration == 0) { |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2191 | duration = Math.abs(delta); |
| 2192 | } |
| 2193 | |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 2194 | if (!mScroller.isFinished()) { |
| 2195 | mScroller.abortAnimation(); |
| 2196 | } |
Adam Cohen | 68d7393 | 2010-11-15 10:50:58 -0800 | [diff] [blame] | 2197 | mScroller.startScroll(mUnboundedScrollX, 0, delta, 0, duration); |
Winson Chung | 80baf5a | 2010-08-09 16:03:15 -0700 | [diff] [blame] | 2198 | |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 2199 | notifyPageSwitchListener(); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2200 | |
| 2201 | // Trigger a compute() to finish switching pages if necessary |
| 2202 | if (immediate) { |
| 2203 | computeScroll(); |
| 2204 | } |
| 2205 | |
Winson Chung | 9c0565f | 2013-07-19 13:49:06 -0700 | [diff] [blame] | 2206 | // Defer loading associated pages until the scroll settles |
| 2207 | mDeferLoadAssociatedPagesUntilScrollCompletes = true; |
| 2208 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2209 | mForceScreenScrolled = true; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2210 | invalidate(); |
| 2211 | } |
| 2212 | |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2213 | public void scrollLeft() { |
Adam Cohen | 2bf63d5 | 2013-09-29 17:46:49 -0700 | [diff] [blame] | 2214 | if (getNextPage() > 0) snapToPage(getNextPage() - 1); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2215 | } |
| 2216 | |
| 2217 | public void scrollRight() { |
Adam Cohen | 2bf63d5 | 2013-09-29 17:46:49 -0700 | [diff] [blame] | 2218 | if (getNextPage() < getChildCount() -1) snapToPage(getNextPage() + 1); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2219 | } |
| 2220 | |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 2221 | public int getPageForView(View v) { |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2222 | int result = -1; |
| 2223 | if (v != null) { |
| 2224 | ViewParent vp = v.getParent(); |
| 2225 | int count = getChildCount(); |
| 2226 | for (int i = 0; i < count; i++) { |
Adam Cohen | 22f823d | 2011-09-01 17:22:18 -0700 | [diff] [blame] | 2227 | if (vp == getPageAt(i)) { |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2228 | return i; |
| 2229 | } |
| 2230 | } |
| 2231 | } |
| 2232 | return result; |
| 2233 | } |
| 2234 | |
| 2235 | /** |
| 2236 | * @return True is long presses are still allowed for the current touch |
| 2237 | */ |
| 2238 | public boolean allowLongPress() { |
| 2239 | return mAllowLongPress; |
| 2240 | } |
| 2241 | |
Adam Cohen | dbdff6b | 2013-09-18 19:09:15 -0700 | [diff] [blame] | 2242 | @Override |
| 2243 | public boolean performLongClick() { |
| 2244 | mCancelTap = true; |
| 2245 | return super.performLongClick(); |
| 2246 | } |
| 2247 | |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 2248 | /** |
| 2249 | * Set true to allow long-press events to be triggered, usually checked by |
| 2250 | * {@link Launcher} to accept or block dpad-initiated long-presses. |
| 2251 | */ |
| 2252 | public void setAllowLongPress(boolean allowLongPress) { |
| 2253 | mAllowLongPress = allowLongPress; |
| 2254 | } |
| 2255 | |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2256 | public static class SavedState extends BaseSavedState { |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 2257 | int currentPage = -1; |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2258 | |
| 2259 | SavedState(Parcelable superState) { |
| 2260 | super(superState); |
| 2261 | } |
| 2262 | |
| 2263 | private SavedState(Parcel in) { |
| 2264 | super(in); |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 2265 | currentPage = in.readInt(); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2266 | } |
| 2267 | |
| 2268 | @Override |
| 2269 | public void writeToParcel(Parcel out, int flags) { |
| 2270 | super.writeToParcel(out, flags); |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 2271 | out.writeInt(currentPage); |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2272 | } |
| 2273 | |
| 2274 | public static final Parcelable.Creator<SavedState> CREATOR = |
| 2275 | new Parcelable.Creator<SavedState>() { |
| 2276 | public SavedState createFromParcel(Parcel in) { |
| 2277 | return new SavedState(in); |
| 2278 | } |
| 2279 | |
| 2280 | public SavedState[] newArray(int size) { |
| 2281 | return new SavedState[size]; |
| 2282 | } |
| 2283 | }; |
| 2284 | } |
| 2285 | |
Winson Chung | f314b0e | 2011-08-16 11:54:27 -0700 | [diff] [blame] | 2286 | protected void loadAssociatedPages(int page) { |
| 2287 | loadAssociatedPages(page, false); |
| 2288 | } |
| 2289 | protected void loadAssociatedPages(int page, boolean immediateAndOnly) { |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 2290 | if (mContentIsRefreshable) { |
| 2291 | final int count = getChildCount(); |
| 2292 | if (page < count) { |
Winson Chung | e3193b9 | 2010-09-10 11:44:42 -0700 | [diff] [blame] | 2293 | int lowerPageBound = getAssociatedLowerPageBound(page); |
| 2294 | int upperPageBound = getAssociatedUpperPageBound(page); |
Winson Chung | 785d2eb | 2011-04-14 16:08:02 -0700 | [diff] [blame] | 2295 | if (DEBUG) Log.d(TAG, "loadAssociatedPages: " + lowerPageBound + "/" |
| 2296 | + upperPageBound); |
Michael Jurka | 0cad111 | 2011-11-16 20:43:29 -0800 | [diff] [blame] | 2297 | // First, clear any pages that should no longer be loaded |
| 2298 | for (int i = 0; i < count; ++i) { |
| 2299 | Page layout = (Page) getPageAt(i); |
Michael Jurka | 2a4b1a8 | 2011-12-07 14:00:02 -0800 | [diff] [blame] | 2300 | if ((i < lowerPageBound) || (i > upperPageBound)) { |
Michael Jurka | 0cad111 | 2011-11-16 20:43:29 -0800 | [diff] [blame] | 2301 | if (layout.getPageChildCount() > 0) { |
| 2302 | layout.removeAllViewsOnPage(); |
| 2303 | } |
| 2304 | mDirtyPageContent.set(i, true); |
| 2305 | } |
| 2306 | } |
| 2307 | // Next, load any new pages |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 2308 | for (int i = 0; i < count; ++i) { |
Winson Chung | f314b0e | 2011-08-16 11:54:27 -0700 | [diff] [blame] | 2309 | if ((i != page) && immediateAndOnly) { |
| 2310 | continue; |
| 2311 | } |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 2312 | if (lowerPageBound <= i && i <= upperPageBound) { |
| 2313 | if (mDirtyPageContent.get(i)) { |
Winson Chung | f314b0e | 2011-08-16 11:54:27 -0700 | [diff] [blame] | 2314 | syncPageItems(i, (i == page) && immediateAndOnly); |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 2315 | mDirtyPageContent.set(i, false); |
| 2316 | } |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 2317 | } |
Winson Chung | 80baf5a | 2010-08-09 16:03:15 -0700 | [diff] [blame] | 2318 | } |
| 2319 | } |
Winson Chung | 80baf5a | 2010-08-09 16:03:15 -0700 | [diff] [blame] | 2320 | } |
| 2321 | } |
| 2322 | |
Winson Chung | e3193b9 | 2010-09-10 11:44:42 -0700 | [diff] [blame] | 2323 | protected int getAssociatedLowerPageBound(int page) { |
| 2324 | return Math.max(0, page - 1); |
| 2325 | } |
| 2326 | protected int getAssociatedUpperPageBound(int page) { |
| 2327 | final int count = getChildCount(); |
| 2328 | return Math.min(page + 1, count - 1); |
| 2329 | } |
| 2330 | |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 2331 | /** |
| 2332 | * This method is called ONLY to synchronize the number of pages that the paged view has. |
| 2333 | * To actually fill the pages with information, implement syncPageItems() below. It is |
| 2334 | * guaranteed that syncPageItems() will be called for a particular page before it is shown, |
| 2335 | * and therefore, individual page items do not need to be updated in this method. |
| 2336 | */ |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2337 | public abstract void syncPages(); |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 2338 | |
| 2339 | /** |
| 2340 | * This method is called to synchronize the items that are on a particular page. If views on |
| 2341 | * the page can be reused, then they should be updated within this method. |
| 2342 | */ |
Winson Chung | f314b0e | 2011-08-16 11:54:27 -0700 | [diff] [blame] | 2343 | public abstract void syncPageItems(int page, boolean immediate); |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 2344 | |
Patrick Dubroy | 244d74c | 2011-05-19 16:48:48 -0700 | [diff] [blame] | 2345 | protected void invalidatePageData() { |
Winson Chung | f314b0e | 2011-08-16 11:54:27 -0700 | [diff] [blame] | 2346 | invalidatePageData(-1, false); |
Winson Chung | 5a80835 | 2011-06-27 19:08:49 -0700 | [diff] [blame] | 2347 | } |
| 2348 | protected void invalidatePageData(int currentPage) { |
Winson Chung | f314b0e | 2011-08-16 11:54:27 -0700 | [diff] [blame] | 2349 | invalidatePageData(currentPage, false); |
| 2350 | } |
| 2351 | protected void invalidatePageData(int currentPage, boolean immediateAndOnly) { |
Winson Chung | f0ea4d3 | 2011-06-06 14:27:16 -0700 | [diff] [blame] | 2352 | if (!mIsDataReady) { |
| 2353 | return; |
| 2354 | } |
| 2355 | |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 2356 | if (mContentIsRefreshable) { |
Adam Cohen | 0cd3b64 | 2011-10-14 14:58:00 -0700 | [diff] [blame] | 2357 | // Force all scrolling-related behavior to end |
Adam Cohen | 4fe4c93 | 2013-10-28 16:02:34 -0700 | [diff] [blame] | 2358 | forceFinishScroller(); |
Adam Cohen | 0cd3b64 | 2011-10-14 14:58:00 -0700 | [diff] [blame] | 2359 | |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 2360 | // Update all the pages |
| 2361 | syncPages(); |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 2362 | |
Winson Chung | 5a80835 | 2011-06-27 19:08:49 -0700 | [diff] [blame] | 2363 | // We must force a measure after we've loaded the pages to update the content width and |
| 2364 | // to determine the full scroll width |
| 2365 | measure(MeasureSpec.makeMeasureSpec(getMeasuredWidth(), MeasureSpec.EXACTLY), |
| 2366 | MeasureSpec.makeMeasureSpec(getMeasuredHeight(), MeasureSpec.EXACTLY)); |
| 2367 | |
| 2368 | // Set a new page as the current page if necessary |
| 2369 | if (currentPage > -1) { |
Winson Chung | 5afbf7b | 2011-07-25 11:53:08 -0700 | [diff] [blame] | 2370 | setCurrentPage(Math.min(getPageCount() - 1, currentPage)); |
Winson Chung | 5a80835 | 2011-06-27 19:08:49 -0700 | [diff] [blame] | 2371 | } |
| 2372 | |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 2373 | // Mark each of the pages as dirty |
| 2374 | final int count = getChildCount(); |
| 2375 | mDirtyPageContent.clear(); |
| 2376 | for (int i = 0; i < count; ++i) { |
| 2377 | mDirtyPageContent.add(true); |
| 2378 | } |
| 2379 | |
| 2380 | // Load any pages that are necessary for the current window of views |
Winson Chung | f314b0e | 2011-08-16 11:54:27 -0700 | [diff] [blame] | 2381 | loadAssociatedPages(mCurrentPage, immediateAndOnly); |
Michael Jurka | 0142d49 | 2010-08-25 17:46:15 -0700 | [diff] [blame] | 2382 | requestLayout(); |
Winson Chung | 86f7753 | 2010-08-24 11:08:22 -0700 | [diff] [blame] | 2383 | } |
Adam Cohen | 0655904 | 2013-09-29 18:30:56 -0700 | [diff] [blame] | 2384 | if (isPageMoving()) { |
| 2385 | // If the page is moving, then snap it to the final position to ensure we don't get |
| 2386 | // stuck between pages |
| 2387 | snapToDestination(); |
| 2388 | } |
Winson Chung | 321e9ee | 2010-08-09 13:37:56 -0700 | [diff] [blame] | 2389 | } |
Winson Chung | 007c698 | 2011-06-14 13:27:53 -0700 | [diff] [blame] | 2390 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2391 | // Animate the drag view back to the original position |
| 2392 | void animateDragViewToOriginalPosition() { |
| 2393 | if (mDragView != null) { |
| 2394 | AnimatorSet anim = new AnimatorSet(); |
| 2395 | anim.setDuration(REORDERING_DROP_REPOSITION_DURATION); |
| 2396 | anim.playTogether( |
| 2397 | ObjectAnimator.ofFloat(mDragView, "translationX", 0f), |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 2398 | ObjectAnimator.ofFloat(mDragView, "translationY", 0f), |
| 2399 | ObjectAnimator.ofFloat(mDragView, "scaleX", 1f), |
| 2400 | ObjectAnimator.ofFloat(mDragView, "scaleY", 1f)); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2401 | anim.addListener(new AnimatorListenerAdapter() { |
| 2402 | @Override |
| 2403 | public void onAnimationEnd(Animator animation) { |
| 2404 | onPostReorderingAnimationCompleted(); |
| 2405 | } |
| 2406 | }); |
| 2407 | anim.start(); |
| 2408 | } |
Winson Chung | 3ac74c5 | 2011-06-30 17:39:37 -0700 | [diff] [blame] | 2409 | } |
| 2410 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2411 | protected void onStartReordering() { |
| 2412 | // Set the touch state to reordering (allows snapping to pages, dragging a child, etc.) |
| 2413 | mTouchState = TOUCH_STATE_REORDERING; |
| 2414 | mIsReordering = true; |
| 2415 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2416 | // We must invalidate to trigger a redraw to update the layers such that the drag view |
| 2417 | // is always drawn on top |
| 2418 | invalidate(); |
| 2419 | } |
| 2420 | |
| 2421 | private void onPostReorderingAnimationCompleted() { |
| 2422 | // Trigger the callback when reordering has settled |
| 2423 | --mPostReorderingPreZoomInRemainingAnimationCount; |
| 2424 | if (mPostReorderingPreZoomInRunnable != null && |
| 2425 | mPostReorderingPreZoomInRemainingAnimationCount == 0) { |
| 2426 | mPostReorderingPreZoomInRunnable.run(); |
| 2427 | mPostReorderingPreZoomInRunnable = null; |
| 2428 | } |
| 2429 | } |
| 2430 | |
| 2431 | protected void onEndReordering() { |
| 2432 | mIsReordering = false; |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2433 | } |
| 2434 | |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 2435 | public boolean startReordering(View v) { |
Adam Cohen | 93c9756 | 2013-09-26 13:48:01 -0700 | [diff] [blame] | 2436 | int dragViewIndex = indexOfChild(v); |
| 2437 | |
| 2438 | if (mTouchState != TOUCH_STATE_REST) return false; |
| 2439 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2440 | mTempVisiblePagesRange[0] = 0; |
| 2441 | mTempVisiblePagesRange[1] = getPageCount() - 1; |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 2442 | getOverviewModePages(mTempVisiblePagesRange); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2443 | mReorderingStarted = true; |
| 2444 | |
| 2445 | // Check if we are within the reordering range |
| 2446 | if (mTempVisiblePagesRange[0] <= dragViewIndex && |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 2447 | dragViewIndex <= mTempVisiblePagesRange[1]) { |
| 2448 | // Find the drag view under the pointer |
| 2449 | mDragView = getChildAt(dragViewIndex); |
| 2450 | mDragView.animate().scaleX(1.15f).scaleY(1.15f).setDuration(100).start(); |
| 2451 | mDragViewBaselineLeft = mDragView.getLeft(); |
| 2452 | disableFreeScroll(-1); |
| 2453 | onStartReordering(); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2454 | return true; |
| 2455 | } |
| 2456 | return false; |
| 2457 | } |
| 2458 | |
| 2459 | boolean isReordering(boolean testTouchState) { |
| 2460 | boolean state = mIsReordering; |
| 2461 | if (testTouchState) { |
| 2462 | state &= (mTouchState == TOUCH_STATE_REORDERING); |
| 2463 | } |
| 2464 | return state; |
| 2465 | } |
| 2466 | void endReordering() { |
| 2467 | // For simplicity, we call endReordering sometimes even if reordering was never started. |
| 2468 | // In that case, we don't want to do anything. |
| 2469 | if (!mReorderingStarted) return; |
| 2470 | mReorderingStarted = false; |
| 2471 | |
| 2472 | // If we haven't flung-to-delete the current child, then we just animate the drag view |
| 2473 | // back into position |
| 2474 | final Runnable onCompleteRunnable = new Runnable() { |
| 2475 | @Override |
| 2476 | public void run() { |
| 2477 | onEndReordering(); |
| 2478 | } |
| 2479 | }; |
| 2480 | if (!mDeferringForDelete) { |
| 2481 | mPostReorderingPreZoomInRunnable = new Runnable() { |
| 2482 | public void run() { |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 2483 | onCompleteRunnable.run(); |
| 2484 | enableFreeScroll(); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2485 | }; |
| 2486 | }; |
| 2487 | |
| 2488 | mPostReorderingPreZoomInRemainingAnimationCount = |
| 2489 | NUM_ANIMATIONS_RUNNING_BEFORE_ZOOM_OUT; |
| 2490 | // Snap to the current page |
| 2491 | snapToPage(indexOfChild(mDragView), 0); |
| 2492 | // Animate the drag view back to the front position |
| 2493 | animateDragViewToOriginalPosition(); |
| 2494 | } else { |
| 2495 | // Handled in post-delete-animation-callbacks |
| 2496 | } |
| 2497 | } |
| 2498 | |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2499 | /* |
| 2500 | * Flinging to delete - IN PROGRESS |
| 2501 | */ |
| 2502 | private PointF isFlingingToDelete() { |
| 2503 | ViewConfiguration config = ViewConfiguration.get(getContext()); |
| 2504 | mVelocityTracker.computeCurrentVelocity(1000, config.getScaledMaximumFlingVelocity()); |
| 2505 | |
| 2506 | if (mVelocityTracker.getYVelocity() < mFlingToDeleteThresholdVelocity) { |
| 2507 | // Do a quick dot product test to ensure that we are flinging upwards |
| 2508 | PointF vel = new PointF(mVelocityTracker.getXVelocity(), |
| 2509 | mVelocityTracker.getYVelocity()); |
| 2510 | PointF upVec = new PointF(0f, -1f); |
| 2511 | float theta = (float) Math.acos(((vel.x * upVec.x) + (vel.y * upVec.y)) / |
| 2512 | (vel.length() * upVec.length())); |
| 2513 | if (theta <= Math.toRadians(FLING_TO_DELETE_MAX_FLING_DEGREES)) { |
| 2514 | return vel; |
| 2515 | } |
| 2516 | } |
| 2517 | return null; |
| 2518 | } |
| 2519 | |
| 2520 | /** |
| 2521 | * Creates an animation from the current drag view along its current velocity vector. |
| 2522 | * For this animation, the alpha runs for a fixed duration and we update the position |
| 2523 | * progressively. |
| 2524 | */ |
| 2525 | private static class FlingAlongVectorAnimatorUpdateListener implements AnimatorUpdateListener { |
| 2526 | private View mDragView; |
| 2527 | private PointF mVelocity; |
| 2528 | private Rect mFrom; |
| 2529 | private long mPrevTime; |
| 2530 | private float mFriction; |
| 2531 | |
| 2532 | private final TimeInterpolator mAlphaInterpolator = new DecelerateInterpolator(0.75f); |
| 2533 | |
| 2534 | public FlingAlongVectorAnimatorUpdateListener(View dragView, PointF vel, Rect from, |
| 2535 | long startTime, float friction) { |
| 2536 | mDragView = dragView; |
| 2537 | mVelocity = vel; |
| 2538 | mFrom = from; |
| 2539 | mPrevTime = startTime; |
| 2540 | mFriction = 1f - (mDragView.getResources().getDisplayMetrics().density * friction); |
| 2541 | } |
| 2542 | |
| 2543 | @Override |
| 2544 | public void onAnimationUpdate(ValueAnimator animation) { |
| 2545 | float t = ((Float) animation.getAnimatedValue()).floatValue(); |
| 2546 | long curTime = AnimationUtils.currentAnimationTimeMillis(); |
| 2547 | |
| 2548 | mFrom.left += (mVelocity.x * (curTime - mPrevTime) / 1000f); |
| 2549 | mFrom.top += (mVelocity.y * (curTime - mPrevTime) / 1000f); |
| 2550 | |
| 2551 | mDragView.setTranslationX(mFrom.left); |
| 2552 | mDragView.setTranslationY(mFrom.top); |
| 2553 | mDragView.setAlpha(1f - mAlphaInterpolator.getInterpolation(t)); |
| 2554 | |
| 2555 | mVelocity.x *= mFriction; |
| 2556 | mVelocity.y *= mFriction; |
| 2557 | mPrevTime = curTime; |
| 2558 | } |
| 2559 | }; |
| 2560 | |
| 2561 | private static final int ANIM_TAG_KEY = 100; |
| 2562 | |
| 2563 | private Runnable createPostDeleteAnimationRunnable(final View dragView) { |
| 2564 | return new Runnable() { |
| 2565 | @Override |
| 2566 | public void run() { |
| 2567 | int dragViewIndex = indexOfChild(dragView); |
| 2568 | |
| 2569 | // For each of the pages around the drag view, animate them from the previous |
| 2570 | // position to the new position in the layout (as a result of the drag view moving |
| 2571 | // in the layout) |
| 2572 | // NOTE: We can make an assumption here because we have side-bound pages that we |
| 2573 | // will always have pages to animate in from the left |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 2574 | getOverviewModePages(mTempVisiblePagesRange); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2575 | boolean isLastWidgetPage = (mTempVisiblePagesRange[0] == mTempVisiblePagesRange[1]); |
| 2576 | boolean slideFromLeft = (isLastWidgetPage || |
| 2577 | dragViewIndex > mTempVisiblePagesRange[0]); |
| 2578 | |
| 2579 | // Setup the scroll to the correct page before we swap the views |
| 2580 | if (slideFromLeft) { |
| 2581 | snapToPageImmediately(dragViewIndex - 1); |
| 2582 | } |
| 2583 | |
| 2584 | int firstIndex = (isLastWidgetPage ? 0 : mTempVisiblePagesRange[0]); |
| 2585 | int lastIndex = Math.min(mTempVisiblePagesRange[1], getPageCount() - 1); |
| 2586 | int lowerIndex = (slideFromLeft ? firstIndex : dragViewIndex + 1 ); |
| 2587 | int upperIndex = (slideFromLeft ? dragViewIndex - 1 : lastIndex); |
| 2588 | ArrayList<Animator> animations = new ArrayList<Animator>(); |
| 2589 | for (int i = lowerIndex; i <= upperIndex; ++i) { |
| 2590 | View v = getChildAt(i); |
| 2591 | // dragViewIndex < pageUnderPointIndex, so after we remove the |
| 2592 | // drag view all subsequent views to pageUnderPointIndex will |
| 2593 | // shift down. |
| 2594 | int oldX = 0; |
| 2595 | int newX = 0; |
| 2596 | if (slideFromLeft) { |
| 2597 | if (i == 0) { |
| 2598 | // Simulate the page being offscreen with the page spacing |
| 2599 | oldX = getViewportOffsetX() + getChildOffset(i) - getChildWidth(i) |
Adam Cohen | 3b185e2 | 2013-10-29 14:45:58 -0700 | [diff] [blame] | 2600 | - mPageSpacing; |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2601 | } else { |
| 2602 | oldX = getViewportOffsetX() + getChildOffset(i - 1); |
| 2603 | } |
| 2604 | newX = getViewportOffsetX() + getChildOffset(i); |
| 2605 | } else { |
| 2606 | oldX = getChildOffset(i) - getChildOffset(i - 1); |
| 2607 | newX = 0; |
| 2608 | } |
| 2609 | |
| 2610 | // Animate the view translation from its old position to its new |
| 2611 | // position |
| 2612 | AnimatorSet anim = (AnimatorSet) v.getTag(); |
| 2613 | if (anim != null) { |
| 2614 | anim.cancel(); |
| 2615 | } |
| 2616 | |
| 2617 | // Note: Hacky, but we want to skip any optimizations to not draw completely |
| 2618 | // hidden views |
| 2619 | v.setAlpha(Math.max(v.getAlpha(), 0.01f)); |
| 2620 | v.setTranslationX(oldX - newX); |
| 2621 | anim = new AnimatorSet(); |
| 2622 | anim.playTogether( |
| 2623 | ObjectAnimator.ofFloat(v, "translationX", 0f), |
| 2624 | ObjectAnimator.ofFloat(v, "alpha", 1f)); |
| 2625 | animations.add(anim); |
| 2626 | v.setTag(ANIM_TAG_KEY, anim); |
| 2627 | } |
| 2628 | |
| 2629 | AnimatorSet slideAnimations = new AnimatorSet(); |
| 2630 | slideAnimations.playTogether(animations); |
| 2631 | slideAnimations.setDuration(DELETE_SLIDE_IN_SIDE_PAGE_DURATION); |
| 2632 | slideAnimations.addListener(new AnimatorListenerAdapter() { |
| 2633 | @Override |
| 2634 | public void onAnimationEnd(Animator animation) { |
Adam Cohen | f358a4b | 2013-07-23 16:47:31 -0700 | [diff] [blame] | 2635 | mDeferringForDelete = false; |
| 2636 | onEndReordering(); |
| 2637 | onRemoveViewAnimationCompleted(); |
Adam Cohen | 7d30a37 | 2013-07-01 17:03:59 -0700 | [diff] [blame] | 2638 | } |
| 2639 | }); |
| 2640 | slideAnimations.start(); |
| 2641 | |
| 2642 | removeView(dragView); |
| 2643 | onRemoveView(dragView, true); |
| 2644 | } |
| 2645 | }; |
| 2646 | } |
| 2647 | |
| 2648 | public void onFlingToDelete(PointF vel) { |
| 2649 | final long startTime = AnimationUtils.currentAnimationTimeMillis(); |
| 2650 | |
| 2651 | // NOTE: Because it takes time for the first frame of animation to actually be |
| 2652 | // called and we expect the animation to be a continuation of the fling, we have |
| 2653 | // to account for the time that has elapsed since the fling finished. And since |
| 2654 | // we don't have a startDelay, we will always get call to update when we call |
| 2655 | // start() (which we want to ignore). |
| 2656 | final TimeInterpolator tInterpolator = new TimeInterpolator() { |
| 2657 | private int mCount = -1; |
| 2658 | private long mStartTime; |
| 2659 | private float mOffset; |
| 2660 | /* Anonymous inner class ctor */ { |
| 2661 | mStartTime = startTime; |
| 2662 | } |
| 2663 | |
| 2664 | @Override |
| 2665 | public float getInterpolation(float t) { |
| 2666 | if (mCount < 0) { |
| 2667 | mCount++; |
| 2668 | } else if (mCount == 0) { |
| 2669 | mOffset = Math.min(0.5f, (float) (AnimationUtils.currentAnimationTimeMillis() - |
| 2670 | mStartTime) / FLING_TO_DELETE_FADE_OUT_DURATION); |
| 2671 | mCount++; |
| 2672 | } |
| 2673 | return Math.min(1f, mOffset + t); |
| 2674 | } |
| 2675 | }; |
| 2676 | |
| 2677 | final Rect from = new Rect(); |
| 2678 | final View dragView = mDragView; |
| 2679 | from.left = (int) dragView.getTranslationX(); |
| 2680 | from.top = (int) dragView.getTranslationY(); |
| 2681 | AnimatorUpdateListener updateCb = new FlingAlongVectorAnimatorUpdateListener(dragView, vel, |
| 2682 | from, startTime, FLING_TO_DELETE_FRICTION); |
| 2683 | |
| 2684 | final Runnable onAnimationEndRunnable = createPostDeleteAnimationRunnable(dragView); |
| 2685 | |
| 2686 | // Create and start the animation |
| 2687 | ValueAnimator mDropAnim = new ValueAnimator(); |
| 2688 | mDropAnim.setInterpolator(tInterpolator); |
| 2689 | mDropAnim.setDuration(FLING_TO_DELETE_FADE_OUT_DURATION); |
| 2690 | mDropAnim.setFloatValues(0f, 1f); |
| 2691 | mDropAnim.addUpdateListener(updateCb); |
| 2692 | mDropAnim.addListener(new AnimatorListenerAdapter() { |
| 2693 | public void onAnimationEnd(Animator animation) { |
| 2694 | onAnimationEndRunnable.run(); |
| 2695 | } |
| 2696 | }); |
| 2697 | mDropAnim.start(); |
| 2698 | mDeferringForDelete = true; |
| 2699 | } |
| 2700 | |
| 2701 | /* Drag to delete */ |
| 2702 | private boolean isHoveringOverDeleteDropTarget(int x, int y) { |
| 2703 | if (mDeleteDropTarget != null) { |
| 2704 | mAltTmpRect.set(0, 0, 0, 0); |
| 2705 | View parent = (View) mDeleteDropTarget.getParent(); |
| 2706 | if (parent != null) { |
| 2707 | parent.getGlobalVisibleRect(mAltTmpRect); |
| 2708 | } |
| 2709 | mDeleteDropTarget.getGlobalVisibleRect(mTmpRect); |
| 2710 | mTmpRect.offset(-mAltTmpRect.left, -mAltTmpRect.top); |
| 2711 | return mTmpRect.contains(x, y); |
| 2712 | } |
| 2713 | return false; |
| 2714 | } |
| 2715 | |
| 2716 | protected void setPageHoveringOverDeleteDropTarget(int viewIndex, boolean isHovering) {} |
| 2717 | |
| 2718 | private void onDropToDelete() { |
| 2719 | final View dragView = mDragView; |
| 2720 | |
| 2721 | final float toScale = 0f; |
| 2722 | final float toAlpha = 0f; |
| 2723 | |
| 2724 | // Create and start the complex animation |
| 2725 | ArrayList<Animator> animations = new ArrayList<Animator>(); |
| 2726 | AnimatorSet motionAnim = new AnimatorSet(); |
| 2727 | motionAnim.setInterpolator(new DecelerateInterpolator(2)); |
| 2728 | motionAnim.playTogether( |
| 2729 | ObjectAnimator.ofFloat(dragView, "scaleX", toScale), |
| 2730 | ObjectAnimator.ofFloat(dragView, "scaleY", toScale)); |
| 2731 | animations.add(motionAnim); |
| 2732 | |
| 2733 | AnimatorSet alphaAnim = new AnimatorSet(); |
| 2734 | alphaAnim.setInterpolator(new LinearInterpolator()); |
| 2735 | alphaAnim.playTogether( |
| 2736 | ObjectAnimator.ofFloat(dragView, "alpha", toAlpha)); |
| 2737 | animations.add(alphaAnim); |
| 2738 | |
| 2739 | final Runnable onAnimationEndRunnable = createPostDeleteAnimationRunnable(dragView); |
| 2740 | |
| 2741 | AnimatorSet anim = new AnimatorSet(); |
| 2742 | anim.playTogether(animations); |
| 2743 | anim.setDuration(DRAG_TO_DELETE_FADE_OUT_DURATION); |
| 2744 | anim.addListener(new AnimatorListenerAdapter() { |
| 2745 | public void onAnimationEnd(Animator animation) { |
| 2746 | onAnimationEndRunnable.run(); |
| 2747 | } |
| 2748 | }); |
| 2749 | anim.start(); |
| 2750 | |
| 2751 | mDeferringForDelete = true; |
Winson Chung | 007c698 | 2011-06-14 13:27:53 -0700 | [diff] [blame] | 2752 | } |
Winson Chung | 6a0f57d | 2011-06-29 20:10:49 -0700 | [diff] [blame] | 2753 | |
| 2754 | /* Accessibility */ |
| 2755 | @Override |
| 2756 | public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo info) { |
| 2757 | super.onInitializeAccessibilityNodeInfo(info); |
Svetoslav Ganov | 08055f6 | 2012-05-15 11:06:36 -0700 | [diff] [blame] | 2758 | info.setScrollable(getPageCount() > 1); |
| 2759 | if (getCurrentPage() < getPageCount() - 1) { |
| 2760 | info.addAction(AccessibilityNodeInfo.ACTION_SCROLL_FORWARD); |
| 2761 | } |
| 2762 | if (getCurrentPage() > 0) { |
| 2763 | info.addAction(AccessibilityNodeInfo.ACTION_SCROLL_BACKWARD); |
| 2764 | } |
Winson Chung | 6a0f57d | 2011-06-29 20:10:49 -0700 | [diff] [blame] | 2765 | } |
| 2766 | |
| 2767 | @Override |
Alan Viverette | 254139a | 2013-10-08 13:13:46 -0700 | [diff] [blame] | 2768 | public void sendAccessibilityEvent(int eventType) { |
| 2769 | // Don't let the view send real scroll events. |
| 2770 | if (eventType != AccessibilityEvent.TYPE_VIEW_SCROLLED) { |
| 2771 | super.sendAccessibilityEvent(eventType); |
| 2772 | } |
| 2773 | } |
| 2774 | |
| 2775 | @Override |
Winson Chung | 6a0f57d | 2011-06-29 20:10:49 -0700 | [diff] [blame] | 2776 | public void onInitializeAccessibilityEvent(AccessibilityEvent event) { |
| 2777 | super.onInitializeAccessibilityEvent(event); |
| 2778 | event.setScrollable(true); |
Winson Chung | 6a0f57d | 2011-06-29 20:10:49 -0700 | [diff] [blame] | 2779 | } |
| 2780 | |
Svetoslav Ganov | 08055f6 | 2012-05-15 11:06:36 -0700 | [diff] [blame] | 2781 | @Override |
| 2782 | public boolean performAccessibilityAction(int action, Bundle arguments) { |
| 2783 | if (super.performAccessibilityAction(action, arguments)) { |
| 2784 | return true; |
| 2785 | } |
| 2786 | switch (action) { |
| 2787 | case AccessibilityNodeInfo.ACTION_SCROLL_FORWARD: { |
| 2788 | if (getCurrentPage() < getPageCount() - 1) { |
| 2789 | scrollRight(); |
| 2790 | return true; |
| 2791 | } |
| 2792 | } break; |
| 2793 | case AccessibilityNodeInfo.ACTION_SCROLL_BACKWARD: { |
| 2794 | if (getCurrentPage() > 0) { |
| 2795 | scrollLeft(); |
| 2796 | return true; |
| 2797 | } |
| 2798 | } break; |
| 2799 | } |
| 2800 | return false; |
| 2801 | } |
| 2802 | |
Adam Cohen | 0ffac43 | 2013-07-10 11:19:26 -0700 | [diff] [blame] | 2803 | protected String getCurrentPageDescription() { |
| 2804 | return String.format(getContext().getString(R.string.default_scroll_format), |
| 2805 | getNextPage() + 1, getChildCount()); |
| 2806 | } |
| 2807 | |
Winson Chung | d11265e | 2011-08-30 13:37:23 -0700 | [diff] [blame] | 2808 | @Override |
| 2809 | public boolean onHoverEvent(android.view.MotionEvent event) { |
| 2810 | return true; |
| 2811 | } |
Adam Cohen | 5084cba | 2013-09-03 12:01:16 -0700 | [diff] [blame] | 2812 | } |