blob: c8e943e075473b5b686fae9c5e463b9eeddf2a31 [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;
Daniel Sandler0c1b75c2012-10-04 12:08:54 -040057 private boolean mJustPeeked;
Daniel Sandler50508132012-08-16 14:10:53 -040058 private boolean mClosing;
Jorim Jaggi8dd95e02014-06-03 16:19:33 +020059 protected boolean mTracking;
Jorim Jaggi90129582014-06-02 14:44:49 +020060 private boolean mTouchSlopExceeded;
John Spurlock48fa91a2013-08-15 09:29:31 -040061 private int mTrackingPointer;
Jorim Jaggid7daab72014-05-06 22:22:20 +020062 protected int mTouchSlop;
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +020063 protected boolean mHintAnimationRunning;
Jorim Jaggi47c85a32014-06-05 17:25:40 +020064 private boolean mOverExpandedBeforeFling;
Selim Cinekf99d0002014-06-13 07:36:01 +020065 private float mOriginalIndicationY;
Daniel Sandler08d05e32012-08-08 16:39:54 -040066
Jorim Jaggi1d480692014-05-20 19:41:58 +020067 private ValueAnimator mHeightAnimator;
Daniel Sandler0c1b75c2012-10-04 12:08:54 -040068 private ObjectAnimator mPeekAnimator;
Jorim Jaggib7b61dd2014-05-21 15:45:07 +020069 private VelocityTrackerInterface mVelocityTracker;
Jorim Jaggi1d480692014-05-20 19:41:58 +020070 private FlingAnimationUtils mFlingAnimationUtils;
Daniel Sandler08d05e32012-08-08 16:39:54 -040071
Jorim Jaggi0a27be82014-06-11 03:22:39 +020072 /**
73 * Whether an instant expand request is currently pending and we are just waiting for layout.
74 */
75 private boolean mInstantExpanding;
76
Daniel Sandler08d05e32012-08-08 16:39:54 -040077 PanelBar mBar;
78
Selim Cinekb84a1072014-05-15 19:10:18 +020079 protected int mMaxPanelHeight = -1;
Daniel Sandler50508132012-08-16 14:10:53 -040080 private String mViewName;
Jorim Jaggid7daab72014-05-06 22:22:20 +020081 private float mInitialTouchY;
82 private float mInitialTouchX;
Daniel Sandler08d05e32012-08-08 16:39:54 -040083
Jorim Jaggi90129582014-06-02 14:44:49 +020084 private Interpolator mLinearOutSlowInInterpolator;
Jorim Jaggib472b3472014-06-30 19:56:24 +020085 private Interpolator mFastOutSlowInInterpolator;
Jorim Jaggi90129582014-06-02 14:44:49 +020086 private Interpolator mBounceInterpolator;
Selim Cinekf99d0002014-06-13 07:36:01 +020087 protected KeyguardBottomAreaView mKeyguardBottomArea;
Jorim Jaggi90129582014-06-02 14:44:49 +020088
Jorim Jaggib472b3472014-06-30 19:56:24 +020089 private boolean mPeekPending;
90 private boolean mCollapseAfterPeek;
91 private boolean mExpanding;
92 private boolean mGestureWaitForTouchSlop;
93 private Runnable mPeekRunnable = new Runnable() {
94 @Override
95 public void run() {
96 mPeekPending = false;
97 runPeekAnimation();
98 }
99 };
100
Selim Cinek1685e632014-04-08 02:27:49 +0200101 protected void onExpandingFinished() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +0200102 mClosing = false;
Jorim Jaggi2fbad7b2014-05-26 22:38:00 +0200103 mBar.onExpandingFinished();
Selim Cinek1685e632014-04-08 02:27:49 +0200104 }
105
106 protected void onExpandingStarted() {
107 }
108
Jorim Jaggib472b3472014-06-30 19:56:24 +0200109 private void notifyExpandingStarted() {
110 if (!mExpanding) {
111 mExpanding = true;
112 onExpandingStarted();
113 }
114 }
115
116 private void notifyExpandingFinished() {
117 if (mExpanding) {
118 mExpanding = false;
119 onExpandingFinished();
120 }
121 }
122
123 private void schedulePeek() {
124 mPeekPending = true;
125 long timeout = ViewConfiguration.getTapTimeout();
126 postOnAnimationDelayed(mPeekRunnable, timeout);
127 notifyBarPanelExpansionChanged();
128 }
129
Daniel Sandler0c1b75c2012-10-04 12:08:54 -0400130 private void runPeekAnimation() {
Jorim Jaggi2580a9762014-06-25 03:08:25 +0200131 mPeekHeight = getPeekHeight();
John Spurlock97642182013-07-29 17:58:39 -0400132 if (DEBUG) logf("peek to height=%.1f", mPeekHeight);
Jorim Jaggi1d480692014-05-20 19:41:58 +0200133 if (mHeightAnimator != null) {
Daniel Sandler0c1b75c2012-10-04 12:08:54 -0400134 return;
135 }
Jorim Jaggib472b3472014-06-30 19:56:24 +0200136 mPeekAnimator = ObjectAnimator.ofFloat(this, "expandedHeight", mPeekHeight)
137 .setDuration(250);
138 mPeekAnimator.setInterpolator(mLinearOutSlowInInterpolator);
139 mPeekAnimator.addListener(new AnimatorListenerAdapter() {
140 private boolean mCancelled;
141
142 @Override
143 public void onAnimationCancel(Animator animation) {
144 mCancelled = true;
145 }
146
147 @Override
148 public void onAnimationEnd(Animator animation) {
149 mPeekAnimator = null;
150 if (mCollapseAfterPeek && !mCancelled) {
151 postOnAnimation(new Runnable() {
152 @Override
153 public void run() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +0200154 collapse(false /* delayed */);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200155 }
156 });
157 }
158 mCollapseAfterPeek = false;
159 }
160 });
161 notifyExpandingStarted();
Daniel Sandler0c1b75c2012-10-04 12:08:54 -0400162 mPeekAnimator.start();
Jorim Jaggib472b3472014-06-30 19:56:24 +0200163 mJustPeeked = true;
Daniel Sandler0c1b75c2012-10-04 12:08:54 -0400164 }
165
Daniel Sandler08d05e32012-08-08 16:39:54 -0400166 public PanelView(Context context, AttributeSet attrs) {
167 super(context, attrs);
Jorim Jaggi1d480692014-05-20 19:41:58 +0200168 mFlingAnimationUtils = new FlingAnimationUtils(context, 0.6f);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200169 mFastOutSlowInInterpolator =
Jorim Jaggi90129582014-06-02 14:44:49 +0200170 AnimationUtils.loadInterpolator(context, android.R.interpolator.fast_out_slow_in);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200171 mLinearOutSlowInInterpolator =
172 AnimationUtils.loadInterpolator(context, android.R.interpolator.linear_out_slow_in);
Jorim Jaggi90129582014-06-02 14:44:49 +0200173 mBounceInterpolator = new BounceInterpolator();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400174 }
175
Jorim Jaggi069cd032014-05-15 03:09:01 +0200176 protected void loadDimens() {
Daniel Sandler08d05e32012-08-08 16:39:54 -0400177 final Resources res = getContext().getResources();
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100178 final ViewConfiguration configuration = ViewConfiguration.get(getContext());
179 mTouchSlop = configuration.getScaledTouchSlop();
Jorim Jaggi90129582014-06-02 14:44:49 +0200180 mHintDistance = res.getDimension(R.dimen.hint_move_distance);
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200181 mEdgeTapAreaWidth = res.getDimensionPixelSize(R.dimen.edge_tap_area_width);
Daniel Sandler08d05e32012-08-08 16:39:54 -0400182 }
183
184 private void trackMovement(MotionEvent event) {
185 // Add movement to velocity tracker using raw screen X and Y coordinates instead
186 // of window coordinates because the window frame may be moving at the same time.
187 float deltaX = event.getRawX() - event.getX();
188 float deltaY = event.getRawY() - event.getY();
189 event.offsetLocation(deltaX, deltaY);
Daniel Sandlerb17a7262012-10-05 14:32:50 -0400190 if (mVelocityTracker != null) mVelocityTracker.addMovement(event);
Daniel Sandler08d05e32012-08-08 16:39:54 -0400191 event.offsetLocation(-deltaX, -deltaY);
192 }
193
Daniel Sandlerbf526d12012-09-04 22:56:44 -0400194 @Override
195 public boolean onTouchEvent(MotionEvent event) {
Jorim Jaggi0a27be82014-06-11 03:22:39 +0200196 if (mInstantExpanding) {
197 return false;
198 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100199
200 /*
201 * We capture touch events here and update the expand height here in case according to
202 * the users fingers. This also handles multi-touch.
203 *
204 * If the user just clicks shortly, we give him a quick peek of the shade.
205 *
206 * Flinging is also enabled in order to open or close the shade.
207 */
208
209 int pointerIndex = event.findPointerIndex(mTrackingPointer);
210 if (pointerIndex < 0) {
211 pointerIndex = 0;
212 mTrackingPointer = event.getPointerId(pointerIndex);
213 }
214 final float y = event.getY(pointerIndex);
Jorim Jaggia6310292014-04-16 14:11:52 +0200215 final float x = event.getX(pointerIndex);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100216
Jorim Jaggib472b3472014-06-30 19:56:24 +0200217 if (event.getActionMasked() == MotionEvent.ACTION_DOWN) {
218 mGestureWaitForTouchSlop = mExpandedHeight == 0f;
219 }
220 boolean waitForTouchSlop = hasConflictingGestures() || mGestureWaitForTouchSlop;
Selim Cinek4c6969a2014-05-26 19:22:17 +0200221
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100222 switch (event.getActionMasked()) {
223 case MotionEvent.ACTION_DOWN:
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100224 mInitialTouchY = y;
Jorim Jaggia6310292014-04-16 14:11:52 +0200225 mInitialTouchX = x;
Selim Cinek4c6969a2014-05-26 19:22:17 +0200226 mInitialOffsetOnTouch = mExpandedHeight;
Jorim Jaggi90129582014-06-02 14:44:49 +0200227 mTouchSlopExceeded = false;
Jorim Jaggi3857ac42014-06-27 18:01:12 +0200228 mJustPeeked = false;
Jorim Jaggib7b61dd2014-05-21 15:45:07 +0200229 if (mVelocityTracker == null) {
230 initVelocityTracker();
231 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100232 trackMovement(event);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200233 if (!waitForTouchSlop || (mHeightAnimator != null && !mHintAnimationRunning) ||
234 mPeekPending || mPeekAnimator != null) {
Selim Cinek4c6969a2014-05-26 19:22:17 +0200235 if (mHeightAnimator != null) {
236 mHeightAnimator.cancel(); // end any outstanding animations
237 }
Jorim Jaggib472b3472014-06-30 19:56:24 +0200238 cancelPeek();
239 mTouchSlopExceeded = (mHeightAnimator != null && !mHintAnimationRunning)
240 || mPeekPending || mPeekAnimator != null;
Selim Cinek4c6969a2014-05-26 19:22:17 +0200241 onTrackingStarted();
Jorim Jaggi1d480692014-05-20 19:41:58 +0200242 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100243 if (mExpandedHeight == 0) {
Jorim Jaggib472b3472014-06-30 19:56:24 +0200244 schedulePeek();
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100245 }
246 break;
247
248 case MotionEvent.ACTION_POINTER_UP:
249 final int upPointer = event.getPointerId(event.getActionIndex());
250 if (mTrackingPointer == upPointer) {
251 // gesture is ongoing, find a new pointer to track
252 final int newIndex = event.getPointerId(0) != upPointer ? 0 : 1;
253 final float newY = event.getY(newIndex);
Jorim Jaggia6310292014-04-16 14:11:52 +0200254 final float newX = event.getX(newIndex);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100255 mTrackingPointer = event.getPointerId(newIndex);
256 mInitialOffsetOnTouch = mExpandedHeight;
257 mInitialTouchY = newY;
Jorim Jaggia6310292014-04-16 14:11:52 +0200258 mInitialTouchX = newX;
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100259 }
260 break;
261
262 case MotionEvent.ACTION_MOVE:
Selim Cinek4c6969a2014-05-26 19:22:17 +0200263 float h = y - mInitialTouchY;
Jorim Jaggib7240132014-06-30 01:39:07 +0200264
265 // If the panel was collapsed when touching, we only need to check for the
266 // y-component of the gesture, as we have no conflicting horizontal gesture.
267 if (Math.abs(h) > mTouchSlop
268 && (Math.abs(h) > Math.abs(x - mInitialTouchX)
269 || mInitialOffsetOnTouch == 0f)) {
Jorim Jaggi90129582014-06-02 14:44:49 +0200270 mTouchSlopExceeded = true;
271 if (waitForTouchSlop && !mTracking) {
Jorim Jaggib472b3472014-06-30 19:56:24 +0200272 if (!mJustPeeked) {
273 mInitialOffsetOnTouch = mExpandedHeight;
274 mInitialTouchX = x;
275 mInitialTouchY = y;
276 h = 0;
277 }
Jorim Jaggi90129582014-06-02 14:44:49 +0200278 if (mHeightAnimator != null) {
279 mHeightAnimator.cancel(); // end any outstanding animations
280 }
Jorim Jaggib472b3472014-06-30 19:56:24 +0200281 removeCallbacks(mPeekRunnable);
282 mPeekPending = false;
Jorim Jaggi90129582014-06-02 14:44:49 +0200283 onTrackingStarted();
Selim Cinek4c6969a2014-05-26 19:22:17 +0200284 }
Selim Cinek4c6969a2014-05-26 19:22:17 +0200285 }
Jorim Jaggi93439da2014-06-30 23:53:39 +0200286 final float newHeight = Math.max(0, h + mInitialOffsetOnTouch);
Selim Cinek4c6969a2014-05-26 19:22:17 +0200287 if (newHeight > mPeekHeight) {
Jorim Jaggib472b3472014-06-30 19:56:24 +0200288 if (mPeekAnimator != null) {
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100289 mPeekAnimator.cancel();
290 }
291 mJustPeeked = false;
292 }
Jorim Jaggi30c305c2014-07-01 23:34:41 +0200293 if (!mJustPeeked && (!waitForTouchSlop || mTracking) && !isTrackingBlocked()) {
Jorim Jaggicc693242014-06-14 03:04:35 +0000294 setExpandedHeightInternal(newHeight);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100295 }
296
297 trackMovement(event);
298 break;
299
300 case MotionEvent.ACTION_UP:
301 case MotionEvent.ACTION_CANCEL:
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100302 mTrackingPointer = -1;
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100303 trackMovement(event);
Jorim Jaggi787a0af2014-06-04 18:57:14 +0200304 if ((mTracking && mTouchSlopExceeded)
Jorim Jaggidc96d632014-07-01 18:48:52 +0200305 || Math.abs(x - mInitialTouchX) > mTouchSlop
306 || Math.abs(y - mInitialTouchY) > mTouchSlop
Jorim Jaggi787a0af2014-06-04 18:57:14 +0200307 || event.getActionMasked() == MotionEvent.ACTION_CANCEL) {
Jorim Jaggib7240132014-06-30 01:39:07 +0200308 float vel = 0f;
309 float vectorVel = 0f;
310 if (mVelocityTracker != null) {
311 mVelocityTracker.computeCurrentVelocity(1000);
312 vel = mVelocityTracker.getYVelocity();
313 vectorVel = (float) Math.hypot(
314 mVelocityTracker.getXVelocity(), mVelocityTracker.getYVelocity());
315 }
316 boolean expand = flingExpands(vel, vectorVel);
Jorim Jaggi90129582014-06-02 14:44:49 +0200317 onTrackingStopped(expand);
318 fling(vel, expand);
319 } else {
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200320 boolean expands = onEmptySpaceClick(mInitialTouchX);
Jorim Jaggi90129582014-06-02 14:44:49 +0200321 onTrackingStopped(expands);
322 }
Jorim Jaggidc96d632014-07-01 18:48:52 +0200323
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100324 if (mVelocityTracker != null) {
325 mVelocityTracker.recycle();
326 mVelocityTracker = null;
327 }
328 break;
329 }
Selim Cinek4c6969a2014-05-26 19:22:17 +0200330 return !waitForTouchSlop || mTracking;
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100331 }
332
Selim Cinek4c6969a2014-05-26 19:22:17 +0200333 protected abstract boolean hasConflictingGestures();
334
Jorim Jaggi2fbad7b2014-05-26 22:38:00 +0200335 protected void onTrackingStopped(boolean expand) {
Selim Cinek4c6969a2014-05-26 19:22:17 +0200336 mTracking = false;
Jorim Jaggi2fbad7b2014-05-26 22:38:00 +0200337 mBar.onTrackingStopped(PanelView.this, expand);
Selim Cinek1685e632014-04-08 02:27:49 +0200338 }
339
340 protected void onTrackingStarted() {
Selim Cinek4c6969a2014-05-26 19:22:17 +0200341 mTracking = true;
Jorim Jaggib472b3472014-06-30 19:56:24 +0200342 mCollapseAfterPeek = false;
Selim Cinek1685e632014-04-08 02:27:49 +0200343 mBar.onTrackingStarted(PanelView.this);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200344 notifyExpandingStarted();
Selim Cinek1685e632014-04-08 02:27:49 +0200345 }
346
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100347 @Override
348 public boolean onInterceptTouchEvent(MotionEvent event) {
Jorim Jaggi0a27be82014-06-11 03:22:39 +0200349 if (mInstantExpanding) {
350 return false;
351 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100352
353 /*
354 * If the user drags anywhere inside the panel we intercept it if he moves his finger
355 * upwards. This allows closing the shade from anywhere inside the panel.
356 *
357 * We only do this if the current content is scrolled to the bottom,
358 * i.e isScrolledToBottom() is true and therefore there is no conflicting scrolling gesture
359 * possible.
360 */
361 int pointerIndex = event.findPointerIndex(mTrackingPointer);
362 if (pointerIndex < 0) {
363 pointerIndex = 0;
364 mTrackingPointer = event.getPointerId(pointerIndex);
365 }
Jorim Jaggia6310292014-04-16 14:11:52 +0200366 final float x = event.getX(pointerIndex);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100367 final float y = event.getY(pointerIndex);
368 boolean scrolledToBottom = isScrolledToBottom();
369
370 switch (event.getActionMasked()) {
371 case MotionEvent.ACTION_DOWN:
Jorim Jaggib690f0d2014-07-03 23:25:44 +0200372 mStatusBar.userActivity();
Jorim Jaggib472b3472014-06-30 19:56:24 +0200373 if (mHeightAnimator != null && !mHintAnimationRunning ||
374 mPeekPending || mPeekAnimator != null) {
375 if (mHeightAnimator != null) {
376 mHeightAnimator.cancel(); // end any outstanding animations
377 }
378 cancelPeek();
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200379 mTouchSlopExceeded = true;
Selim Cinek172e9142014-05-07 19:38:00 +0200380 return true;
381 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100382 mInitialTouchY = y;
Jorim Jaggia6310292014-04-16 14:11:52 +0200383 mInitialTouchX = x;
Jorim Jaggi90129582014-06-02 14:44:49 +0200384 mTouchSlopExceeded = false;
Jorim Jaggi3857ac42014-06-27 18:01:12 +0200385 mJustPeeked = false;
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100386 initVelocityTracker();
387 trackMovement(event);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100388 break;
389 case MotionEvent.ACTION_POINTER_UP:
390 final int upPointer = event.getPointerId(event.getActionIndex());
391 if (mTrackingPointer == upPointer) {
392 // gesture is ongoing, find a new pointer to track
393 final int newIndex = event.getPointerId(0) != upPointer ? 0 : 1;
394 mTrackingPointer = event.getPointerId(newIndex);
Jorim Jaggia6310292014-04-16 14:11:52 +0200395 mInitialTouchX = event.getX(newIndex);
396 mInitialTouchY = event.getY(newIndex);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100397 }
398 break;
399
400 case MotionEvent.ACTION_MOVE:
401 final float h = y - mInitialTouchY;
402 trackMovement(event);
403 if (scrolledToBottom) {
Jorim Jaggia6310292014-04-16 14:11:52 +0200404 if (h < -mTouchSlop && h < -Math.abs(x - mInitialTouchX)) {
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200405 if (mHeightAnimator != null) {
406 mHeightAnimator.cancel();
407 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100408 mInitialOffsetOnTouch = mExpandedHeight;
409 mInitialTouchY = y;
Jorim Jaggia6310292014-04-16 14:11:52 +0200410 mInitialTouchX = x;
Selim Cinek91c39ef2014-04-07 21:18:09 +0200411 mTracking = true;
Jorim Jaggi90129582014-06-02 14:44:49 +0200412 mTouchSlopExceeded = true;
Selim Cinek1685e632014-04-08 02:27:49 +0200413 onTrackingStarted();
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100414 return true;
415 }
416 }
417 break;
418 }
419 return false;
420 }
421
422 private void initVelocityTracker() {
423 if (mVelocityTracker != null) {
424 mVelocityTracker.recycle();
425 }
Jorim Jaggib7b61dd2014-05-21 15:45:07 +0200426 mVelocityTracker = VelocityTrackerFactory.obtain(getContext());
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100427 }
428
429 protected boolean isScrolledToBottom() {
Selim Cinek172e9142014-05-07 19:38:00 +0200430 return true;
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100431 }
432
433 protected float getContentHeight() {
434 return mExpandedHeight;
Daniel Sandlerbf526d12012-09-04 22:56:44 -0400435 }
436
Daniel Sandler08d05e32012-08-08 16:39:54 -0400437 @Override
438 protected void onFinishInflate() {
439 super.onFinishInflate();
440 loadDimens();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400441 }
442
Jorim Jaggi069cd032014-05-15 03:09:01 +0200443 @Override
444 protected void onConfigurationChanged(Configuration newConfig) {
445 super.onConfigurationChanged(newConfig);
446 loadDimens();
447 mMaxPanelHeight = -1;
448 }
449
Jorim Jaggi2fbad7b2014-05-26 22:38:00 +0200450 /**
Jorim Jaggib7240132014-06-30 01:39:07 +0200451 * @param vel the current vertical velocity of the motion
452 * @param vectorVel the length of the vectorial velocity
Jorim Jaggie29b2db2014-05-30 23:17:03 +0200453 * @return whether a fling should expands the panel; contracts otherwise
Jorim Jaggi2fbad7b2014-05-26 22:38:00 +0200454 */
Jorim Jaggidc96d632014-07-01 18:48:52 +0200455 protected boolean flingExpands(float vel, float vectorVel) {
Jorim Jaggib7240132014-06-30 01:39:07 +0200456 if (Math.abs(vectorVel) < mFlingAnimationUtils.getMinVelocityPxPerSecond()) {
Jorim Jaggie29b2db2014-05-30 23:17:03 +0200457 return getExpandedFraction() > 0.5f;
Selim Cinek1685e632014-04-08 02:27:49 +0200458 } else {
Jorim Jaggie29b2db2014-05-30 23:17:03 +0200459 return vel > 0;
Daniel Sandler08d05e32012-08-08 16:39:54 -0400460 }
Jorim Jaggi1d480692014-05-20 19:41:58 +0200461 }
462
463 protected void fling(float vel, boolean expand) {
464 cancelPeek();
465 float target = expand ? getMaxPanelHeight() : 0.0f;
Jorim Jaggi4b04a3a2014-07-28 17:43:56 +0200466
467 // Hack to make the expand transition look nice when clear all button is visible - we make
468 // the animation only to the last notification, and then jump to the maximum panel height so
469 // clear all just fades in and the decelerating motion is towards the last notification.
470 final boolean clearAllExpandHack = expand && fullyExpandedClearAllVisible()
471 && mExpandedHeight < getMaxPanelHeight() - getClearAllHeight()
472 && !isClearAllVisible();
473 if (clearAllExpandHack) {
474 target = getMaxPanelHeight() - getClearAllHeight();
475 }
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200476 if (target == mExpandedHeight || getOverExpansionAmount() > 0f && expand) {
Jorim Jaggib472b3472014-06-30 19:56:24 +0200477 notifyExpandingFinished();
Jorim Jaggi2fbad7b2014-05-26 22:38:00 +0200478 return;
479 }
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200480 mOverExpandedBeforeFling = getOverExpansionAmount() > 0f;
Jorim Jaggi90129582014-06-02 14:44:49 +0200481 ValueAnimator animator = createHeightAnimator(target);
Jorim Jaggi1d480692014-05-20 19:41:58 +0200482 if (expand) {
483 mFlingAnimationUtils.apply(animator, mExpandedHeight, target, vel, getHeight());
484 } else {
485 mFlingAnimationUtils.applyDismissing(animator, mExpandedHeight, target, vel,
486 getHeight());
487
488 // Make it shorter if we run a canned animation
489 if (vel == 0) {
Jorim Jaggi30c305c2014-07-01 23:34:41 +0200490 animator.setDuration((long)
491 (animator.getDuration() * getCannedFlingDurationFactor()));
Jorim Jaggi1d480692014-05-20 19:41:58 +0200492 }
493 }
Jorim Jaggi1d480692014-05-20 19:41:58 +0200494 animator.addListener(new AnimatorListenerAdapter() {
Jorim Jaggib472b3472014-06-30 19:56:24 +0200495 private boolean mCancelled;
496
497 @Override
498 public void onAnimationCancel(Animator animation) {
499 mCancelled = true;
500 }
501
Jorim Jaggi1d480692014-05-20 19:41:58 +0200502 @Override
503 public void onAnimationEnd(Animator animation) {
Jorim Jaggi4b04a3a2014-07-28 17:43:56 +0200504 if (clearAllExpandHack && !mCancelled) {
Jorim Jaggi2ae259d2014-08-04 23:35:47 +0200505 setExpandedHeightInternal(getMaxPanelHeight());
506 }
507 mHeightAnimator = null;
508 if (!mCancelled) {
509 notifyExpandingFinished();
Jorim Jaggib472b3472014-06-30 19:56:24 +0200510 }
Jorim Jaggi1d480692014-05-20 19:41:58 +0200511 }
512 });
Jorim Jaggi1d480692014-05-20 19:41:58 +0200513 mHeightAnimator = animator;
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200514 animator.start();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400515 }
516
517 @Override
518 protected void onAttachedToWindow() {
519 super.onAttachedToWindow();
Daniel Sandler978f8532012-08-15 15:48:16 -0400520 mViewName = getResources().getResourceName(getId());
521 }
522
523 public String getName() {
524 return mViewName;
Daniel Sandler08d05e32012-08-08 16:39:54 -0400525 }
526
Daniel Sandler08d05e32012-08-08 16:39:54 -0400527 @Override
528 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
529 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
530
John Spurlock97642182013-07-29 17:58:39 -0400531 if (DEBUG) logf("onMeasure(%d, %d) -> (%d, %d)",
Daniel Sandler08d05e32012-08-08 16:39:54 -0400532 widthMeasureSpec, heightMeasureSpec, getMeasuredWidth(), getMeasuredHeight());
Daniel Sandler198a0302012-08-17 16:04:31 -0400533
534 // Did one of our children change size?
535 int newHeight = getMeasuredHeight();
Selim Cinekb84a1072014-05-15 19:10:18 +0200536 if (newHeight > mMaxPanelHeight) {
537 // we only adapt the max height if it's bigger
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100538 mMaxPanelHeight = newHeight;
Jorim Jaggi03c701e2014-04-02 12:39:51 +0200539 // If the user isn't actively poking us, let's rubberband to the content
Jorim Jaggi1d480692014-05-20 19:41:58 +0200540 if (!mTracking && mHeightAnimator == null
Jorim Jaggi03c701e2014-04-02 12:39:51 +0200541 && mExpandedHeight > 0 && mExpandedHeight != mMaxPanelHeight
Jorim Jaggib472b3472014-06-30 19:56:24 +0200542 && mMaxPanelHeight > 0 && mPeekAnimator == null) {
Jorim Jaggi03c701e2014-04-02 12:39:51 +0200543 mExpandedHeight = mMaxPanelHeight;
544 }
Daniel Sandler50508132012-08-16 14:10:53 -0400545 }
Daniel Sandler08d05e32012-08-08 16:39:54 -0400546 }
547
Daniel Sandler08d05e32012-08-08 16:39:54 -0400548 public void setExpandedHeight(float height) {
John Spurlock97642182013-07-29 17:58:39 -0400549 if (DEBUG) logf("setExpandedHeight(%.1f)", height);
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200550 setExpandedHeightInternal(height + getOverExpansionPixels());
Daniel Sandler08d05e32012-08-08 16:39:54 -0400551 }
552
Daniel Sandler50508132012-08-16 14:10:53 -0400553 @Override
554 protected void onLayout (boolean changed, int left, int top, int right, int bottom) {
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100555 if (DEBUG) logf("onLayout: changed=%s, bottom=%d eh=%d fh=%d", changed?"T":"f", bottom,
556 (int)mExpandedHeight, mMaxPanelHeight);
Daniel Sandler50508132012-08-16 14:10:53 -0400557 super.onLayout(changed, left, top, right, bottom);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100558 requestPanelHeightUpdate();
559 }
560
561 protected void requestPanelHeightUpdate() {
562 float currentMaxPanelHeight = getMaxPanelHeight();
563
564 // If the user isn't actively poking us, let's update the height
Jorim Jaggi30c305c2014-07-01 23:34:41 +0200565 if ((!mTracking || isTrackingBlocked())
566 && mHeightAnimator == null
567 && mExpandedHeight > 0
568 && currentMaxPanelHeight != mExpandedHeight
569 && !mPeekPending
570 && mPeekAnimator == null) {
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200571 setExpandedHeight(currentMaxPanelHeight);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100572 }
Daniel Sandler50508132012-08-16 14:10:53 -0400573 }
574
Daniel Sandler08d05e32012-08-08 16:39:54 -0400575 public void setExpandedHeightInternal(float h) {
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200576 float fhWithoutOverExpansion = getMaxPanelHeight() - getOverExpansionAmount();
577 if (mHeightAnimator == null) {
578 float overExpansionPixels = Math.max(0, h - fhWithoutOverExpansion);
579 if (getOverExpansionPixels() != overExpansionPixels && mTracking) {
580 setOverExpansion(overExpansionPixels, true /* isPixels */);
581 }
582 mExpandedHeight = Math.min(h, fhWithoutOverExpansion) + getOverExpansionAmount();
583 } else {
584 mExpandedHeight = h;
585 if (mOverExpandedBeforeFling) {
586 setOverExpansion(Math.max(0, h - fhWithoutOverExpansion), false /* isPixels */);
587 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100588 }
Daniel Sandler198a0302012-08-17 16:04:31 -0400589
Jorim Jaggi93439da2014-06-30 23:53:39 +0200590 mExpandedHeight = Math.max(0, mExpandedHeight);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100591 onHeightUpdated(mExpandedHeight);
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200592 mExpandedFraction = Math.min(1f, fhWithoutOverExpansion == 0
593 ? 0
594 : mExpandedHeight / fhWithoutOverExpansion);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200595 notifyBarPanelExpansionChanged();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400596 }
597
Jorim Jaggi30c305c2014-07-01 23:34:41 +0200598 /**
599 * @return true if the panel tracking should be temporarily blocked; this is used when a
600 * conflicting gesture (opening QS) is happening
601 */
602 protected abstract boolean isTrackingBlocked();
603
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200604 protected abstract void setOverExpansion(float overExpansion, boolean isPixels);
Selim Cinek24120a52014-05-26 10:05:42 +0200605
Jorim Jaggi90129582014-06-02 14:44:49 +0200606 protected abstract void onHeightUpdated(float expandedHeight);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100607
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200608 protected abstract float getOverExpansionAmount();
609
610 protected abstract float getOverExpansionPixels();
611
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100612 /**
613 * This returns the maximum height of the panel. Children should override this if their
614 * desired height is not the full height.
615 *
616 * @return the default implementation simply returns the maximum height.
617 */
618 protected int getMaxPanelHeight() {
Selim Cinekb84a1072014-05-15 19:10:18 +0200619 mMaxPanelHeight = Math.max(mMaxPanelHeight, getHeight());
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100620 return mMaxPanelHeight;
Daniel Sandler08d05e32012-08-08 16:39:54 -0400621 }
622
623 public void setExpandedFraction(float frac) {
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100624 setExpandedHeight(getMaxPanelHeight() * frac);
Daniel Sandler08d05e32012-08-08 16:39:54 -0400625 }
626
627 public float getExpandedHeight() {
628 return mExpandedHeight;
629 }
630
631 public float getExpandedFraction() {
632 return mExpandedFraction;
633 }
634
Daniel Sandlerb4e56ed2012-09-12 23:07:44 -0700635 public boolean isFullyExpanded() {
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100636 return mExpandedHeight >= getMaxPanelHeight();
Daniel Sandlerb4e56ed2012-09-12 23:07:44 -0700637 }
638
639 public boolean isFullyCollapsed() {
Daniel Sandler67eab792012-10-02 17:08:23 -0400640 return mExpandedHeight <= 0;
641 }
642
643 public boolean isCollapsing() {
644 return mClosing;
Daniel Sandlerb4e56ed2012-09-12 23:07:44 -0700645 }
646
John Spurlocka4b70af2013-08-17 14:05:49 -0400647 public boolean isTracking() {
648 return mTracking;
649 }
650
Daniel Sandler08d05e32012-08-08 16:39:54 -0400651 public void setBar(PanelBar panelBar) {
652 mBar = panelBar;
653 }
654
Jorim Jaggi8de4311c2014-08-11 22:36:20 +0200655 public void collapse(boolean delayed) {
John Spurlock97642182013-07-29 17:58:39 -0400656 if (DEBUG) logf("collapse: " + this);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200657 if (mPeekPending || mPeekAnimator != null) {
658 mCollapseAfterPeek = true;
659 if (mPeekPending) {
660
661 // We know that the whole gesture is just a peek triggered by a simple click, so
662 // better start it now.
663 removeCallbacks(mPeekRunnable);
664 mPeekRunnable.run();
665 }
Jorim Jaggifb98a502014-07-11 02:12:03 +0200666 } else if (!isFullyCollapsed() && !mTracking) {
Jorim Jaggi1d480692014-05-20 19:41:58 +0200667 if (mHeightAnimator != null) {
668 mHeightAnimator.cancel();
669 }
Daniel Sandler750bb9b2012-10-03 16:24:00 -0400670 mClosing = true;
Jorim Jaggib472b3472014-06-30 19:56:24 +0200671 notifyExpandingStarted();
Jorim Jaggi8de4311c2014-08-11 22:36:20 +0200672 if (delayed) {
673 postDelayed(new Runnable() {
674 @Override
675 public void run() {
676 fling(0, false /* expand */);
677 }
678 }, 120);
679 } else {
680 fling(0, false /* expand */);
681 }
Daniel Sandler08d05e32012-08-08 16:39:54 -0400682 }
683 }
684
685 public void expand() {
John Spurlock97642182013-07-29 17:58:39 -0400686 if (DEBUG) logf("expand: " + this);
Daniel Sandler198a0302012-08-17 16:04:31 -0400687 if (isFullyCollapsed()) {
688 mBar.startOpeningPanel(this);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200689 notifyExpandingStarted();
Jorim Jaggi1d480692014-05-20 19:41:58 +0200690 fling(0, true /* expand */);
Daniel Sandler198a0302012-08-17 16:04:31 -0400691 } else if (DEBUG) {
John Spurlock97642182013-07-29 17:58:39 -0400692 if (DEBUG) logf("skipping expansion: is expanded");
693 }
694 }
695
696 public void cancelPeek() {
Jorim Jaggib472b3472014-06-30 19:56:24 +0200697 if (mPeekAnimator != null) {
John Spurlock97642182013-07-29 17:58:39 -0400698 mPeekAnimator.cancel();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400699 }
Jorim Jaggib472b3472014-06-30 19:56:24 +0200700 removeCallbacks(mPeekRunnable);
701 mPeekPending = false;
702
703 // When peeking, we already tell mBar that we expanded ourselves. Make sure that we also
704 // notify mBar that we might have closed ourselves.
705 notifyBarPanelExpansionChanged();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400706 }
Daniel Sandler37a38aa2013-02-13 17:15:57 -0500707
Jorim Jaggi0a27be82014-06-11 03:22:39 +0200708 public void instantExpand() {
709 mInstantExpanding = true;
710 abortAnimations();
711 if (mTracking) {
712 onTrackingStopped(true /* expands */); // The panel is expanded after this call.
Jorim Jaggib472b3472014-06-30 19:56:24 +0200713 notifyExpandingFinished();
Jorim Jaggi0a27be82014-06-11 03:22:39 +0200714 }
715 setVisibility(VISIBLE);
716
717 // Wait for window manager to pickup the change, so we know the maximum height of the panel
718 // then.
719 getViewTreeObserver().addOnGlobalLayoutListener(
720 new ViewTreeObserver.OnGlobalLayoutListener() {
721 @Override
722 public void onGlobalLayout() {
723 if (mStatusBar.getStatusBarWindow().getHeight()
724 != mStatusBar.getStatusBarHeight()) {
725 getViewTreeObserver().removeOnGlobalLayoutListener(this);
726 setExpandedFraction(1f);
727 mInstantExpanding = false;
728 }
729 }
730 });
731
732 // Make sure a layout really happens.
733 requestLayout();
734 }
735
736 private void abortAnimations() {
737 cancelPeek();
738 if (mHeightAnimator != null) {
739 mHeightAnimator.cancel();
740 }
741 }
742
Jorim Jaggi90129582014-06-02 14:44:49 +0200743 protected void startUnlockHintAnimation() {
744
745 // We don't need to hint the user if an animation is already running or the user is changing
746 // the expansion.
747 if (mHeightAnimator != null || mTracking) {
748 return;
749 }
750 cancelPeek();
Jorim Jaggib472b3472014-06-30 19:56:24 +0200751 notifyExpandingStarted();
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200752 startUnlockHintAnimationPhase1(new Runnable() {
753 @Override
754 public void run() {
Jorim Jaggib472b3472014-06-30 19:56:24 +0200755 notifyExpandingFinished();
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200756 mStatusBar.onHintFinished();
757 mHintAnimationRunning = false;
758 }
759 });
Jorim Jaggi90129582014-06-02 14:44:49 +0200760 mStatusBar.onUnlockHintStarted();
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200761 mHintAnimationRunning = true;
Jorim Jaggi90129582014-06-02 14:44:49 +0200762 }
763
764 /**
765 * Phase 1: Move everything upwards.
766 */
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200767 private void startUnlockHintAnimationPhase1(final Runnable onAnimationFinished) {
Jorim Jaggi90129582014-06-02 14:44:49 +0200768 float target = Math.max(0, getMaxPanelHeight() - mHintDistance);
769 ValueAnimator animator = createHeightAnimator(target);
770 animator.setDuration(250);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200771 animator.setInterpolator(mFastOutSlowInInterpolator);
Jorim Jaggi90129582014-06-02 14:44:49 +0200772 animator.addListener(new AnimatorListenerAdapter() {
773 private boolean mCancelled;
774
775 @Override
776 public void onAnimationCancel(Animator animation) {
777 mCancelled = true;
778 }
779
780 @Override
781 public void onAnimationEnd(Animator animation) {
782 if (mCancelled) {
783 mHeightAnimator = null;
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200784 onAnimationFinished.run();
Jorim Jaggi90129582014-06-02 14:44:49 +0200785 } else {
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200786 startUnlockHintAnimationPhase2(onAnimationFinished);
Jorim Jaggi90129582014-06-02 14:44:49 +0200787 }
788 }
789 });
790 animator.start();
791 mHeightAnimator = animator;
Selim Cinekf99d0002014-06-13 07:36:01 +0200792 mOriginalIndicationY = mKeyguardBottomArea.getIndicationView().getY();
793 mKeyguardBottomArea.getIndicationView().animate()
794 .y(mOriginalIndicationY - mHintDistance)
795 .setDuration(250)
Jorim Jaggib472b3472014-06-30 19:56:24 +0200796 .setInterpolator(mFastOutSlowInInterpolator)
Selim Cinekf99d0002014-06-13 07:36:01 +0200797 .withEndAction(new Runnable() {
798 @Override
799 public void run() {
800 mKeyguardBottomArea.getIndicationView().animate()
801 .y(mOriginalIndicationY)
802 .setDuration(450)
803 .setInterpolator(mBounceInterpolator)
804 .start();
805 }
806 })
807 .start();
Jorim Jaggi90129582014-06-02 14:44:49 +0200808 }
809
810 /**
811 * Phase 2: Bounce down.
812 */
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200813 private void startUnlockHintAnimationPhase2(final Runnable onAnimationFinished) {
Jorim Jaggi90129582014-06-02 14:44:49 +0200814 ValueAnimator animator = createHeightAnimator(getMaxPanelHeight());
815 animator.setDuration(450);
816 animator.setInterpolator(mBounceInterpolator);
817 animator.addListener(new AnimatorListenerAdapter() {
818 @Override
819 public void onAnimationEnd(Animator animation) {
820 mHeightAnimator = null;
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200821 onAnimationFinished.run();
Jorim Jaggi90129582014-06-02 14:44:49 +0200822 }
823 });
824 animator.start();
825 mHeightAnimator = animator;
826 }
827
828 private ValueAnimator createHeightAnimator(float targetHeight) {
829 ValueAnimator animator = ValueAnimator.ofFloat(mExpandedHeight, targetHeight);
830 animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
831 @Override
832 public void onAnimationUpdate(ValueAnimator animation) {
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200833 setExpandedHeightInternal((Float) animation.getAnimatedValue());
Jorim Jaggi90129582014-06-02 14:44:49 +0200834 }
835 });
836 return animator;
837 }
838
Jorim Jaggib472b3472014-06-30 19:56:24 +0200839 private void notifyBarPanelExpansionChanged() {
840 mBar.panelExpansionChanged(this, mExpandedFraction, mExpandedFraction > 0f || mPeekPending
841 || mPeekAnimator != null);
842 }
843
Jorim Jaggi90129582014-06-02 14:44:49 +0200844 /**
845 * Gets called when the user performs a click anywhere in the empty area of the panel.
846 *
847 * @return whether the panel will be expanded after the action performed by this method
848 */
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200849 private boolean onEmptySpaceClick(float x) {
850 if (mHintAnimationRunning) {
851 return true;
852 }
Jorim Jaggi6539a832014-06-03 23:33:09 +0200853 if (x < mEdgeTapAreaWidth
854 && mStatusBar.getBarState() == StatusBarState.KEYGUARD) {
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200855 onEdgeClicked(false /* right */);
856 return true;
Jorim Jaggi6539a832014-06-03 23:33:09 +0200857 } else if (x > getWidth() - mEdgeTapAreaWidth
858 && mStatusBar.getBarState() == StatusBarState.KEYGUARD) {
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200859 onEdgeClicked(true /* right */);
860 return true;
861 } else {
862 return onMiddleClicked();
863 }
864 }
865
Jorim Jaggi488b7922014-08-05 21:12:02 +0200866 private final Runnable mPostCollapseRunnable = new Runnable() {
867 @Override
868 public void run() {
Jorim Jaggi8de4311c2014-08-11 22:36:20 +0200869 collapse(false /* delayed */);
Jorim Jaggi488b7922014-08-05 21:12:02 +0200870 }
871 };
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200872 private boolean onMiddleClicked() {
Jorim Jaggi90129582014-06-02 14:44:49 +0200873 switch (mStatusBar.getBarState()) {
874 case StatusBarState.KEYGUARD:
875 startUnlockHintAnimation();
876 return true;
877 case StatusBarState.SHADE_LOCKED:
Jorim Jaggi6539a832014-06-03 23:33:09 +0200878 mStatusBar.goToKeyguard();
Jorim Jaggi90129582014-06-02 14:44:49 +0200879 return true;
880 case StatusBarState.SHADE:
Jorim Jaggi488b7922014-08-05 21:12:02 +0200881
882 // This gets called in the middle of the touch handling, where the state is still
883 // that we are tracking the panel. Collapse the panel after this is done.
884 post(mPostCollapseRunnable);
Jorim Jaggi90129582014-06-02 14:44:49 +0200885 return false;
886 default:
887 return true;
888 }
889 }
890
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200891 protected abstract void onEdgeClicked(boolean right);
892
Daniel Sandler37a38aa2013-02-13 17:15:57 -0500893 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
Selim Cineka3e5bcb2014-04-07 20:07:22 +0200894 pw.println(String.format("[PanelView(%s): expandedHeight=%f maxPanelHeight=%d closing=%s"
John Spurlock50728832014-04-17 19:05:28 -0400895 + " tracking=%s justPeeked=%s peekAnim=%s%s timeAnim=%s%s"
Daniel Sandler37a38aa2013-02-13 17:15:57 -0500896 + "]",
897 this.getClass().getSimpleName(),
898 getExpandedHeight(),
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100899 getMaxPanelHeight(),
Daniel Sandler37a38aa2013-02-13 17:15:57 -0500900 mClosing?"T":"f",
901 mTracking?"T":"f",
Daniel Sandler37a38aa2013-02-13 17:15:57 -0500902 mJustPeeked?"T":"f",
903 mPeekAnimator, ((mPeekAnimator!=null && mPeekAnimator.isStarted())?" (started)":""),
Jorim Jaggi1d480692014-05-20 19:41:58 +0200904 mHeightAnimator, ((mHeightAnimator !=null && mHeightAnimator.isStarted())?" (started)":"")
Daniel Sandler37a38aa2013-02-13 17:15:57 -0500905 ));
906 }
Selim Cinek3c4635c2014-05-29 02:12:47 +0200907
908 public abstract void resetViews();
Jorim Jaggi2580a9762014-06-25 03:08:25 +0200909
910 protected abstract float getPeekHeight();
Jorim Jaggi30c305c2014-07-01 23:34:41 +0200911
912 protected abstract float getCannedFlingDurationFactor();
Jorim Jaggi4b04a3a2014-07-28 17:43:56 +0200913
914 /**
915 * @return whether "Clear all" button will be visible when the panel is fully expanded
916 */
917 protected abstract boolean fullyExpandedClearAllVisible();
918
919 protected abstract boolean isClearAllVisible();
920
921 /**
922 * @return the height of the clear all button, in pixels
923 */
924 protected abstract int getClearAllHeight();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400925}