blob: 3ec23955fdb5e8bb51d807086e64fd812e936701 [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 Jaggi2fbad7b2014-05-26 22:38:00 +0200102 mBar.onExpandingFinished();
Selim Cinek1685e632014-04-08 02:27:49 +0200103 }
104
105 protected void onExpandingStarted() {
106 }
107
Jorim Jaggib472b3472014-06-30 19:56:24 +0200108 private void notifyExpandingStarted() {
109 if (!mExpanding) {
110 mExpanding = true;
111 onExpandingStarted();
112 }
113 }
114
115 private void notifyExpandingFinished() {
116 if (mExpanding) {
117 mExpanding = false;
118 onExpandingFinished();
119 }
120 }
121
122 private void schedulePeek() {
123 mPeekPending = true;
124 long timeout = ViewConfiguration.getTapTimeout();
125 postOnAnimationDelayed(mPeekRunnable, timeout);
126 notifyBarPanelExpansionChanged();
127 }
128
Daniel Sandler0c1b75c2012-10-04 12:08:54 -0400129 private void runPeekAnimation() {
Jorim Jaggi2580a9762014-06-25 03:08:25 +0200130 mPeekHeight = getPeekHeight();
John Spurlock97642182013-07-29 17:58:39 -0400131 if (DEBUG) logf("peek to height=%.1f", mPeekHeight);
Jorim Jaggi1d480692014-05-20 19:41:58 +0200132 if (mHeightAnimator != null) {
Daniel Sandler0c1b75c2012-10-04 12:08:54 -0400133 return;
134 }
Jorim Jaggib472b3472014-06-30 19:56:24 +0200135 mPeekAnimator = ObjectAnimator.ofFloat(this, "expandedHeight", mPeekHeight)
136 .setDuration(250);
137 mPeekAnimator.setInterpolator(mLinearOutSlowInInterpolator);
138 mPeekAnimator.addListener(new AnimatorListenerAdapter() {
139 private boolean mCancelled;
140
141 @Override
142 public void onAnimationCancel(Animator animation) {
143 mCancelled = true;
144 }
145
146 @Override
147 public void onAnimationEnd(Animator animation) {
148 mPeekAnimator = null;
149 if (mCollapseAfterPeek && !mCancelled) {
150 postOnAnimation(new Runnable() {
151 @Override
152 public void run() {
153 collapse();
154 }
155 });
156 }
157 mCollapseAfterPeek = false;
158 }
159 });
160 notifyExpandingStarted();
Daniel Sandler0c1b75c2012-10-04 12:08:54 -0400161 mPeekAnimator.start();
Jorim Jaggib472b3472014-06-30 19:56:24 +0200162 mJustPeeked = true;
Daniel Sandler0c1b75c2012-10-04 12:08:54 -0400163 }
164
Daniel Sandler08d05e32012-08-08 16:39:54 -0400165 public PanelView(Context context, AttributeSet attrs) {
166 super(context, attrs);
Jorim Jaggi1d480692014-05-20 19:41:58 +0200167 mFlingAnimationUtils = new FlingAnimationUtils(context, 0.6f);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200168 mFastOutSlowInInterpolator =
Jorim Jaggi90129582014-06-02 14:44:49 +0200169 AnimationUtils.loadInterpolator(context, android.R.interpolator.fast_out_slow_in);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200170 mLinearOutSlowInInterpolator =
171 AnimationUtils.loadInterpolator(context, android.R.interpolator.linear_out_slow_in);
Jorim Jaggi90129582014-06-02 14:44:49 +0200172 mBounceInterpolator = new BounceInterpolator();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400173 }
174
Jorim Jaggi069cd032014-05-15 03:09:01 +0200175 protected void loadDimens() {
Daniel Sandler08d05e32012-08-08 16:39:54 -0400176 final Resources res = getContext().getResources();
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100177 final ViewConfiguration configuration = ViewConfiguration.get(getContext());
178 mTouchSlop = configuration.getScaledTouchSlop();
Jorim Jaggi90129582014-06-02 14:44:49 +0200179 mHintDistance = res.getDimension(R.dimen.hint_move_distance);
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200180 mEdgeTapAreaWidth = res.getDimensionPixelSize(R.dimen.edge_tap_area_width);
Daniel Sandler08d05e32012-08-08 16:39:54 -0400181 }
182
183 private void trackMovement(MotionEvent event) {
184 // Add movement to velocity tracker using raw screen X and Y coordinates instead
185 // of window coordinates because the window frame may be moving at the same time.
186 float deltaX = event.getRawX() - event.getX();
187 float deltaY = event.getRawY() - event.getY();
188 event.offsetLocation(deltaX, deltaY);
Daniel Sandlerb17a7262012-10-05 14:32:50 -0400189 if (mVelocityTracker != null) mVelocityTracker.addMovement(event);
Daniel Sandler08d05e32012-08-08 16:39:54 -0400190 event.offsetLocation(-deltaX, -deltaY);
191 }
192
Daniel Sandlerbf526d12012-09-04 22:56:44 -0400193 @Override
194 public boolean onTouchEvent(MotionEvent event) {
Jorim Jaggi0a27be82014-06-11 03:22:39 +0200195 if (mInstantExpanding) {
196 return false;
197 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100198
199 /*
200 * We capture touch events here and update the expand height here in case according to
201 * the users fingers. This also handles multi-touch.
202 *
203 * If the user just clicks shortly, we give him a quick peek of the shade.
204 *
205 * Flinging is also enabled in order to open or close the shade.
206 */
207
208 int pointerIndex = event.findPointerIndex(mTrackingPointer);
209 if (pointerIndex < 0) {
210 pointerIndex = 0;
211 mTrackingPointer = event.getPointerId(pointerIndex);
212 }
213 final float y = event.getY(pointerIndex);
Jorim Jaggia6310292014-04-16 14:11:52 +0200214 final float x = event.getX(pointerIndex);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100215
Jorim Jaggib472b3472014-06-30 19:56:24 +0200216 if (event.getActionMasked() == MotionEvent.ACTION_DOWN) {
217 mGestureWaitForTouchSlop = mExpandedHeight == 0f;
218 }
219 boolean waitForTouchSlop = hasConflictingGestures() || mGestureWaitForTouchSlop;
Selim Cinek4c6969a2014-05-26 19:22:17 +0200220
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100221 switch (event.getActionMasked()) {
222 case MotionEvent.ACTION_DOWN:
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100223 mInitialTouchY = y;
Jorim Jaggia6310292014-04-16 14:11:52 +0200224 mInitialTouchX = x;
Selim Cinek4c6969a2014-05-26 19:22:17 +0200225 mInitialOffsetOnTouch = mExpandedHeight;
Jorim Jaggi90129582014-06-02 14:44:49 +0200226 mTouchSlopExceeded = false;
Jorim Jaggi3857ac42014-06-27 18:01:12 +0200227 mJustPeeked = false;
Jorim Jaggib7b61dd2014-05-21 15:45:07 +0200228 if (mVelocityTracker == null) {
229 initVelocityTracker();
230 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100231 trackMovement(event);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200232 if (!waitForTouchSlop || (mHeightAnimator != null && !mHintAnimationRunning) ||
233 mPeekPending || mPeekAnimator != null) {
Selim Cinek4c6969a2014-05-26 19:22:17 +0200234 if (mHeightAnimator != null) {
235 mHeightAnimator.cancel(); // end any outstanding animations
236 }
Jorim Jaggib472b3472014-06-30 19:56:24 +0200237 cancelPeek();
238 mTouchSlopExceeded = (mHeightAnimator != null && !mHintAnimationRunning)
239 || mPeekPending || mPeekAnimator != null;
Selim Cinek4c6969a2014-05-26 19:22:17 +0200240 onTrackingStarted();
Jorim Jaggi1d480692014-05-20 19:41:58 +0200241 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100242 if (mExpandedHeight == 0) {
Jorim Jaggib472b3472014-06-30 19:56:24 +0200243 schedulePeek();
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100244 }
245 break;
246
247 case MotionEvent.ACTION_POINTER_UP:
248 final int upPointer = event.getPointerId(event.getActionIndex());
249 if (mTrackingPointer == upPointer) {
250 // gesture is ongoing, find a new pointer to track
251 final int newIndex = event.getPointerId(0) != upPointer ? 0 : 1;
252 final float newY = event.getY(newIndex);
Jorim Jaggia6310292014-04-16 14:11:52 +0200253 final float newX = event.getX(newIndex);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100254 mTrackingPointer = event.getPointerId(newIndex);
255 mInitialOffsetOnTouch = mExpandedHeight;
256 mInitialTouchY = newY;
Jorim Jaggia6310292014-04-16 14:11:52 +0200257 mInitialTouchX = newX;
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100258 }
259 break;
260
261 case MotionEvent.ACTION_MOVE:
Selim Cinek4c6969a2014-05-26 19:22:17 +0200262 float h = y - mInitialTouchY;
Jorim Jaggib7240132014-06-30 01:39:07 +0200263
264 // If the panel was collapsed when touching, we only need to check for the
265 // y-component of the gesture, as we have no conflicting horizontal gesture.
266 if (Math.abs(h) > mTouchSlop
267 && (Math.abs(h) > Math.abs(x - mInitialTouchX)
268 || mInitialOffsetOnTouch == 0f)) {
Jorim Jaggi90129582014-06-02 14:44:49 +0200269 mTouchSlopExceeded = true;
270 if (waitForTouchSlop && !mTracking) {
Jorim Jaggib472b3472014-06-30 19:56:24 +0200271 if (!mJustPeeked) {
272 mInitialOffsetOnTouch = mExpandedHeight;
273 mInitialTouchX = x;
274 mInitialTouchY = y;
275 h = 0;
276 }
Jorim Jaggi90129582014-06-02 14:44:49 +0200277 if (mHeightAnimator != null) {
278 mHeightAnimator.cancel(); // end any outstanding animations
279 }
Jorim Jaggib472b3472014-06-30 19:56:24 +0200280 removeCallbacks(mPeekRunnable);
281 mPeekPending = false;
Jorim Jaggi90129582014-06-02 14:44:49 +0200282 onTrackingStarted();
Selim Cinek4c6969a2014-05-26 19:22:17 +0200283 }
Selim Cinek4c6969a2014-05-26 19:22:17 +0200284 }
Jorim Jaggi93439da2014-06-30 23:53:39 +0200285 final float newHeight = Math.max(0, h + mInitialOffsetOnTouch);
Selim Cinek4c6969a2014-05-26 19:22:17 +0200286 if (newHeight > mPeekHeight) {
Jorim Jaggib472b3472014-06-30 19:56:24 +0200287 if (mPeekAnimator != null) {
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100288 mPeekAnimator.cancel();
289 }
290 mJustPeeked = false;
291 }
Jorim Jaggi30c305c2014-07-01 23:34:41 +0200292 if (!mJustPeeked && (!waitForTouchSlop || mTracking) && !isTrackingBlocked()) {
Jorim Jaggicc693242014-06-14 03:04:35 +0000293 setExpandedHeightInternal(newHeight);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100294 }
295
296 trackMovement(event);
297 break;
298
299 case MotionEvent.ACTION_UP:
300 case MotionEvent.ACTION_CANCEL:
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100301 mTrackingPointer = -1;
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100302 trackMovement(event);
Jorim Jaggi787a0af2014-06-04 18:57:14 +0200303 if ((mTracking && mTouchSlopExceeded)
Jorim Jaggidc96d632014-07-01 18:48:52 +0200304 || Math.abs(x - mInitialTouchX) > mTouchSlop
305 || Math.abs(y - mInitialTouchY) > mTouchSlop
Jorim Jaggi787a0af2014-06-04 18:57:14 +0200306 || event.getActionMasked() == MotionEvent.ACTION_CANCEL) {
Jorim Jaggib7240132014-06-30 01:39:07 +0200307 float vel = 0f;
308 float vectorVel = 0f;
309 if (mVelocityTracker != null) {
310 mVelocityTracker.computeCurrentVelocity(1000);
311 vel = mVelocityTracker.getYVelocity();
312 vectorVel = (float) Math.hypot(
313 mVelocityTracker.getXVelocity(), mVelocityTracker.getYVelocity());
314 }
315 boolean expand = flingExpands(vel, vectorVel);
Jorim Jaggi90129582014-06-02 14:44:49 +0200316 onTrackingStopped(expand);
317 fling(vel, expand);
318 } else {
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200319 boolean expands = onEmptySpaceClick(mInitialTouchX);
Jorim Jaggi90129582014-06-02 14:44:49 +0200320 onTrackingStopped(expands);
321 }
Jorim Jaggidc96d632014-07-01 18:48:52 +0200322
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100323 if (mVelocityTracker != null) {
324 mVelocityTracker.recycle();
325 mVelocityTracker = null;
326 }
327 break;
328 }
Selim Cinek4c6969a2014-05-26 19:22:17 +0200329 return !waitForTouchSlop || mTracking;
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100330 }
331
Selim Cinek4c6969a2014-05-26 19:22:17 +0200332 protected abstract boolean hasConflictingGestures();
333
Jorim Jaggi2fbad7b2014-05-26 22:38:00 +0200334 protected void onTrackingStopped(boolean expand) {
Selim Cinek4c6969a2014-05-26 19:22:17 +0200335 mTracking = false;
Jorim Jaggi2fbad7b2014-05-26 22:38:00 +0200336 mBar.onTrackingStopped(PanelView.this, expand);
Selim Cinek1685e632014-04-08 02:27:49 +0200337 }
338
339 protected void onTrackingStarted() {
Selim Cinek4c6969a2014-05-26 19:22:17 +0200340 mTracking = true;
Jorim Jaggib472b3472014-06-30 19:56:24 +0200341 mCollapseAfterPeek = false;
Selim Cinek1685e632014-04-08 02:27:49 +0200342 mBar.onTrackingStarted(PanelView.this);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200343 notifyExpandingStarted();
Selim Cinek1685e632014-04-08 02:27:49 +0200344 }
345
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100346 @Override
347 public boolean onInterceptTouchEvent(MotionEvent event) {
Jorim Jaggi0a27be82014-06-11 03:22:39 +0200348 if (mInstantExpanding) {
349 return false;
350 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100351
352 /*
353 * If the user drags anywhere inside the panel we intercept it if he moves his finger
354 * upwards. This allows closing the shade from anywhere inside the panel.
355 *
356 * We only do this if the current content is scrolled to the bottom,
357 * i.e isScrolledToBottom() is true and therefore there is no conflicting scrolling gesture
358 * possible.
359 */
360 int pointerIndex = event.findPointerIndex(mTrackingPointer);
361 if (pointerIndex < 0) {
362 pointerIndex = 0;
363 mTrackingPointer = event.getPointerId(pointerIndex);
364 }
Jorim Jaggia6310292014-04-16 14:11:52 +0200365 final float x = event.getX(pointerIndex);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100366 final float y = event.getY(pointerIndex);
367 boolean scrolledToBottom = isScrolledToBottom();
368
369 switch (event.getActionMasked()) {
370 case MotionEvent.ACTION_DOWN:
Jorim Jaggib690f0d2014-07-03 23:25:44 +0200371 mStatusBar.userActivity();
Jorim Jaggib472b3472014-06-30 19:56:24 +0200372 if (mHeightAnimator != null && !mHintAnimationRunning ||
373 mPeekPending || mPeekAnimator != null) {
374 if (mHeightAnimator != null) {
375 mHeightAnimator.cancel(); // end any outstanding animations
376 }
377 cancelPeek();
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200378 mTouchSlopExceeded = true;
Selim Cinek172e9142014-05-07 19:38:00 +0200379 return true;
380 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100381 mInitialTouchY = y;
Jorim Jaggia6310292014-04-16 14:11:52 +0200382 mInitialTouchX = x;
Jorim Jaggi90129582014-06-02 14:44:49 +0200383 mTouchSlopExceeded = false;
Jorim Jaggi3857ac42014-06-27 18:01:12 +0200384 mJustPeeked = false;
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100385 initVelocityTracker();
386 trackMovement(event);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100387 break;
388 case MotionEvent.ACTION_POINTER_UP:
389 final int upPointer = event.getPointerId(event.getActionIndex());
390 if (mTrackingPointer == upPointer) {
391 // gesture is ongoing, find a new pointer to track
392 final int newIndex = event.getPointerId(0) != upPointer ? 0 : 1;
393 mTrackingPointer = event.getPointerId(newIndex);
Jorim Jaggia6310292014-04-16 14:11:52 +0200394 mInitialTouchX = event.getX(newIndex);
395 mInitialTouchY = event.getY(newIndex);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100396 }
397 break;
398
399 case MotionEvent.ACTION_MOVE:
400 final float h = y - mInitialTouchY;
401 trackMovement(event);
402 if (scrolledToBottom) {
Jorim Jaggia6310292014-04-16 14:11:52 +0200403 if (h < -mTouchSlop && h < -Math.abs(x - mInitialTouchX)) {
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200404 if (mHeightAnimator != null) {
405 mHeightAnimator.cancel();
406 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100407 mInitialOffsetOnTouch = mExpandedHeight;
408 mInitialTouchY = y;
Jorim Jaggia6310292014-04-16 14:11:52 +0200409 mInitialTouchX = x;
Selim Cinek91c39ef2014-04-07 21:18:09 +0200410 mTracking = true;
Jorim Jaggi90129582014-06-02 14:44:49 +0200411 mTouchSlopExceeded = true;
Selim Cinek1685e632014-04-08 02:27:49 +0200412 onTrackingStarted();
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100413 return true;
414 }
415 }
416 break;
417 }
418 return false;
419 }
420
421 private void initVelocityTracker() {
422 if (mVelocityTracker != null) {
423 mVelocityTracker.recycle();
424 }
Jorim Jaggib7b61dd2014-05-21 15:45:07 +0200425 mVelocityTracker = VelocityTrackerFactory.obtain(getContext());
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100426 }
427
428 protected boolean isScrolledToBottom() {
Selim Cinek172e9142014-05-07 19:38:00 +0200429 return true;
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100430 }
431
432 protected float getContentHeight() {
433 return mExpandedHeight;
Daniel Sandlerbf526d12012-09-04 22:56:44 -0400434 }
435
Daniel Sandler08d05e32012-08-08 16:39:54 -0400436 @Override
437 protected void onFinishInflate() {
438 super.onFinishInflate();
439 loadDimens();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400440 }
441
Jorim Jaggi069cd032014-05-15 03:09:01 +0200442 @Override
443 protected void onConfigurationChanged(Configuration newConfig) {
444 super.onConfigurationChanged(newConfig);
445 loadDimens();
446 mMaxPanelHeight = -1;
447 }
448
Jorim Jaggi2fbad7b2014-05-26 22:38:00 +0200449 /**
Jorim Jaggib7240132014-06-30 01:39:07 +0200450 * @param vel the current vertical velocity of the motion
451 * @param vectorVel the length of the vectorial velocity
Jorim Jaggie29b2db2014-05-30 23:17:03 +0200452 * @return whether a fling should expands the panel; contracts otherwise
Jorim Jaggi2fbad7b2014-05-26 22:38:00 +0200453 */
Jorim Jaggidc96d632014-07-01 18:48:52 +0200454 protected boolean flingExpands(float vel, float vectorVel) {
Jorim Jaggib7240132014-06-30 01:39:07 +0200455 if (Math.abs(vectorVel) < mFlingAnimationUtils.getMinVelocityPxPerSecond()) {
Jorim Jaggie29b2db2014-05-30 23:17:03 +0200456 return getExpandedFraction() > 0.5f;
Selim Cinek1685e632014-04-08 02:27:49 +0200457 } else {
Jorim Jaggie29b2db2014-05-30 23:17:03 +0200458 return vel > 0;
Daniel Sandler08d05e32012-08-08 16:39:54 -0400459 }
Jorim Jaggi1d480692014-05-20 19:41:58 +0200460 }
461
462 protected void fling(float vel, boolean expand) {
463 cancelPeek();
464 float target = expand ? getMaxPanelHeight() : 0.0f;
Jorim Jaggi4b04a3a2014-07-28 17:43:56 +0200465
466 // Hack to make the expand transition look nice when clear all button is visible - we make
467 // the animation only to the last notification, and then jump to the maximum panel height so
468 // clear all just fades in and the decelerating motion is towards the last notification.
469 final boolean clearAllExpandHack = expand && fullyExpandedClearAllVisible()
470 && mExpandedHeight < getMaxPanelHeight() - getClearAllHeight()
471 && !isClearAllVisible();
472 if (clearAllExpandHack) {
473 target = getMaxPanelHeight() - getClearAllHeight();
474 }
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200475 if (target == mExpandedHeight || getOverExpansionAmount() > 0f && expand) {
Jorim Jaggib472b3472014-06-30 19:56:24 +0200476 notifyExpandingFinished();
Jorim Jaggi2fbad7b2014-05-26 22:38:00 +0200477 return;
478 }
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200479 mOverExpandedBeforeFling = getOverExpansionAmount() > 0f;
Jorim Jaggi90129582014-06-02 14:44:49 +0200480 ValueAnimator animator = createHeightAnimator(target);
Jorim Jaggi1d480692014-05-20 19:41:58 +0200481 if (expand) {
482 mFlingAnimationUtils.apply(animator, mExpandedHeight, target, vel, getHeight());
483 } else {
484 mFlingAnimationUtils.applyDismissing(animator, mExpandedHeight, target, vel,
485 getHeight());
486
487 // Make it shorter if we run a canned animation
488 if (vel == 0) {
Jorim Jaggi30c305c2014-07-01 23:34:41 +0200489 animator.setDuration((long)
490 (animator.getDuration() * getCannedFlingDurationFactor()));
Jorim Jaggi1d480692014-05-20 19:41:58 +0200491 }
492 }
Jorim Jaggi1d480692014-05-20 19:41:58 +0200493 animator.addListener(new AnimatorListenerAdapter() {
Jorim Jaggib472b3472014-06-30 19:56:24 +0200494 private boolean mCancelled;
495
496 @Override
497 public void onAnimationCancel(Animator animation) {
498 mCancelled = true;
499 }
500
Jorim Jaggi1d480692014-05-20 19:41:58 +0200501 @Override
502 public void onAnimationEnd(Animator animation) {
Jorim Jaggi4b04a3a2014-07-28 17:43:56 +0200503 if (clearAllExpandHack && !mCancelled) {
504 mHeightAnimator = createHeightAnimator(getMaxPanelHeight());
505 mHeightAnimator.setInterpolator(mLinearOutSlowInInterpolator);
506 mHeightAnimator.setDuration(350);
507 mHeightAnimator.addListener(new AnimatorListenerAdapter() {
508 private boolean mCancelled;
509
510 @Override
511 public void onAnimationCancel(Animator animation) {
512 mCancelled = true;
513 }
514
515 @Override
516 public void onAnimationEnd(Animator animation) {
517 mHeightAnimator = null;
518 if (!mCancelled) {
519 notifyExpandingFinished();
520 }
521 }
522 });
523 mHeightAnimator.start();
524 } else {
525 mHeightAnimator = null;
526 if (!mCancelled) {
527 notifyExpandingFinished();
528 }
Jorim Jaggib472b3472014-06-30 19:56:24 +0200529 }
Jorim Jaggi1d480692014-05-20 19:41:58 +0200530 }
531 });
Jorim Jaggi1d480692014-05-20 19:41:58 +0200532 mHeightAnimator = animator;
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200533 animator.start();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400534 }
535
536 @Override
537 protected void onAttachedToWindow() {
538 super.onAttachedToWindow();
Daniel Sandler978f8532012-08-15 15:48:16 -0400539 mViewName = getResources().getResourceName(getId());
540 }
541
542 public String getName() {
543 return mViewName;
Daniel Sandler08d05e32012-08-08 16:39:54 -0400544 }
545
Daniel Sandler08d05e32012-08-08 16:39:54 -0400546 @Override
547 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
548 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
549
John Spurlock97642182013-07-29 17:58:39 -0400550 if (DEBUG) logf("onMeasure(%d, %d) -> (%d, %d)",
Daniel Sandler08d05e32012-08-08 16:39:54 -0400551 widthMeasureSpec, heightMeasureSpec, getMeasuredWidth(), getMeasuredHeight());
Daniel Sandler198a0302012-08-17 16:04:31 -0400552
553 // Did one of our children change size?
554 int newHeight = getMeasuredHeight();
Selim Cinekb84a1072014-05-15 19:10:18 +0200555 if (newHeight > mMaxPanelHeight) {
556 // we only adapt the max height if it's bigger
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100557 mMaxPanelHeight = newHeight;
Jorim Jaggi03c701e2014-04-02 12:39:51 +0200558 // If the user isn't actively poking us, let's rubberband to the content
Jorim Jaggi1d480692014-05-20 19:41:58 +0200559 if (!mTracking && mHeightAnimator == null
Jorim Jaggi03c701e2014-04-02 12:39:51 +0200560 && mExpandedHeight > 0 && mExpandedHeight != mMaxPanelHeight
Jorim Jaggib472b3472014-06-30 19:56:24 +0200561 && mMaxPanelHeight > 0 && mPeekAnimator == null) {
Jorim Jaggi03c701e2014-04-02 12:39:51 +0200562 mExpandedHeight = mMaxPanelHeight;
563 }
Daniel Sandler50508132012-08-16 14:10:53 -0400564 }
Daniel Sandler08d05e32012-08-08 16:39:54 -0400565 }
566
Daniel Sandler08d05e32012-08-08 16:39:54 -0400567 public void setExpandedHeight(float height) {
John Spurlock97642182013-07-29 17:58:39 -0400568 if (DEBUG) logf("setExpandedHeight(%.1f)", height);
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200569 setExpandedHeightInternal(height + getOverExpansionPixels());
Daniel Sandler08d05e32012-08-08 16:39:54 -0400570 }
571
Daniel Sandler50508132012-08-16 14:10:53 -0400572 @Override
573 protected void onLayout (boolean changed, int left, int top, int right, int bottom) {
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100574 if (DEBUG) logf("onLayout: changed=%s, bottom=%d eh=%d fh=%d", changed?"T":"f", bottom,
575 (int)mExpandedHeight, mMaxPanelHeight);
Daniel Sandler50508132012-08-16 14:10:53 -0400576 super.onLayout(changed, left, top, right, bottom);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100577 requestPanelHeightUpdate();
578 }
579
580 protected void requestPanelHeightUpdate() {
581 float currentMaxPanelHeight = getMaxPanelHeight();
582
583 // If the user isn't actively poking us, let's update the height
Jorim Jaggi30c305c2014-07-01 23:34:41 +0200584 if ((!mTracking || isTrackingBlocked())
585 && mHeightAnimator == null
586 && mExpandedHeight > 0
587 && currentMaxPanelHeight != mExpandedHeight
588 && !mPeekPending
589 && mPeekAnimator == null) {
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200590 setExpandedHeight(currentMaxPanelHeight);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100591 }
Daniel Sandler50508132012-08-16 14:10:53 -0400592 }
593
Daniel Sandler08d05e32012-08-08 16:39:54 -0400594 public void setExpandedHeightInternal(float h) {
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200595 float fhWithoutOverExpansion = getMaxPanelHeight() - getOverExpansionAmount();
596 if (mHeightAnimator == null) {
597 float overExpansionPixels = Math.max(0, h - fhWithoutOverExpansion);
598 if (getOverExpansionPixels() != overExpansionPixels && mTracking) {
599 setOverExpansion(overExpansionPixels, true /* isPixels */);
600 }
601 mExpandedHeight = Math.min(h, fhWithoutOverExpansion) + getOverExpansionAmount();
602 } else {
603 mExpandedHeight = h;
604 if (mOverExpandedBeforeFling) {
605 setOverExpansion(Math.max(0, h - fhWithoutOverExpansion), false /* isPixels */);
606 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100607 }
Daniel Sandler198a0302012-08-17 16:04:31 -0400608
Jorim Jaggi93439da2014-06-30 23:53:39 +0200609 mExpandedHeight = Math.max(0, mExpandedHeight);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100610 onHeightUpdated(mExpandedHeight);
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200611 mExpandedFraction = Math.min(1f, fhWithoutOverExpansion == 0
612 ? 0
613 : mExpandedHeight / fhWithoutOverExpansion);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200614 notifyBarPanelExpansionChanged();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400615 }
616
Jorim Jaggi30c305c2014-07-01 23:34:41 +0200617 /**
618 * @return true if the panel tracking should be temporarily blocked; this is used when a
619 * conflicting gesture (opening QS) is happening
620 */
621 protected abstract boolean isTrackingBlocked();
622
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200623 protected abstract void setOverExpansion(float overExpansion, boolean isPixels);
Selim Cinek24120a52014-05-26 10:05:42 +0200624
Jorim Jaggi90129582014-06-02 14:44:49 +0200625 protected abstract void onHeightUpdated(float expandedHeight);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100626
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200627 protected abstract float getOverExpansionAmount();
628
629 protected abstract float getOverExpansionPixels();
630
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100631 /**
632 * This returns the maximum height of the panel. Children should override this if their
633 * desired height is not the full height.
634 *
635 * @return the default implementation simply returns the maximum height.
636 */
637 protected int getMaxPanelHeight() {
Selim Cinekb84a1072014-05-15 19:10:18 +0200638 mMaxPanelHeight = Math.max(mMaxPanelHeight, getHeight());
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100639 return mMaxPanelHeight;
Daniel Sandler08d05e32012-08-08 16:39:54 -0400640 }
641
642 public void setExpandedFraction(float frac) {
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100643 setExpandedHeight(getMaxPanelHeight() * frac);
Daniel Sandler08d05e32012-08-08 16:39:54 -0400644 }
645
646 public float getExpandedHeight() {
647 return mExpandedHeight;
648 }
649
650 public float getExpandedFraction() {
651 return mExpandedFraction;
652 }
653
Daniel Sandlerb4e56ed2012-09-12 23:07:44 -0700654 public boolean isFullyExpanded() {
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100655 return mExpandedHeight >= getMaxPanelHeight();
Daniel Sandlerb4e56ed2012-09-12 23:07:44 -0700656 }
657
658 public boolean isFullyCollapsed() {
Daniel Sandler67eab792012-10-02 17:08:23 -0400659 return mExpandedHeight <= 0;
660 }
661
662 public boolean isCollapsing() {
663 return mClosing;
Daniel Sandlerb4e56ed2012-09-12 23:07:44 -0700664 }
665
John Spurlocka4b70af2013-08-17 14:05:49 -0400666 public boolean isTracking() {
667 return mTracking;
668 }
669
Daniel Sandler08d05e32012-08-08 16:39:54 -0400670 public void setBar(PanelBar panelBar) {
671 mBar = panelBar;
672 }
673
Daniel Sandler08d05e32012-08-08 16:39:54 -0400674 public void collapse() {
John Spurlock97642182013-07-29 17:58:39 -0400675 if (DEBUG) logf("collapse: " + this);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200676 if (mPeekPending || mPeekAnimator != null) {
677 mCollapseAfterPeek = true;
678 if (mPeekPending) {
679
680 // We know that the whole gesture is just a peek triggered by a simple click, so
681 // better start it now.
682 removeCallbacks(mPeekRunnable);
683 mPeekRunnable.run();
684 }
Jorim Jaggifb98a502014-07-11 02:12:03 +0200685 } else if (!isFullyCollapsed() && !mTracking) {
Jorim Jaggi1d480692014-05-20 19:41:58 +0200686 if (mHeightAnimator != null) {
687 mHeightAnimator.cancel();
688 }
Daniel Sandler750bb9b2012-10-03 16:24:00 -0400689 mClosing = true;
Jorim Jaggib472b3472014-06-30 19:56:24 +0200690 notifyExpandingStarted();
Jorim Jaggi1d480692014-05-20 19:41:58 +0200691 fling(0, false /* expand */);
Daniel Sandler08d05e32012-08-08 16:39:54 -0400692 }
693 }
694
695 public void expand() {
John Spurlock97642182013-07-29 17:58:39 -0400696 if (DEBUG) logf("expand: " + this);
Daniel Sandler198a0302012-08-17 16:04:31 -0400697 if (isFullyCollapsed()) {
698 mBar.startOpeningPanel(this);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200699 notifyExpandingStarted();
Jorim Jaggi1d480692014-05-20 19:41:58 +0200700 fling(0, true /* expand */);
Daniel Sandler198a0302012-08-17 16:04:31 -0400701 } else if (DEBUG) {
John Spurlock97642182013-07-29 17:58:39 -0400702 if (DEBUG) logf("skipping expansion: is expanded");
703 }
704 }
705
706 public void cancelPeek() {
Jorim Jaggib472b3472014-06-30 19:56:24 +0200707 if (mPeekAnimator != null) {
John Spurlock97642182013-07-29 17:58:39 -0400708 mPeekAnimator.cancel();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400709 }
Jorim Jaggib472b3472014-06-30 19:56:24 +0200710 removeCallbacks(mPeekRunnable);
711 mPeekPending = false;
712
713 // When peeking, we already tell mBar that we expanded ourselves. Make sure that we also
714 // notify mBar that we might have closed ourselves.
715 notifyBarPanelExpansionChanged();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400716 }
Daniel Sandler37a38aa2013-02-13 17:15:57 -0500717
Jorim Jaggi0a27be82014-06-11 03:22:39 +0200718 public void instantExpand() {
719 mInstantExpanding = true;
720 abortAnimations();
721 if (mTracking) {
722 onTrackingStopped(true /* expands */); // The panel is expanded after this call.
Jorim Jaggib472b3472014-06-30 19:56:24 +0200723 notifyExpandingFinished();
Jorim Jaggi0a27be82014-06-11 03:22:39 +0200724 }
725 setVisibility(VISIBLE);
726
727 // Wait for window manager to pickup the change, so we know the maximum height of the panel
728 // then.
729 getViewTreeObserver().addOnGlobalLayoutListener(
730 new ViewTreeObserver.OnGlobalLayoutListener() {
731 @Override
732 public void onGlobalLayout() {
733 if (mStatusBar.getStatusBarWindow().getHeight()
734 != mStatusBar.getStatusBarHeight()) {
735 getViewTreeObserver().removeOnGlobalLayoutListener(this);
736 setExpandedFraction(1f);
737 mInstantExpanding = false;
738 }
739 }
740 });
741
742 // Make sure a layout really happens.
743 requestLayout();
744 }
745
746 private void abortAnimations() {
747 cancelPeek();
748 if (mHeightAnimator != null) {
749 mHeightAnimator.cancel();
750 }
751 }
752
Jorim Jaggi90129582014-06-02 14:44:49 +0200753 protected void startUnlockHintAnimation() {
754
755 // We don't need to hint the user if an animation is already running or the user is changing
756 // the expansion.
757 if (mHeightAnimator != null || mTracking) {
758 return;
759 }
760 cancelPeek();
Jorim Jaggib472b3472014-06-30 19:56:24 +0200761 notifyExpandingStarted();
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200762 startUnlockHintAnimationPhase1(new Runnable() {
763 @Override
764 public void run() {
Jorim Jaggib472b3472014-06-30 19:56:24 +0200765 notifyExpandingFinished();
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200766 mStatusBar.onHintFinished();
767 mHintAnimationRunning = false;
768 }
769 });
Jorim Jaggi90129582014-06-02 14:44:49 +0200770 mStatusBar.onUnlockHintStarted();
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200771 mHintAnimationRunning = true;
Jorim Jaggi90129582014-06-02 14:44:49 +0200772 }
773
774 /**
775 * Phase 1: Move everything upwards.
776 */
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200777 private void startUnlockHintAnimationPhase1(final Runnable onAnimationFinished) {
Jorim Jaggi90129582014-06-02 14:44:49 +0200778 float target = Math.max(0, getMaxPanelHeight() - mHintDistance);
779 ValueAnimator animator = createHeightAnimator(target);
780 animator.setDuration(250);
Jorim Jaggib472b3472014-06-30 19:56:24 +0200781 animator.setInterpolator(mFastOutSlowInInterpolator);
Jorim Jaggi90129582014-06-02 14:44:49 +0200782 animator.addListener(new AnimatorListenerAdapter() {
783 private boolean mCancelled;
784
785 @Override
786 public void onAnimationCancel(Animator animation) {
787 mCancelled = true;
788 }
789
790 @Override
791 public void onAnimationEnd(Animator animation) {
792 if (mCancelled) {
793 mHeightAnimator = null;
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200794 onAnimationFinished.run();
Jorim Jaggi90129582014-06-02 14:44:49 +0200795 } else {
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200796 startUnlockHintAnimationPhase2(onAnimationFinished);
Jorim Jaggi90129582014-06-02 14:44:49 +0200797 }
798 }
799 });
800 animator.start();
801 mHeightAnimator = animator;
Selim Cinekf99d0002014-06-13 07:36:01 +0200802 mOriginalIndicationY = mKeyguardBottomArea.getIndicationView().getY();
803 mKeyguardBottomArea.getIndicationView().animate()
804 .y(mOriginalIndicationY - mHintDistance)
805 .setDuration(250)
Jorim Jaggib472b3472014-06-30 19:56:24 +0200806 .setInterpolator(mFastOutSlowInInterpolator)
Selim Cinekf99d0002014-06-13 07:36:01 +0200807 .withEndAction(new Runnable() {
808 @Override
809 public void run() {
810 mKeyguardBottomArea.getIndicationView().animate()
811 .y(mOriginalIndicationY)
812 .setDuration(450)
813 .setInterpolator(mBounceInterpolator)
814 .start();
815 }
816 })
817 .start();
Jorim Jaggi90129582014-06-02 14:44:49 +0200818 }
819
820 /**
821 * Phase 2: Bounce down.
822 */
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200823 private void startUnlockHintAnimationPhase2(final Runnable onAnimationFinished) {
Jorim Jaggi90129582014-06-02 14:44:49 +0200824 ValueAnimator animator = createHeightAnimator(getMaxPanelHeight());
825 animator.setDuration(450);
826 animator.setInterpolator(mBounceInterpolator);
827 animator.addListener(new AnimatorListenerAdapter() {
828 @Override
829 public void onAnimationEnd(Animator animation) {
830 mHeightAnimator = null;
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200831 onAnimationFinished.run();
Jorim Jaggi90129582014-06-02 14:44:49 +0200832 }
833 });
834 animator.start();
835 mHeightAnimator = animator;
836 }
837
838 private ValueAnimator createHeightAnimator(float targetHeight) {
839 ValueAnimator animator = ValueAnimator.ofFloat(mExpandedHeight, targetHeight);
840 animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
841 @Override
842 public void onAnimationUpdate(ValueAnimator animation) {
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200843 setExpandedHeightInternal((Float) animation.getAnimatedValue());
Jorim Jaggi90129582014-06-02 14:44:49 +0200844 }
845 });
846 return animator;
847 }
848
Jorim Jaggib472b3472014-06-30 19:56:24 +0200849 private void notifyBarPanelExpansionChanged() {
850 mBar.panelExpansionChanged(this, mExpandedFraction, mExpandedFraction > 0f || mPeekPending
851 || mPeekAnimator != null);
852 }
853
Jorim Jaggi90129582014-06-02 14:44:49 +0200854 /**
855 * Gets called when the user performs a click anywhere in the empty area of the panel.
856 *
857 * @return whether the panel will be expanded after the action performed by this method
858 */
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200859 private boolean onEmptySpaceClick(float x) {
860 if (mHintAnimationRunning) {
861 return true;
862 }
Jorim Jaggi6539a832014-06-03 23:33:09 +0200863 if (x < mEdgeTapAreaWidth
864 && mStatusBar.getBarState() == StatusBarState.KEYGUARD) {
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200865 onEdgeClicked(false /* right */);
866 return true;
Jorim Jaggi6539a832014-06-03 23:33:09 +0200867 } else if (x > getWidth() - mEdgeTapAreaWidth
868 && mStatusBar.getBarState() == StatusBarState.KEYGUARD) {
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200869 onEdgeClicked(true /* right */);
870 return true;
871 } else {
872 return onMiddleClicked();
873 }
874 }
875
876 private boolean onMiddleClicked() {
Jorim Jaggi90129582014-06-02 14:44:49 +0200877 switch (mStatusBar.getBarState()) {
878 case StatusBarState.KEYGUARD:
879 startUnlockHintAnimation();
880 return true;
881 case StatusBarState.SHADE_LOCKED:
Jorim Jaggi6539a832014-06-03 23:33:09 +0200882 mStatusBar.goToKeyguard();
Jorim Jaggi90129582014-06-02 14:44:49 +0200883 return true;
884 case StatusBarState.SHADE:
885 collapse();
886 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}