blob: decaeb6575def69d84b2bf62ee323e511939d55c [file] [log] [blame]
Daniel Sandler50a53132012-10-24 15:02:27 -04001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Daniel Sandler08d05e32012-08-08 16:39:54 -040017package com.android.systemui.statusbar.phone;
18
Jorim Jaggi1d480692014-05-20 19:41:58 +020019import android.animation.Animator;
20import android.animation.AnimatorListenerAdapter;
Daniel Sandler0c1b75c2012-10-04 12:08:54 -040021import android.animation.ObjectAnimator;
Jorim Jaggi1d480692014-05-20 19:41:58 +020022import android.animation.ValueAnimator;
Daniel Sandler08d05e32012-08-08 16:39:54 -040023import android.content.Context;
Selim Cinekb84a1072014-05-15 19:10:18 +020024import android.content.res.Configuration;
Daniel Sandler08d05e32012-08-08 16:39:54 -040025import android.content.res.Resources;
26import android.util.AttributeSet;
John Spurlockcd686b52013-06-05 10:13:46 -040027import android.util.Log;
Daniel Sandler08d05e32012-08-08 16:39:54 -040028import android.view.MotionEvent;
Selim Cinekb6d85eb2014-03-28 20:21:01 +010029import android.view.ViewConfiguration;
Jorim Jaggi0a27be82014-06-11 03:22:39 +020030import android.view.ViewTreeObserver;
Jorim Jaggi90129582014-06-02 14:44:49 +020031import android.view.animation.AnimationUtils;
32import android.view.animation.Interpolator;
Daniel Sandler08d05e32012-08-08 16:39:54 -040033import android.widget.FrameLayout;
34
35import com.android.systemui.R;
Jorim Jaggi1d480692014-05-20 19:41:58 +020036import com.android.systemui.statusbar.FlingAnimationUtils;
Jorim Jaggi90129582014-06-02 14:44:49 +020037import com.android.systemui.statusbar.StatusBarState;
Daniel Sandler08d05e32012-08-08 16:39:54 -040038
John Spurlockde84f0e2013-06-12 12:41:00 -040039import java.io.FileDescriptor;
40import java.io.PrintWriter;
John Spurlockde84f0e2013-06-12 12:41:00 -040041
Selim Cinek4c6969a2014-05-26 19:22:17 +020042public abstract class PanelView extends FrameLayout {
Daniel Sandler198a0302012-08-17 16:04:31 -040043 public static final boolean DEBUG = PanelBar.DEBUG;
Daniel Sandler08d05e32012-08-08 16:39:54 -040044 public static final String TAG = PanelView.class.getSimpleName();
Daniel Sandlere7c5bbb2013-03-05 13:36:21 -050045
John Spurlock97642182013-07-29 17:58:39 -040046 private final void logf(String fmt, Object... args) {
John Spurlockcd686b52013-06-05 10:13:46 -040047 Log.v(TAG, (mViewName != null ? (mViewName + ": ") : "") + String.format(fmt, args));
Daniel Sandler08d05e32012-08-08 16:39:54 -040048 }
49
Jorim Jaggi90129582014-06-02 14:44:49 +020050 protected PhoneStatusBar mStatusBar;
Daniel Sandler0c1b75c2012-10-04 12:08:54 -040051 private float mPeekHeight;
Jorim Jaggi90129582014-06-02 14:44:49 +020052 private float mHintDistance;
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +020053 private int mEdgeTapAreaWidth;
Selim Cinekb6d85eb2014-03-28 20:21:01 +010054 private float mInitialOffsetOnTouch;
Daniel Sandler08d05e32012-08-08 16:39:54 -040055 private float mExpandedFraction = 0;
Selim Cinek1408eb52014-06-02 14:45:38 +020056 protected float mExpandedHeight = 0;
Selim Cinek31094df2014-08-14 19:28:15 +020057 private boolean mPanelClosedOnDown;
58 private boolean mHasLayoutedSinceDown;
59 private float mUpdateFlingVelocity;
60 private boolean mUpdateFlingOnLayout;
61 private boolean mTouching;
Daniel Sandler0c1b75c2012-10-04 12:08:54 -040062 private boolean mJustPeeked;
Daniel Sandler50508132012-08-16 14:10:53 -040063 private boolean mClosing;
Jorim Jaggi8dd95e02014-06-03 16:19:33 +020064 protected boolean mTracking;
Jorim Jaggi90129582014-06-02 14:44:49 +020065 private boolean mTouchSlopExceeded;
John Spurlock48fa91a2013-08-15 09:29:31 -040066 private int mTrackingPointer;
Jorim Jaggid7daab72014-05-06 22:22:20 +020067 protected int mTouchSlop;
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +020068 protected boolean mHintAnimationRunning;
Jorim Jaggi47c85a32014-06-05 17:25:40 +020069 private boolean mOverExpandedBeforeFling;
Selim Cinekf99d0002014-06-13 07:36:01 +020070 private float mOriginalIndicationY;
Daniel Sandler08d05e32012-08-08 16:39:54 -040071
Jorim Jaggi1d480692014-05-20 19:41:58 +020072 private ValueAnimator mHeightAnimator;
Daniel Sandler0c1b75c2012-10-04 12:08:54 -040073 private ObjectAnimator mPeekAnimator;
Jorim Jaggib7b61dd2014-05-21 15:45:07 +020074 private VelocityTrackerInterface mVelocityTracker;
Jorim Jaggi1d480692014-05-20 19:41:58 +020075 private FlingAnimationUtils mFlingAnimationUtils;
Daniel Sandler08d05e32012-08-08 16:39:54 -040076
Jorim Jaggi0a27be82014-06-11 03:22:39 +020077 /**
78 * Whether an instant expand request is currently pending and we are just waiting for layout.
79 */
80 private boolean mInstantExpanding;
81
Daniel Sandler08d05e32012-08-08 16:39:54 -040082 PanelBar mBar;
83
Daniel Sandler50508132012-08-16 14:10:53 -040084 private String mViewName;
Jorim Jaggid7daab72014-05-06 22:22:20 +020085 private float mInitialTouchY;
86 private float mInitialTouchX;
Daniel Sandler08d05e32012-08-08 16:39:54 -040087
Jorim Jaggi90129582014-06-02 14:44:49 +020088 private Interpolator mLinearOutSlowInInterpolator;
Jorim Jaggib472b3472014-06-30 19:56:24 +020089 private Interpolator mFastOutSlowInInterpolator;
Jorim Jaggi90129582014-06-02 14:44:49 +020090 private Interpolator mBounceInterpolator;
Selim Cinekf99d0002014-06-13 07:36:01 +020091 protected KeyguardBottomAreaView mKeyguardBottomArea;
Jorim Jaggi90129582014-06-02 14:44:49 +020092
Jorim Jaggib472b3472014-06-30 19:56:24 +020093 private boolean mPeekPending;
94 private boolean mCollapseAfterPeek;
95 private boolean mExpanding;
96 private boolean mGestureWaitForTouchSlop;
97 private Runnable mPeekRunnable = new Runnable() {
98 @Override
99 public void run() {
100 mPeekPending = false;
101 runPeekAnimation();
102 }
103 };
104
Selim Cinek1685e632014-04-08 02:27:49 +0200105 protected void onExpandingFinished() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +0200106 mClosing = false;
Jorim Jaggi2fbad7b2014-05-26 22:38:00 +0200107 mBar.onExpandingFinished();
Selim Cinek1685e632014-04-08 02:27:49 +0200108 }
109
110 protected void onExpandingStarted() {
111 }
112
Jorim Jaggib472b3472014-06-30 19:56:24 +0200113 private void notifyExpandingStarted() {
114 if (!mExpanding) {
115 mExpanding = true;
116 onExpandingStarted();
117 }
118 }
119
120 private void notifyExpandingFinished() {
121 if (mExpanding) {
122 mExpanding = false;
123 onExpandingFinished();
124 }
125 }
126
127 private void schedulePeek() {
128 mPeekPending = true;
129 long timeout = ViewConfiguration.getTapTimeout();
130 postOnAnimationDelayed(mPeekRunnable, timeout);
131 notifyBarPanelExpansionChanged();
132 }
133
Daniel Sandler0c1b75c2012-10-04 12:08:54 -0400134 private void runPeekAnimation() {
Jorim Jaggi2580a9762014-06-25 03:08:25 +0200135 mPeekHeight = getPeekHeight();
John Spurlock97642182013-07-29 17:58:39 -0400136 if (DEBUG) logf("peek to height=%.1f", mPeekHeight);
Jorim Jaggi1d480692014-05-20 19:41:58 +0200137 if (mHeightAnimator != null) {
Daniel Sandler0c1b75c2012-10-04 12:08:54 -0400138 return;
139 }
Jorim Jaggib472b3472014-06-30 19:56:24 +0200140 mPeekAnimator = ObjectAnimator.ofFloat(this, "expandedHeight", mPeekHeight)
141 .setDuration(250);
142 mPeekAnimator.setInterpolator(mLinearOutSlowInInterpolator);
143 mPeekAnimator.addListener(new AnimatorListenerAdapter() {
144 private boolean mCancelled;
145
146 @Override
147 public void onAnimationCancel(Animator animation) {
148 mCancelled = true;
149 }
150
151 @Override
152 public void onAnimationEnd(Animator animation) {
153 mPeekAnimator = null;
154 if (mCollapseAfterPeek && !mCancelled) {
155 postOnAnimation(new Runnable() {
156 @Override
157 public void run() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +0200158 collapse(false /* delayed */);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200159 }
160 });
161 }
162 mCollapseAfterPeek = false;
163 }
164 });
165 notifyExpandingStarted();
Daniel Sandler0c1b75c2012-10-04 12:08:54 -0400166 mPeekAnimator.start();
Jorim Jaggib472b3472014-06-30 19:56:24 +0200167 mJustPeeked = true;
Daniel Sandler0c1b75c2012-10-04 12:08:54 -0400168 }
169
Daniel Sandler08d05e32012-08-08 16:39:54 -0400170 public PanelView(Context context, AttributeSet attrs) {
171 super(context, attrs);
Jorim Jaggi1d480692014-05-20 19:41:58 +0200172 mFlingAnimationUtils = new FlingAnimationUtils(context, 0.6f);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200173 mFastOutSlowInInterpolator =
Jorim Jaggi90129582014-06-02 14:44:49 +0200174 AnimationUtils.loadInterpolator(context, android.R.interpolator.fast_out_slow_in);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200175 mLinearOutSlowInInterpolator =
176 AnimationUtils.loadInterpolator(context, android.R.interpolator.linear_out_slow_in);
Jorim Jaggi90129582014-06-02 14:44:49 +0200177 mBounceInterpolator = new BounceInterpolator();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400178 }
179
Jorim Jaggi069cd032014-05-15 03:09:01 +0200180 protected void loadDimens() {
Daniel Sandler08d05e32012-08-08 16:39:54 -0400181 final Resources res = getContext().getResources();
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100182 final ViewConfiguration configuration = ViewConfiguration.get(getContext());
183 mTouchSlop = configuration.getScaledTouchSlop();
Jorim Jaggi90129582014-06-02 14:44:49 +0200184 mHintDistance = res.getDimension(R.dimen.hint_move_distance);
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200185 mEdgeTapAreaWidth = res.getDimensionPixelSize(R.dimen.edge_tap_area_width);
Daniel Sandler08d05e32012-08-08 16:39:54 -0400186 }
187
188 private void trackMovement(MotionEvent event) {
189 // Add movement to velocity tracker using raw screen X and Y coordinates instead
190 // of window coordinates because the window frame may be moving at the same time.
191 float deltaX = event.getRawX() - event.getX();
192 float deltaY = event.getRawY() - event.getY();
193 event.offsetLocation(deltaX, deltaY);
Daniel Sandlerb17a7262012-10-05 14:32:50 -0400194 if (mVelocityTracker != null) mVelocityTracker.addMovement(event);
Daniel Sandler08d05e32012-08-08 16:39:54 -0400195 event.offsetLocation(-deltaX, -deltaY);
196 }
197
Daniel Sandlerbf526d12012-09-04 22:56:44 -0400198 @Override
199 public boolean onTouchEvent(MotionEvent event) {
Jorim Jaggi0a27be82014-06-11 03:22:39 +0200200 if (mInstantExpanding) {
201 return false;
202 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100203
204 /*
205 * We capture touch events here and update the expand height here in case according to
206 * the users fingers. This also handles multi-touch.
207 *
208 * If the user just clicks shortly, we give him a quick peek of the shade.
209 *
210 * Flinging is also enabled in order to open or close the shade.
211 */
212
213 int pointerIndex = event.findPointerIndex(mTrackingPointer);
214 if (pointerIndex < 0) {
215 pointerIndex = 0;
216 mTrackingPointer = event.getPointerId(pointerIndex);
217 }
218 final float y = event.getY(pointerIndex);
Jorim Jaggia6310292014-04-16 14:11:52 +0200219 final float x = event.getX(pointerIndex);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100220
Jorim Jaggib472b3472014-06-30 19:56:24 +0200221 if (event.getActionMasked() == MotionEvent.ACTION_DOWN) {
222 mGestureWaitForTouchSlop = mExpandedHeight == 0f;
223 }
224 boolean waitForTouchSlop = hasConflictingGestures() || mGestureWaitForTouchSlop;
Selim Cinek4c6969a2014-05-26 19:22:17 +0200225
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100226 switch (event.getActionMasked()) {
227 case MotionEvent.ACTION_DOWN:
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100228 mInitialTouchY = y;
Jorim Jaggia6310292014-04-16 14:11:52 +0200229 mInitialTouchX = x;
Selim Cinek4c6969a2014-05-26 19:22:17 +0200230 mInitialOffsetOnTouch = mExpandedHeight;
Jorim Jaggi90129582014-06-02 14:44:49 +0200231 mTouchSlopExceeded = false;
Jorim Jaggi3857ac42014-06-27 18:01:12 +0200232 mJustPeeked = false;
Selim Cinek31094df2014-08-14 19:28:15 +0200233 mPanelClosedOnDown = mExpandedHeight == 0.0f;
234 mHasLayoutedSinceDown = false;
235 mUpdateFlingOnLayout = false;
236 mTouching = true;
Jorim Jaggib7b61dd2014-05-21 15:45:07 +0200237 if (mVelocityTracker == null) {
238 initVelocityTracker();
239 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100240 trackMovement(event);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200241 if (!waitForTouchSlop || (mHeightAnimator != null && !mHintAnimationRunning) ||
242 mPeekPending || mPeekAnimator != null) {
Selim Cinek4c6969a2014-05-26 19:22:17 +0200243 if (mHeightAnimator != null) {
244 mHeightAnimator.cancel(); // end any outstanding animations
245 }
Jorim Jaggib472b3472014-06-30 19:56:24 +0200246 cancelPeek();
247 mTouchSlopExceeded = (mHeightAnimator != null && !mHintAnimationRunning)
248 || mPeekPending || mPeekAnimator != null;
Selim Cinek4c6969a2014-05-26 19:22:17 +0200249 onTrackingStarted();
Jorim Jaggi1d480692014-05-20 19:41:58 +0200250 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100251 if (mExpandedHeight == 0) {
Jorim Jaggib472b3472014-06-30 19:56:24 +0200252 schedulePeek();
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100253 }
254 break;
255
256 case MotionEvent.ACTION_POINTER_UP:
257 final int upPointer = event.getPointerId(event.getActionIndex());
258 if (mTrackingPointer == upPointer) {
259 // gesture is ongoing, find a new pointer to track
260 final int newIndex = event.getPointerId(0) != upPointer ? 0 : 1;
261 final float newY = event.getY(newIndex);
Jorim Jaggia6310292014-04-16 14:11:52 +0200262 final float newX = event.getX(newIndex);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100263 mTrackingPointer = event.getPointerId(newIndex);
264 mInitialOffsetOnTouch = mExpandedHeight;
265 mInitialTouchY = newY;
Jorim Jaggia6310292014-04-16 14:11:52 +0200266 mInitialTouchX = newX;
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100267 }
268 break;
269
270 case MotionEvent.ACTION_MOVE:
Selim Cinek4c6969a2014-05-26 19:22:17 +0200271 float h = y - mInitialTouchY;
Jorim Jaggib7240132014-06-30 01:39:07 +0200272
273 // If the panel was collapsed when touching, we only need to check for the
274 // y-component of the gesture, as we have no conflicting horizontal gesture.
275 if (Math.abs(h) > mTouchSlop
276 && (Math.abs(h) > Math.abs(x - mInitialTouchX)
277 || mInitialOffsetOnTouch == 0f)) {
Jorim Jaggi90129582014-06-02 14:44:49 +0200278 mTouchSlopExceeded = true;
279 if (waitForTouchSlop && !mTracking) {
Jorim Jaggib472b3472014-06-30 19:56:24 +0200280 if (!mJustPeeked) {
281 mInitialOffsetOnTouch = mExpandedHeight;
282 mInitialTouchX = x;
283 mInitialTouchY = y;
284 h = 0;
285 }
Jorim Jaggi90129582014-06-02 14:44:49 +0200286 if (mHeightAnimator != null) {
287 mHeightAnimator.cancel(); // end any outstanding animations
288 }
Jorim Jaggib472b3472014-06-30 19:56:24 +0200289 removeCallbacks(mPeekRunnable);
290 mPeekPending = false;
Jorim Jaggi90129582014-06-02 14:44:49 +0200291 onTrackingStarted();
Selim Cinek4c6969a2014-05-26 19:22:17 +0200292 }
Selim Cinek4c6969a2014-05-26 19:22:17 +0200293 }
Jorim Jaggi93439da2014-06-30 23:53:39 +0200294 final float newHeight = Math.max(0, h + mInitialOffsetOnTouch);
Selim Cinek4c6969a2014-05-26 19:22:17 +0200295 if (newHeight > mPeekHeight) {
Jorim Jaggib472b3472014-06-30 19:56:24 +0200296 if (mPeekAnimator != null) {
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100297 mPeekAnimator.cancel();
298 }
299 mJustPeeked = false;
300 }
Jorim Jaggi30c305c2014-07-01 23:34:41 +0200301 if (!mJustPeeked && (!waitForTouchSlop || mTracking) && !isTrackingBlocked()) {
Jorim Jaggicc693242014-06-14 03:04:35 +0000302 setExpandedHeightInternal(newHeight);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100303 }
304
305 trackMovement(event);
306 break;
307
308 case MotionEvent.ACTION_UP:
309 case MotionEvent.ACTION_CANCEL:
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100310 mTrackingPointer = -1;
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100311 trackMovement(event);
Jorim Jaggi787a0af2014-06-04 18:57:14 +0200312 if ((mTracking && mTouchSlopExceeded)
Jorim Jaggidc96d632014-07-01 18:48:52 +0200313 || Math.abs(x - mInitialTouchX) > mTouchSlop
314 || Math.abs(y - mInitialTouchY) > mTouchSlop
Jorim Jaggi787a0af2014-06-04 18:57:14 +0200315 || event.getActionMasked() == MotionEvent.ACTION_CANCEL) {
Jorim Jaggib7240132014-06-30 01:39:07 +0200316 float vel = 0f;
317 float vectorVel = 0f;
318 if (mVelocityTracker != null) {
319 mVelocityTracker.computeCurrentVelocity(1000);
320 vel = mVelocityTracker.getYVelocity();
321 vectorVel = (float) Math.hypot(
322 mVelocityTracker.getXVelocity(), mVelocityTracker.getYVelocity());
323 }
324 boolean expand = flingExpands(vel, vectorVel);
Jorim Jaggi90129582014-06-02 14:44:49 +0200325 onTrackingStopped(expand);
326 fling(vel, expand);
Selim Cinek31094df2014-08-14 19:28:15 +0200327 mUpdateFlingOnLayout = expand && mPanelClosedOnDown && !mHasLayoutedSinceDown;
328 if (mUpdateFlingOnLayout) {
329 mUpdateFlingVelocity = vel;
330 }
Jorim Jaggi90129582014-06-02 14:44:49 +0200331 } else {
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200332 boolean expands = onEmptySpaceClick(mInitialTouchX);
Jorim Jaggi90129582014-06-02 14:44:49 +0200333 onTrackingStopped(expands);
334 }
Jorim Jaggidc96d632014-07-01 18:48:52 +0200335
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100336 if (mVelocityTracker != null) {
337 mVelocityTracker.recycle();
338 mVelocityTracker = null;
339 }
Selim Cinek31094df2014-08-14 19:28:15 +0200340 mTouching = false;
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100341 break;
342 }
Selim Cinek4c6969a2014-05-26 19:22:17 +0200343 return !waitForTouchSlop || mTracking;
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100344 }
345
Selim Cinek4c6969a2014-05-26 19:22:17 +0200346 protected abstract boolean hasConflictingGestures();
347
Jorim Jaggi2fbad7b2014-05-26 22:38:00 +0200348 protected void onTrackingStopped(boolean expand) {
Selim Cinek4c6969a2014-05-26 19:22:17 +0200349 mTracking = false;
Jorim Jaggi2fbad7b2014-05-26 22:38:00 +0200350 mBar.onTrackingStopped(PanelView.this, expand);
Selim Cinek1685e632014-04-08 02:27:49 +0200351 }
352
353 protected void onTrackingStarted() {
Selim Cinek4c6969a2014-05-26 19:22:17 +0200354 mTracking = true;
Jorim Jaggib472b3472014-06-30 19:56:24 +0200355 mCollapseAfterPeek = false;
Selim Cinek1685e632014-04-08 02:27:49 +0200356 mBar.onTrackingStarted(PanelView.this);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200357 notifyExpandingStarted();
Selim Cinek1685e632014-04-08 02:27:49 +0200358 }
359
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100360 @Override
361 public boolean onInterceptTouchEvent(MotionEvent event) {
Jorim Jaggi0a27be82014-06-11 03:22:39 +0200362 if (mInstantExpanding) {
363 return false;
364 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100365
366 /*
367 * If the user drags anywhere inside the panel we intercept it if he moves his finger
368 * upwards. This allows closing the shade from anywhere inside the panel.
369 *
370 * We only do this if the current content is scrolled to the bottom,
371 * i.e isScrolledToBottom() is true and therefore there is no conflicting scrolling gesture
372 * possible.
373 */
374 int pointerIndex = event.findPointerIndex(mTrackingPointer);
375 if (pointerIndex < 0) {
376 pointerIndex = 0;
377 mTrackingPointer = event.getPointerId(pointerIndex);
378 }
Jorim Jaggia6310292014-04-16 14:11:52 +0200379 final float x = event.getX(pointerIndex);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100380 final float y = event.getY(pointerIndex);
381 boolean scrolledToBottom = isScrolledToBottom();
382
383 switch (event.getActionMasked()) {
384 case MotionEvent.ACTION_DOWN:
Jorim Jaggib690f0d2014-07-03 23:25:44 +0200385 mStatusBar.userActivity();
Jorim Jaggib472b3472014-06-30 19:56:24 +0200386 if (mHeightAnimator != null && !mHintAnimationRunning ||
387 mPeekPending || mPeekAnimator != null) {
388 if (mHeightAnimator != null) {
389 mHeightAnimator.cancel(); // end any outstanding animations
390 }
391 cancelPeek();
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200392 mTouchSlopExceeded = true;
Selim Cinek172e9142014-05-07 19:38:00 +0200393 return true;
394 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100395 mInitialTouchY = y;
Jorim Jaggia6310292014-04-16 14:11:52 +0200396 mInitialTouchX = x;
Jorim Jaggi90129582014-06-02 14:44:49 +0200397 mTouchSlopExceeded = false;
Jorim Jaggi3857ac42014-06-27 18:01:12 +0200398 mJustPeeked = false;
Selim Cinek31094df2014-08-14 19:28:15 +0200399 mPanelClosedOnDown = mExpandedHeight == 0.0f;
400 mHasLayoutedSinceDown = false;
401 mUpdateFlingOnLayout = false;
402 mTouching = true;
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100403 initVelocityTracker();
404 trackMovement(event);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100405 break;
406 case MotionEvent.ACTION_POINTER_UP:
407 final int upPointer = event.getPointerId(event.getActionIndex());
408 if (mTrackingPointer == upPointer) {
409 // gesture is ongoing, find a new pointer to track
410 final int newIndex = event.getPointerId(0) != upPointer ? 0 : 1;
411 mTrackingPointer = event.getPointerId(newIndex);
Jorim Jaggia6310292014-04-16 14:11:52 +0200412 mInitialTouchX = event.getX(newIndex);
413 mInitialTouchY = event.getY(newIndex);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100414 }
415 break;
416
417 case MotionEvent.ACTION_MOVE:
418 final float h = y - mInitialTouchY;
419 trackMovement(event);
420 if (scrolledToBottom) {
Jorim Jaggia6310292014-04-16 14:11:52 +0200421 if (h < -mTouchSlop && h < -Math.abs(x - mInitialTouchX)) {
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200422 if (mHeightAnimator != null) {
423 mHeightAnimator.cancel();
424 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100425 mInitialOffsetOnTouch = mExpandedHeight;
426 mInitialTouchY = y;
Jorim Jaggia6310292014-04-16 14:11:52 +0200427 mInitialTouchX = x;
Selim Cinek91c39ef2014-04-07 21:18:09 +0200428 mTracking = true;
Jorim Jaggi90129582014-06-02 14:44:49 +0200429 mTouchSlopExceeded = true;
Selim Cinek1685e632014-04-08 02:27:49 +0200430 onTrackingStarted();
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100431 return true;
432 }
433 }
434 break;
Selim Cinek31094df2014-08-14 19:28:15 +0200435 case MotionEvent.ACTION_CANCEL:
436 case MotionEvent.ACTION_UP:
437 mTouching = false;
438 break;
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100439 }
440 return false;
441 }
442
443 private void initVelocityTracker() {
444 if (mVelocityTracker != null) {
445 mVelocityTracker.recycle();
446 }
Jorim Jaggib7b61dd2014-05-21 15:45:07 +0200447 mVelocityTracker = VelocityTrackerFactory.obtain(getContext());
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100448 }
449
450 protected boolean isScrolledToBottom() {
Selim Cinek172e9142014-05-07 19:38:00 +0200451 return true;
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100452 }
453
454 protected float getContentHeight() {
455 return mExpandedHeight;
Daniel Sandlerbf526d12012-09-04 22:56:44 -0400456 }
457
Daniel Sandler08d05e32012-08-08 16:39:54 -0400458 @Override
459 protected void onFinishInflate() {
460 super.onFinishInflate();
461 loadDimens();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400462 }
463
Jorim Jaggi069cd032014-05-15 03:09:01 +0200464 @Override
465 protected void onConfigurationChanged(Configuration newConfig) {
466 super.onConfigurationChanged(newConfig);
467 loadDimens();
Jorim Jaggi069cd032014-05-15 03:09:01 +0200468 }
469
Jorim Jaggi2fbad7b2014-05-26 22:38:00 +0200470 /**
Jorim Jaggib7240132014-06-30 01:39:07 +0200471 * @param vel the current vertical velocity of the motion
472 * @param vectorVel the length of the vectorial velocity
Jorim Jaggie29b2db2014-05-30 23:17:03 +0200473 * @return whether a fling should expands the panel; contracts otherwise
Jorim Jaggi2fbad7b2014-05-26 22:38:00 +0200474 */
Jorim Jaggidc96d632014-07-01 18:48:52 +0200475 protected boolean flingExpands(float vel, float vectorVel) {
Jorim Jaggib7240132014-06-30 01:39:07 +0200476 if (Math.abs(vectorVel) < mFlingAnimationUtils.getMinVelocityPxPerSecond()) {
Jorim Jaggie29b2db2014-05-30 23:17:03 +0200477 return getExpandedFraction() > 0.5f;
Selim Cinek1685e632014-04-08 02:27:49 +0200478 } else {
Jorim Jaggie29b2db2014-05-30 23:17:03 +0200479 return vel > 0;
Daniel Sandler08d05e32012-08-08 16:39:54 -0400480 }
Jorim Jaggi1d480692014-05-20 19:41:58 +0200481 }
482
483 protected void fling(float vel, boolean expand) {
484 cancelPeek();
485 float target = expand ? getMaxPanelHeight() : 0.0f;
Jorim Jaggi4b04a3a2014-07-28 17:43:56 +0200486
487 // Hack to make the expand transition look nice when clear all button is visible - we make
488 // the animation only to the last notification, and then jump to the maximum panel height so
489 // clear all just fades in and the decelerating motion is towards the last notification.
490 final boolean clearAllExpandHack = expand && fullyExpandedClearAllVisible()
491 && mExpandedHeight < getMaxPanelHeight() - getClearAllHeight()
492 && !isClearAllVisible();
493 if (clearAllExpandHack) {
494 target = getMaxPanelHeight() - getClearAllHeight();
495 }
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200496 if (target == mExpandedHeight || getOverExpansionAmount() > 0f && expand) {
Jorim Jaggib472b3472014-06-30 19:56:24 +0200497 notifyExpandingFinished();
Jorim Jaggi2fbad7b2014-05-26 22:38:00 +0200498 return;
499 }
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200500 mOverExpandedBeforeFling = getOverExpansionAmount() > 0f;
Jorim Jaggi90129582014-06-02 14:44:49 +0200501 ValueAnimator animator = createHeightAnimator(target);
Jorim Jaggi1d480692014-05-20 19:41:58 +0200502 if (expand) {
503 mFlingAnimationUtils.apply(animator, mExpandedHeight, target, vel, getHeight());
504 } else {
505 mFlingAnimationUtils.applyDismissing(animator, mExpandedHeight, target, vel,
506 getHeight());
507
508 // Make it shorter if we run a canned animation
509 if (vel == 0) {
Jorim Jaggi30c305c2014-07-01 23:34:41 +0200510 animator.setDuration((long)
511 (animator.getDuration() * getCannedFlingDurationFactor()));
Jorim Jaggi1d480692014-05-20 19:41:58 +0200512 }
513 }
Jorim Jaggi1d480692014-05-20 19:41:58 +0200514 animator.addListener(new AnimatorListenerAdapter() {
Jorim Jaggib472b3472014-06-30 19:56:24 +0200515 private boolean mCancelled;
516
517 @Override
518 public void onAnimationCancel(Animator animation) {
519 mCancelled = true;
520 }
521
Jorim Jaggi1d480692014-05-20 19:41:58 +0200522 @Override
523 public void onAnimationEnd(Animator animation) {
Jorim Jaggi4b04a3a2014-07-28 17:43:56 +0200524 if (clearAllExpandHack && !mCancelled) {
Jorim Jaggi2ae259d2014-08-04 23:35:47 +0200525 setExpandedHeightInternal(getMaxPanelHeight());
526 }
527 mHeightAnimator = null;
528 if (!mCancelled) {
529 notifyExpandingFinished();
Jorim Jaggib472b3472014-06-30 19:56:24 +0200530 }
Jorim Jaggi1d480692014-05-20 19:41:58 +0200531 }
532 });
Jorim Jaggi1d480692014-05-20 19:41:58 +0200533 mHeightAnimator = animator;
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200534 animator.start();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400535 }
536
537 @Override
538 protected void onAttachedToWindow() {
539 super.onAttachedToWindow();
Daniel Sandler978f8532012-08-15 15:48:16 -0400540 mViewName = getResources().getResourceName(getId());
541 }
542
543 public String getName() {
544 return mViewName;
Daniel Sandler08d05e32012-08-08 16:39:54 -0400545 }
546
Daniel Sandler08d05e32012-08-08 16:39:54 -0400547 public void setExpandedHeight(float height) {
John Spurlock97642182013-07-29 17:58:39 -0400548 if (DEBUG) logf("setExpandedHeight(%.1f)", height);
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200549 setExpandedHeightInternal(height + getOverExpansionPixels());
Daniel Sandler08d05e32012-08-08 16:39:54 -0400550 }
551
Daniel Sandler50508132012-08-16 14:10:53 -0400552 @Override
553 protected void onLayout (boolean changed, int left, int top, int right, int bottom) {
Daniel Sandler50508132012-08-16 14:10:53 -0400554 super.onLayout(changed, left, top, right, bottom);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100555 requestPanelHeightUpdate();
Selim Cinek31094df2014-08-14 19:28:15 +0200556 mHasLayoutedSinceDown = true;
557 if (mUpdateFlingOnLayout) {
558 abortAnimations();
559 fling(mUpdateFlingVelocity, true);
560 mUpdateFlingOnLayout = false;
561 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100562 }
563
564 protected void requestPanelHeightUpdate() {
565 float currentMaxPanelHeight = getMaxPanelHeight();
566
567 // If the user isn't actively poking us, let's update the height
Jorim Jaggi30c305c2014-07-01 23:34:41 +0200568 if ((!mTracking || isTrackingBlocked())
569 && mHeightAnimator == null
570 && mExpandedHeight > 0
571 && currentMaxPanelHeight != mExpandedHeight
572 && !mPeekPending
Selim Cinek31094df2014-08-14 19:28:15 +0200573 && mPeekAnimator == null
574 && !mTouching) {
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200575 setExpandedHeight(currentMaxPanelHeight);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100576 }
Daniel Sandler50508132012-08-16 14:10:53 -0400577 }
578
Daniel Sandler08d05e32012-08-08 16:39:54 -0400579 public void setExpandedHeightInternal(float h) {
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200580 float fhWithoutOverExpansion = getMaxPanelHeight() - getOverExpansionAmount();
581 if (mHeightAnimator == null) {
582 float overExpansionPixels = Math.max(0, h - fhWithoutOverExpansion);
583 if (getOverExpansionPixels() != overExpansionPixels && mTracking) {
584 setOverExpansion(overExpansionPixels, true /* isPixels */);
585 }
586 mExpandedHeight = Math.min(h, fhWithoutOverExpansion) + getOverExpansionAmount();
587 } else {
588 mExpandedHeight = h;
589 if (mOverExpandedBeforeFling) {
590 setOverExpansion(Math.max(0, h - fhWithoutOverExpansion), false /* isPixels */);
591 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100592 }
Daniel Sandler198a0302012-08-17 16:04:31 -0400593
Jorim Jaggi93439da2014-06-30 23:53:39 +0200594 mExpandedHeight = Math.max(0, mExpandedHeight);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100595 onHeightUpdated(mExpandedHeight);
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200596 mExpandedFraction = Math.min(1f, fhWithoutOverExpansion == 0
597 ? 0
598 : mExpandedHeight / fhWithoutOverExpansion);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200599 notifyBarPanelExpansionChanged();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400600 }
601
Jorim Jaggi30c305c2014-07-01 23:34:41 +0200602 /**
603 * @return true if the panel tracking should be temporarily blocked; this is used when a
604 * conflicting gesture (opening QS) is happening
605 */
606 protected abstract boolean isTrackingBlocked();
607
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200608 protected abstract void setOverExpansion(float overExpansion, boolean isPixels);
Selim Cinek24120a52014-05-26 10:05:42 +0200609
Jorim Jaggi90129582014-06-02 14:44:49 +0200610 protected abstract void onHeightUpdated(float expandedHeight);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100611
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200612 protected abstract float getOverExpansionAmount();
613
614 protected abstract float getOverExpansionPixels();
615
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100616 /**
617 * This returns the maximum height of the panel. Children should override this if their
618 * desired height is not the full height.
619 *
620 * @return the default implementation simply returns the maximum height.
621 */
Selim Cinek31094df2014-08-14 19:28:15 +0200622 protected abstract int getMaxPanelHeight();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400623
624 public void setExpandedFraction(float frac) {
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100625 setExpandedHeight(getMaxPanelHeight() * frac);
Daniel Sandler08d05e32012-08-08 16:39:54 -0400626 }
627
628 public float getExpandedHeight() {
629 return mExpandedHeight;
630 }
631
632 public float getExpandedFraction() {
633 return mExpandedFraction;
634 }
635
Daniel Sandlerb4e56ed2012-09-12 23:07:44 -0700636 public boolean isFullyExpanded() {
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100637 return mExpandedHeight >= getMaxPanelHeight();
Daniel Sandlerb4e56ed2012-09-12 23:07:44 -0700638 }
639
640 public boolean isFullyCollapsed() {
Daniel Sandler67eab792012-10-02 17:08:23 -0400641 return mExpandedHeight <= 0;
642 }
643
644 public boolean isCollapsing() {
645 return mClosing;
Daniel Sandlerb4e56ed2012-09-12 23:07:44 -0700646 }
647
John Spurlocka4b70af2013-08-17 14:05:49 -0400648 public boolean isTracking() {
649 return mTracking;
650 }
651
Daniel Sandler08d05e32012-08-08 16:39:54 -0400652 public void setBar(PanelBar panelBar) {
653 mBar = panelBar;
654 }
655
Jorim Jaggi8de4311c2014-08-11 22:36:20 +0200656 public void collapse(boolean delayed) {
John Spurlock97642182013-07-29 17:58:39 -0400657 if (DEBUG) logf("collapse: " + this);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200658 if (mPeekPending || mPeekAnimator != null) {
659 mCollapseAfterPeek = true;
660 if (mPeekPending) {
661
662 // We know that the whole gesture is just a peek triggered by a simple click, so
663 // better start it now.
664 removeCallbacks(mPeekRunnable);
665 mPeekRunnable.run();
666 }
Jorim Jaggifb98a502014-07-11 02:12:03 +0200667 } else if (!isFullyCollapsed() && !mTracking) {
Jorim Jaggi1d480692014-05-20 19:41:58 +0200668 if (mHeightAnimator != null) {
669 mHeightAnimator.cancel();
670 }
Daniel Sandler750bb9b2012-10-03 16:24:00 -0400671 mClosing = true;
Jorim Jaggib472b3472014-06-30 19:56:24 +0200672 notifyExpandingStarted();
Jorim Jaggi8de4311c2014-08-11 22:36:20 +0200673 if (delayed) {
674 postDelayed(new Runnable() {
675 @Override
676 public void run() {
677 fling(0, false /* expand */);
678 }
679 }, 120);
680 } else {
681 fling(0, false /* expand */);
682 }
Daniel Sandler08d05e32012-08-08 16:39:54 -0400683 }
684 }
685
686 public void expand() {
John Spurlock97642182013-07-29 17:58:39 -0400687 if (DEBUG) logf("expand: " + this);
Daniel Sandler198a0302012-08-17 16:04:31 -0400688 if (isFullyCollapsed()) {
689 mBar.startOpeningPanel(this);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200690 notifyExpandingStarted();
Jorim Jaggi1d480692014-05-20 19:41:58 +0200691 fling(0, true /* expand */);
Daniel Sandler198a0302012-08-17 16:04:31 -0400692 } else if (DEBUG) {
John Spurlock97642182013-07-29 17:58:39 -0400693 if (DEBUG) logf("skipping expansion: is expanded");
694 }
695 }
696
697 public void cancelPeek() {
Jorim Jaggib472b3472014-06-30 19:56:24 +0200698 if (mPeekAnimator != null) {
John Spurlock97642182013-07-29 17:58:39 -0400699 mPeekAnimator.cancel();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400700 }
Jorim Jaggib472b3472014-06-30 19:56:24 +0200701 removeCallbacks(mPeekRunnable);
702 mPeekPending = false;
703
704 // When peeking, we already tell mBar that we expanded ourselves. Make sure that we also
705 // notify mBar that we might have closed ourselves.
706 notifyBarPanelExpansionChanged();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400707 }
Daniel Sandler37a38aa2013-02-13 17:15:57 -0500708
Jorim Jaggi0a27be82014-06-11 03:22:39 +0200709 public void instantExpand() {
710 mInstantExpanding = true;
711 abortAnimations();
712 if (mTracking) {
713 onTrackingStopped(true /* expands */); // The panel is expanded after this call.
Jorim Jaggib472b3472014-06-30 19:56:24 +0200714 notifyExpandingFinished();
Jorim Jaggi0a27be82014-06-11 03:22:39 +0200715 }
716 setVisibility(VISIBLE);
717
718 // Wait for window manager to pickup the change, so we know the maximum height of the panel
719 // then.
720 getViewTreeObserver().addOnGlobalLayoutListener(
721 new ViewTreeObserver.OnGlobalLayoutListener() {
722 @Override
723 public void onGlobalLayout() {
724 if (mStatusBar.getStatusBarWindow().getHeight()
725 != mStatusBar.getStatusBarHeight()) {
726 getViewTreeObserver().removeOnGlobalLayoutListener(this);
727 setExpandedFraction(1f);
728 mInstantExpanding = false;
729 }
730 }
731 });
732
733 // Make sure a layout really happens.
734 requestLayout();
735 }
736
737 private void abortAnimations() {
738 cancelPeek();
739 if (mHeightAnimator != null) {
740 mHeightAnimator.cancel();
741 }
742 }
743
Jorim Jaggi90129582014-06-02 14:44:49 +0200744 protected void startUnlockHintAnimation() {
745
746 // We don't need to hint the user if an animation is already running or the user is changing
747 // the expansion.
748 if (mHeightAnimator != null || mTracking) {
749 return;
750 }
751 cancelPeek();
Jorim Jaggib472b3472014-06-30 19:56:24 +0200752 notifyExpandingStarted();
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200753 startUnlockHintAnimationPhase1(new Runnable() {
754 @Override
755 public void run() {
Jorim Jaggib472b3472014-06-30 19:56:24 +0200756 notifyExpandingFinished();
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200757 mStatusBar.onHintFinished();
758 mHintAnimationRunning = false;
759 }
760 });
Jorim Jaggi90129582014-06-02 14:44:49 +0200761 mStatusBar.onUnlockHintStarted();
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200762 mHintAnimationRunning = true;
Jorim Jaggi90129582014-06-02 14:44:49 +0200763 }
764
765 /**
766 * Phase 1: Move everything upwards.
767 */
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200768 private void startUnlockHintAnimationPhase1(final Runnable onAnimationFinished) {
Jorim Jaggi90129582014-06-02 14:44:49 +0200769 float target = Math.max(0, getMaxPanelHeight() - mHintDistance);
770 ValueAnimator animator = createHeightAnimator(target);
771 animator.setDuration(250);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200772 animator.setInterpolator(mFastOutSlowInInterpolator);
Jorim Jaggi90129582014-06-02 14:44:49 +0200773 animator.addListener(new AnimatorListenerAdapter() {
774 private boolean mCancelled;
775
776 @Override
777 public void onAnimationCancel(Animator animation) {
778 mCancelled = true;
779 }
780
781 @Override
782 public void onAnimationEnd(Animator animation) {
783 if (mCancelled) {
784 mHeightAnimator = null;
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200785 onAnimationFinished.run();
Jorim Jaggi90129582014-06-02 14:44:49 +0200786 } else {
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200787 startUnlockHintAnimationPhase2(onAnimationFinished);
Jorim Jaggi90129582014-06-02 14:44:49 +0200788 }
789 }
790 });
791 animator.start();
792 mHeightAnimator = animator;
Selim Cinekf99d0002014-06-13 07:36:01 +0200793 mOriginalIndicationY = mKeyguardBottomArea.getIndicationView().getY();
794 mKeyguardBottomArea.getIndicationView().animate()
795 .y(mOriginalIndicationY - mHintDistance)
796 .setDuration(250)
Jorim Jaggib472b3472014-06-30 19:56:24 +0200797 .setInterpolator(mFastOutSlowInInterpolator)
Selim Cinekf99d0002014-06-13 07:36:01 +0200798 .withEndAction(new Runnable() {
799 @Override
800 public void run() {
801 mKeyguardBottomArea.getIndicationView().animate()
802 .y(mOriginalIndicationY)
803 .setDuration(450)
804 .setInterpolator(mBounceInterpolator)
805 .start();
806 }
807 })
808 .start();
Jorim Jaggi90129582014-06-02 14:44:49 +0200809 }
810
811 /**
812 * Phase 2: Bounce down.
813 */
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200814 private void startUnlockHintAnimationPhase2(final Runnable onAnimationFinished) {
Jorim Jaggi90129582014-06-02 14:44:49 +0200815 ValueAnimator animator = createHeightAnimator(getMaxPanelHeight());
816 animator.setDuration(450);
817 animator.setInterpolator(mBounceInterpolator);
818 animator.addListener(new AnimatorListenerAdapter() {
819 @Override
820 public void onAnimationEnd(Animator animation) {
821 mHeightAnimator = null;
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200822 onAnimationFinished.run();
Jorim Jaggi90129582014-06-02 14:44:49 +0200823 }
824 });
825 animator.start();
826 mHeightAnimator = animator;
827 }
828
829 private ValueAnimator createHeightAnimator(float targetHeight) {
830 ValueAnimator animator = ValueAnimator.ofFloat(mExpandedHeight, targetHeight);
831 animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
832 @Override
833 public void onAnimationUpdate(ValueAnimator animation) {
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200834 setExpandedHeightInternal((Float) animation.getAnimatedValue());
Jorim Jaggi90129582014-06-02 14:44:49 +0200835 }
836 });
837 return animator;
838 }
839
Jorim Jaggib472b3472014-06-30 19:56:24 +0200840 private void notifyBarPanelExpansionChanged() {
841 mBar.panelExpansionChanged(this, mExpandedFraction, mExpandedFraction > 0f || mPeekPending
842 || mPeekAnimator != null);
843 }
844
Jorim Jaggi90129582014-06-02 14:44:49 +0200845 /**
846 * Gets called when the user performs a click anywhere in the empty area of the panel.
847 *
848 * @return whether the panel will be expanded after the action performed by this method
849 */
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200850 private boolean onEmptySpaceClick(float x) {
851 if (mHintAnimationRunning) {
852 return true;
853 }
Jorim Jaggi6539a832014-06-03 23:33:09 +0200854 if (x < mEdgeTapAreaWidth
855 && mStatusBar.getBarState() == StatusBarState.KEYGUARD) {
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200856 onEdgeClicked(false /* right */);
857 return true;
Jorim Jaggi6539a832014-06-03 23:33:09 +0200858 } else if (x > getWidth() - mEdgeTapAreaWidth
859 && mStatusBar.getBarState() == StatusBarState.KEYGUARD) {
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200860 onEdgeClicked(true /* right */);
861 return true;
862 } else {
863 return onMiddleClicked();
864 }
865 }
866
Jorim Jaggi488b7922014-08-05 21:12:02 +0200867 private final Runnable mPostCollapseRunnable = new Runnable() {
868 @Override
869 public void run() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +0200870 collapse(false /* delayed */);
Jorim Jaggi488b7922014-08-05 21:12:02 +0200871 }
872 };
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200873 private boolean onMiddleClicked() {
Jorim Jaggi90129582014-06-02 14:44:49 +0200874 switch (mStatusBar.getBarState()) {
875 case StatusBarState.KEYGUARD:
876 startUnlockHintAnimation();
877 return true;
878 case StatusBarState.SHADE_LOCKED:
Jorim Jaggi6539a832014-06-03 23:33:09 +0200879 mStatusBar.goToKeyguard();
Jorim Jaggi90129582014-06-02 14:44:49 +0200880 return true;
881 case StatusBarState.SHADE:
Jorim Jaggi488b7922014-08-05 21:12:02 +0200882
883 // This gets called in the middle of the touch handling, where the state is still
884 // that we are tracking the panel. Collapse the panel after this is done.
885 post(mPostCollapseRunnable);
Jorim Jaggi90129582014-06-02 14:44:49 +0200886 return false;
887 default:
888 return true;
889 }
890 }
891
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200892 protected abstract void onEdgeClicked(boolean right);
893
Daniel Sandler37a38aa2013-02-13 17:15:57 -0500894 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
Selim Cineka3e5bcb2014-04-07 20:07:22 +0200895 pw.println(String.format("[PanelView(%s): expandedHeight=%f maxPanelHeight=%d closing=%s"
John Spurlock50728832014-04-17 19:05:28 -0400896 + " tracking=%s justPeeked=%s peekAnim=%s%s timeAnim=%s%s"
Daniel Sandler37a38aa2013-02-13 17:15:57 -0500897 + "]",
898 this.getClass().getSimpleName(),
899 getExpandedHeight(),
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100900 getMaxPanelHeight(),
Daniel Sandler37a38aa2013-02-13 17:15:57 -0500901 mClosing?"T":"f",
902 mTracking?"T":"f",
Daniel Sandler37a38aa2013-02-13 17:15:57 -0500903 mJustPeeked?"T":"f",
904 mPeekAnimator, ((mPeekAnimator!=null && mPeekAnimator.isStarted())?" (started)":""),
Jorim Jaggi1d480692014-05-20 19:41:58 +0200905 mHeightAnimator, ((mHeightAnimator !=null && mHeightAnimator.isStarted())?" (started)":"")
Daniel Sandler37a38aa2013-02-13 17:15:57 -0500906 ));
907 }
Selim Cinek3c4635c2014-05-29 02:12:47 +0200908
909 public abstract void resetViews();
Jorim Jaggi2580a9762014-06-25 03:08:25 +0200910
911 protected abstract float getPeekHeight();
Jorim Jaggi30c305c2014-07-01 23:34:41 +0200912
913 protected abstract float getCannedFlingDurationFactor();
Jorim Jaggi4b04a3a2014-07-28 17:43:56 +0200914
915 /**
916 * @return whether "Clear all" button will be visible when the panel is fully expanded
917 */
918 protected abstract boolean fullyExpandedClearAllVisible();
919
920 protected abstract boolean isClearAllVisible();
921
922 /**
923 * @return the height of the clear all button, in pixels
924 */
925 protected abstract int getClearAllHeight();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400926}