blob: 7093787a2bd0433b73227b21ffaee7237ff1efae [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;
85 private Interpolator mBounceInterpolator;
Selim Cinekf99d0002014-06-13 07:36:01 +020086 protected KeyguardBottomAreaView mKeyguardBottomArea;
Jorim Jaggi90129582014-06-02 14:44:49 +020087
Selim Cinek1685e632014-04-08 02:27:49 +020088 protected void onExpandingFinished() {
Jorim Jaggi2fbad7b2014-05-26 22:38:00 +020089 mBar.onExpandingFinished();
Selim Cinek1685e632014-04-08 02:27:49 +020090 }
91
92 protected void onExpandingStarted() {
93 }
94
Daniel Sandler0c1b75c2012-10-04 12:08:54 -040095 private void runPeekAnimation() {
Jorim Jaggi2580a9762014-06-25 03:08:25 +020096 mPeekHeight = getPeekHeight();
John Spurlock97642182013-07-29 17:58:39 -040097 if (DEBUG) logf("peek to height=%.1f", mPeekHeight);
Jorim Jaggi1d480692014-05-20 19:41:58 +020098 if (mHeightAnimator != null) {
Daniel Sandler0c1b75c2012-10-04 12:08:54 -040099 return;
100 }
Jorim Jaggi2580a9762014-06-25 03:08:25 +0200101 mPeekAnimator = ObjectAnimator.ofFloat(this,
102 "expandedHeight", mPeekHeight)
103 .setDuration(250);
Daniel Sandler0c1b75c2012-10-04 12:08:54 -0400104 mPeekAnimator.start();
105 }
106
Daniel Sandler08d05e32012-08-08 16:39:54 -0400107 public PanelView(Context context, AttributeSet attrs) {
108 super(context, attrs);
Jorim Jaggi1d480692014-05-20 19:41:58 +0200109 mFlingAnimationUtils = new FlingAnimationUtils(context, 0.6f);
Jorim Jaggi90129582014-06-02 14:44:49 +0200110 mLinearOutSlowInInterpolator =
111 AnimationUtils.loadInterpolator(context, android.R.interpolator.fast_out_slow_in);
112 mBounceInterpolator = new BounceInterpolator();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400113 }
114
Jorim Jaggi069cd032014-05-15 03:09:01 +0200115 protected void loadDimens() {
Daniel Sandler08d05e32012-08-08 16:39:54 -0400116 final Resources res = getContext().getResources();
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100117 final ViewConfiguration configuration = ViewConfiguration.get(getContext());
118 mTouchSlop = configuration.getScaledTouchSlop();
Jorim Jaggi90129582014-06-02 14:44:49 +0200119 mHintDistance = res.getDimension(R.dimen.hint_move_distance);
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200120 mEdgeTapAreaWidth = res.getDimensionPixelSize(R.dimen.edge_tap_area_width);
Daniel Sandler08d05e32012-08-08 16:39:54 -0400121 }
122
123 private void trackMovement(MotionEvent event) {
124 // Add movement to velocity tracker using raw screen X and Y coordinates instead
125 // of window coordinates because the window frame may be moving at the same time.
126 float deltaX = event.getRawX() - event.getX();
127 float deltaY = event.getRawY() - event.getY();
128 event.offsetLocation(deltaX, deltaY);
Daniel Sandlerb17a7262012-10-05 14:32:50 -0400129 if (mVelocityTracker != null) mVelocityTracker.addMovement(event);
Daniel Sandler08d05e32012-08-08 16:39:54 -0400130 event.offsetLocation(-deltaX, -deltaY);
131 }
132
Daniel Sandlerbf526d12012-09-04 22:56:44 -0400133 @Override
134 public boolean onTouchEvent(MotionEvent event) {
Jorim Jaggi0a27be82014-06-11 03:22:39 +0200135 if (mInstantExpanding) {
136 return false;
137 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100138
139 /*
140 * We capture touch events here and update the expand height here in case according to
141 * the users fingers. This also handles multi-touch.
142 *
143 * If the user just clicks shortly, we give him a quick peek of the shade.
144 *
145 * Flinging is also enabled in order to open or close the shade.
146 */
147
148 int pointerIndex = event.findPointerIndex(mTrackingPointer);
149 if (pointerIndex < 0) {
150 pointerIndex = 0;
151 mTrackingPointer = event.getPointerId(pointerIndex);
152 }
153 final float y = event.getY(pointerIndex);
Jorim Jaggia6310292014-04-16 14:11:52 +0200154 final float x = event.getX(pointerIndex);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100155
Selim Cinek4c6969a2014-05-26 19:22:17 +0200156 boolean waitForTouchSlop = hasConflictingGestures();
157
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100158 switch (event.getActionMasked()) {
159 case MotionEvent.ACTION_DOWN:
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100160 mInitialTouchY = y;
Jorim Jaggia6310292014-04-16 14:11:52 +0200161 mInitialTouchX = x;
Selim Cinek4c6969a2014-05-26 19:22:17 +0200162 mInitialOffsetOnTouch = mExpandedHeight;
Jorim Jaggi90129582014-06-02 14:44:49 +0200163 mTouchSlopExceeded = false;
Jorim Jaggi3857ac42014-06-27 18:01:12 +0200164 mJustPeeked = false;
Jorim Jaggib7b61dd2014-05-21 15:45:07 +0200165 if (mVelocityTracker == null) {
166 initVelocityTracker();
167 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100168 trackMovement(event);
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200169 if (!waitForTouchSlop || (mHeightAnimator != null && !mHintAnimationRunning)) {
Selim Cinek4c6969a2014-05-26 19:22:17 +0200170 if (mHeightAnimator != null) {
171 mHeightAnimator.cancel(); // end any outstanding animations
172 }
Jorim Jaggi787a0af2014-06-04 18:57:14 +0200173 mTouchSlopExceeded = (mHeightAnimator != null && !mHintAnimationRunning);
Selim Cinek4c6969a2014-05-26 19:22:17 +0200174 onTrackingStarted();
Jorim Jaggi1d480692014-05-20 19:41:58 +0200175 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100176 if (mExpandedHeight == 0) {
177 mJustPeeked = true;
178 runPeekAnimation();
179 }
180 break;
181
182 case MotionEvent.ACTION_POINTER_UP:
183 final int upPointer = event.getPointerId(event.getActionIndex());
184 if (mTrackingPointer == upPointer) {
185 // gesture is ongoing, find a new pointer to track
186 final int newIndex = event.getPointerId(0) != upPointer ? 0 : 1;
187 final float newY = event.getY(newIndex);
Jorim Jaggia6310292014-04-16 14:11:52 +0200188 final float newX = event.getX(newIndex);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100189 mTrackingPointer = event.getPointerId(newIndex);
190 mInitialOffsetOnTouch = mExpandedHeight;
191 mInitialTouchY = newY;
Jorim Jaggia6310292014-04-16 14:11:52 +0200192 mInitialTouchX = newX;
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100193 }
194 break;
195
196 case MotionEvent.ACTION_MOVE:
Selim Cinek4c6969a2014-05-26 19:22:17 +0200197 float h = y - mInitialTouchY;
Jorim Jaggib7240132014-06-30 01:39:07 +0200198
199 // If the panel was collapsed when touching, we only need to check for the
200 // y-component of the gesture, as we have no conflicting horizontal gesture.
201 if (Math.abs(h) > mTouchSlop
202 && (Math.abs(h) > Math.abs(x - mInitialTouchX)
203 || mInitialOffsetOnTouch == 0f)) {
Jorim Jaggi90129582014-06-02 14:44:49 +0200204 mTouchSlopExceeded = true;
205 if (waitForTouchSlop && !mTracking) {
206 mInitialOffsetOnTouch = mExpandedHeight;
207 mInitialTouchX = x;
208 mInitialTouchY = y;
209 if (mHeightAnimator != null) {
210 mHeightAnimator.cancel(); // end any outstanding animations
211 }
212 onTrackingStarted();
213 h = 0;
Selim Cinek4c6969a2014-05-26 19:22:17 +0200214 }
Selim Cinek4c6969a2014-05-26 19:22:17 +0200215 }
216 final float newHeight = h + mInitialOffsetOnTouch;
217 if (newHeight > mPeekHeight) {
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100218 if (mPeekAnimator != null && mPeekAnimator.isStarted()) {
219 mPeekAnimator.cancel();
220 }
221 mJustPeeked = false;
222 }
Selim Cinek4c6969a2014-05-26 19:22:17 +0200223 if (!mJustPeeked && (!waitForTouchSlop || mTracking)) {
Jorim Jaggicc693242014-06-14 03:04:35 +0000224 setExpandedHeightInternal(newHeight);
225 mBar.panelExpansionChanged(PanelView.this, mExpandedFraction);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100226 }
227
228 trackMovement(event);
229 break;
230
231 case MotionEvent.ACTION_UP:
232 case MotionEvent.ACTION_CANCEL:
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100233 mTrackingPointer = -1;
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100234 trackMovement(event);
Jorim Jaggi787a0af2014-06-04 18:57:14 +0200235 if ((mTracking && mTouchSlopExceeded)
236 || event.getActionMasked() == MotionEvent.ACTION_CANCEL) {
Jorim Jaggib7240132014-06-30 01:39:07 +0200237 float vel = 0f;
238 float vectorVel = 0f;
239 if (mVelocityTracker != null) {
240 mVelocityTracker.computeCurrentVelocity(1000);
241 vel = mVelocityTracker.getYVelocity();
242 vectorVel = (float) Math.hypot(
243 mVelocityTracker.getXVelocity(), mVelocityTracker.getYVelocity());
244 }
245 boolean expand = flingExpands(vel, vectorVel);
Jorim Jaggi90129582014-06-02 14:44:49 +0200246 onTrackingStopped(expand);
247 fling(vel, expand);
248 } else {
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200249 boolean expands = onEmptySpaceClick(mInitialTouchX);
Jorim Jaggi90129582014-06-02 14:44:49 +0200250 onTrackingStopped(expands);
251 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100252 if (mVelocityTracker != null) {
253 mVelocityTracker.recycle();
254 mVelocityTracker = null;
255 }
256 break;
257 }
Selim Cinek4c6969a2014-05-26 19:22:17 +0200258 return !waitForTouchSlop || mTracking;
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100259 }
260
Selim Cinek4c6969a2014-05-26 19:22:17 +0200261 protected abstract boolean hasConflictingGestures();
262
Jorim Jaggi2fbad7b2014-05-26 22:38:00 +0200263 protected void onTrackingStopped(boolean expand) {
Selim Cinek4c6969a2014-05-26 19:22:17 +0200264 mTracking = false;
Jorim Jaggi2fbad7b2014-05-26 22:38:00 +0200265 mBar.onTrackingStopped(PanelView.this, expand);
Selim Cinek1685e632014-04-08 02:27:49 +0200266 }
267
268 protected void onTrackingStarted() {
Selim Cinek4c6969a2014-05-26 19:22:17 +0200269 mTracking = true;
Selim Cinek1685e632014-04-08 02:27:49 +0200270 mBar.onTrackingStarted(PanelView.this);
271 onExpandingStarted();
272 }
273
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100274 @Override
275 public boolean onInterceptTouchEvent(MotionEvent event) {
Jorim Jaggi0a27be82014-06-11 03:22:39 +0200276 if (mInstantExpanding) {
277 return false;
278 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100279
280 /*
281 * If the user drags anywhere inside the panel we intercept it if he moves his finger
282 * upwards. This allows closing the shade from anywhere inside the panel.
283 *
284 * We only do this if the current content is scrolled to the bottom,
285 * i.e isScrolledToBottom() is true and therefore there is no conflicting scrolling gesture
286 * possible.
287 */
288 int pointerIndex = event.findPointerIndex(mTrackingPointer);
289 if (pointerIndex < 0) {
290 pointerIndex = 0;
291 mTrackingPointer = event.getPointerId(pointerIndex);
292 }
Jorim Jaggia6310292014-04-16 14:11:52 +0200293 final float x = event.getX(pointerIndex);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100294 final float y = event.getY(pointerIndex);
295 boolean scrolledToBottom = isScrolledToBottom();
296
297 switch (event.getActionMasked()) {
298 case MotionEvent.ACTION_DOWN:
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200299 if (mHeightAnimator != null && !mHintAnimationRunning) {
Jorim Jaggi1d480692014-05-20 19:41:58 +0200300 mHeightAnimator.cancel(); // end any outstanding animations
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200301 mTouchSlopExceeded = true;
Selim Cinek172e9142014-05-07 19:38:00 +0200302 return true;
303 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100304 mInitialTouchY = y;
Jorim Jaggia6310292014-04-16 14:11:52 +0200305 mInitialTouchX = x;
Jorim Jaggi90129582014-06-02 14:44:49 +0200306 mTouchSlopExceeded = false;
Jorim Jaggi3857ac42014-06-27 18:01:12 +0200307 mJustPeeked = false;
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100308 initVelocityTracker();
309 trackMovement(event);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100310 break;
311 case MotionEvent.ACTION_POINTER_UP:
312 final int upPointer = event.getPointerId(event.getActionIndex());
313 if (mTrackingPointer == upPointer) {
314 // gesture is ongoing, find a new pointer to track
315 final int newIndex = event.getPointerId(0) != upPointer ? 0 : 1;
316 mTrackingPointer = event.getPointerId(newIndex);
Jorim Jaggia6310292014-04-16 14:11:52 +0200317 mInitialTouchX = event.getX(newIndex);
318 mInitialTouchY = event.getY(newIndex);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100319 }
320 break;
321
322 case MotionEvent.ACTION_MOVE:
323 final float h = y - mInitialTouchY;
324 trackMovement(event);
325 if (scrolledToBottom) {
Jorim Jaggia6310292014-04-16 14:11:52 +0200326 if (h < -mTouchSlop && h < -Math.abs(x - mInitialTouchX)) {
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200327 if (mHeightAnimator != null) {
328 mHeightAnimator.cancel();
329 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100330 mInitialOffsetOnTouch = mExpandedHeight;
331 mInitialTouchY = y;
Jorim Jaggia6310292014-04-16 14:11:52 +0200332 mInitialTouchX = x;
Selim Cinek91c39ef2014-04-07 21:18:09 +0200333 mTracking = true;
Jorim Jaggi90129582014-06-02 14:44:49 +0200334 mTouchSlopExceeded = true;
Selim Cinek1685e632014-04-08 02:27:49 +0200335 onTrackingStarted();
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100336 return true;
337 }
338 }
339 break;
340 }
341 return false;
342 }
343
344 private void initVelocityTracker() {
345 if (mVelocityTracker != null) {
346 mVelocityTracker.recycle();
347 }
Jorim Jaggib7b61dd2014-05-21 15:45:07 +0200348 mVelocityTracker = VelocityTrackerFactory.obtain(getContext());
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100349 }
350
351 protected boolean isScrolledToBottom() {
Selim Cinek172e9142014-05-07 19:38:00 +0200352 return true;
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100353 }
354
355 protected float getContentHeight() {
356 return mExpandedHeight;
Daniel Sandlerbf526d12012-09-04 22:56:44 -0400357 }
358
Daniel Sandler08d05e32012-08-08 16:39:54 -0400359 @Override
360 protected void onFinishInflate() {
361 super.onFinishInflate();
362 loadDimens();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400363 }
364
Jorim Jaggi069cd032014-05-15 03:09:01 +0200365 @Override
366 protected void onConfigurationChanged(Configuration newConfig) {
367 super.onConfigurationChanged(newConfig);
368 loadDimens();
369 mMaxPanelHeight = -1;
370 }
371
Jorim Jaggi2fbad7b2014-05-26 22:38:00 +0200372 /**
Jorim Jaggib7240132014-06-30 01:39:07 +0200373 * @param vel the current vertical velocity of the motion
374 * @param vectorVel the length of the vectorial velocity
Jorim Jaggie29b2db2014-05-30 23:17:03 +0200375 * @return whether a fling should expands the panel; contracts otherwise
Jorim Jaggi2fbad7b2014-05-26 22:38:00 +0200376 */
Jorim Jaggib7240132014-06-30 01:39:07 +0200377 private boolean flingExpands(float vel, float vectorVel) {
378 if (Math.abs(vectorVel) < mFlingAnimationUtils.getMinVelocityPxPerSecond()) {
Jorim Jaggie29b2db2014-05-30 23:17:03 +0200379 return getExpandedFraction() > 0.5f;
Selim Cinek1685e632014-04-08 02:27:49 +0200380 } else {
Jorim Jaggie29b2db2014-05-30 23:17:03 +0200381 return vel > 0;
Daniel Sandler08d05e32012-08-08 16:39:54 -0400382 }
Jorim Jaggi1d480692014-05-20 19:41:58 +0200383 }
384
385 protected void fling(float vel, boolean expand) {
386 cancelPeek();
387 float target = expand ? getMaxPanelHeight() : 0.0f;
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200388 if (target == mExpandedHeight || getOverExpansionAmount() > 0f && expand) {
Jorim Jaggi2fbad7b2014-05-26 22:38:00 +0200389 onExpandingFinished();
Jorim Jaggie29b2db2014-05-30 23:17:03 +0200390 mBar.panelExpansionChanged(this, mExpandedFraction);
Jorim Jaggi2fbad7b2014-05-26 22:38:00 +0200391 return;
392 }
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200393 mOverExpandedBeforeFling = getOverExpansionAmount() > 0f;
Jorim Jaggi90129582014-06-02 14:44:49 +0200394 ValueAnimator animator = createHeightAnimator(target);
Jorim Jaggi1d480692014-05-20 19:41:58 +0200395 if (expand) {
396 mFlingAnimationUtils.apply(animator, mExpandedHeight, target, vel, getHeight());
397 } else {
398 mFlingAnimationUtils.applyDismissing(animator, mExpandedHeight, target, vel,
399 getHeight());
400
401 // Make it shorter if we run a canned animation
402 if (vel == 0) {
403 animator.setDuration((long) (animator.getDuration() / 1.75f));
404 }
405 }
Jorim Jaggi1d480692014-05-20 19:41:58 +0200406 animator.addListener(new AnimatorListenerAdapter() {
407 @Override
408 public void onAnimationEnd(Animator animation) {
409 mHeightAnimator = null;
410 onExpandingFinished();
411 }
412 });
Jorim Jaggi1d480692014-05-20 19:41:58 +0200413 mHeightAnimator = animator;
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200414 animator.start();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400415 }
416
417 @Override
418 protected void onAttachedToWindow() {
419 super.onAttachedToWindow();
Daniel Sandler978f8532012-08-15 15:48:16 -0400420 mViewName = getResources().getResourceName(getId());
421 }
422
423 public String getName() {
424 return mViewName;
Daniel Sandler08d05e32012-08-08 16:39:54 -0400425 }
426
Daniel Sandler08d05e32012-08-08 16:39:54 -0400427 @Override
428 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
429 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
430
John Spurlock97642182013-07-29 17:58:39 -0400431 if (DEBUG) logf("onMeasure(%d, %d) -> (%d, %d)",
Daniel Sandler08d05e32012-08-08 16:39:54 -0400432 widthMeasureSpec, heightMeasureSpec, getMeasuredWidth(), getMeasuredHeight());
Daniel Sandler198a0302012-08-17 16:04:31 -0400433
434 // Did one of our children change size?
435 int newHeight = getMeasuredHeight();
Selim Cinekb84a1072014-05-15 19:10:18 +0200436 if (newHeight > mMaxPanelHeight) {
437 // we only adapt the max height if it's bigger
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100438 mMaxPanelHeight = newHeight;
Jorim Jaggi03c701e2014-04-02 12:39:51 +0200439 // If the user isn't actively poking us, let's rubberband to the content
Jorim Jaggi1d480692014-05-20 19:41:58 +0200440 if (!mTracking && mHeightAnimator == null
Jorim Jaggi03c701e2014-04-02 12:39:51 +0200441 && mExpandedHeight > 0 && mExpandedHeight != mMaxPanelHeight
442 && mMaxPanelHeight > 0) {
443 mExpandedHeight = mMaxPanelHeight;
444 }
Daniel Sandler50508132012-08-16 14:10:53 -0400445 }
Daniel Sandler08d05e32012-08-08 16:39:54 -0400446 }
447
Daniel Sandler08d05e32012-08-08 16:39:54 -0400448 public void setExpandedHeight(float height) {
John Spurlock97642182013-07-29 17:58:39 -0400449 if (DEBUG) logf("setExpandedHeight(%.1f)", height);
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200450 setExpandedHeightInternal(height + getOverExpansionPixels());
Daniel Sandler0c1b75c2012-10-04 12:08:54 -0400451 mBar.panelExpansionChanged(PanelView.this, mExpandedFraction);
Daniel Sandler08d05e32012-08-08 16:39:54 -0400452 }
453
Daniel Sandler50508132012-08-16 14:10:53 -0400454 @Override
455 protected void onLayout (boolean changed, int left, int top, int right, int bottom) {
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100456 if (DEBUG) logf("onLayout: changed=%s, bottom=%d eh=%d fh=%d", changed?"T":"f", bottom,
457 (int)mExpandedHeight, mMaxPanelHeight);
Daniel Sandler50508132012-08-16 14:10:53 -0400458 super.onLayout(changed, left, top, right, bottom);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100459 requestPanelHeightUpdate();
460 }
461
462 protected void requestPanelHeightUpdate() {
463 float currentMaxPanelHeight = getMaxPanelHeight();
464
465 // If the user isn't actively poking us, let's update the height
Jorim Jaggi1d480692014-05-20 19:41:58 +0200466 if (!mTracking && mHeightAnimator == null
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100467 && mExpandedHeight > 0 && currentMaxPanelHeight != mExpandedHeight) {
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200468 setExpandedHeight(currentMaxPanelHeight);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100469 }
Daniel Sandler50508132012-08-16 14:10:53 -0400470 }
471
Daniel Sandler08d05e32012-08-08 16:39:54 -0400472 public void setExpandedHeightInternal(float h) {
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200473 float fhWithoutOverExpansion = getMaxPanelHeight() - getOverExpansionAmount();
474 if (mHeightAnimator == null) {
475 float overExpansionPixels = Math.max(0, h - fhWithoutOverExpansion);
476 if (getOverExpansionPixels() != overExpansionPixels && mTracking) {
477 setOverExpansion(overExpansionPixels, true /* isPixels */);
478 }
479 mExpandedHeight = Math.min(h, fhWithoutOverExpansion) + getOverExpansionAmount();
480 } else {
481 mExpandedHeight = h;
482 if (mOverExpandedBeforeFling) {
483 setOverExpansion(Math.max(0, h - fhWithoutOverExpansion), false /* isPixels */);
484 }
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100485 }
Daniel Sandler198a0302012-08-17 16:04:31 -0400486
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100487 onHeightUpdated(mExpandedHeight);
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200488 mExpandedFraction = Math.min(1f, fhWithoutOverExpansion == 0
489 ? 0
490 : mExpandedHeight / fhWithoutOverExpansion);
Daniel Sandler08d05e32012-08-08 16:39:54 -0400491 }
492
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200493 protected abstract void setOverExpansion(float overExpansion, boolean isPixels);
Selim Cinek24120a52014-05-26 10:05:42 +0200494
Jorim Jaggi90129582014-06-02 14:44:49 +0200495 protected abstract void onHeightUpdated(float expandedHeight);
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100496
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200497 protected abstract float getOverExpansionAmount();
498
499 protected abstract float getOverExpansionPixels();
500
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100501 /**
502 * This returns the maximum height of the panel. Children should override this if their
503 * desired height is not the full height.
504 *
505 * @return the default implementation simply returns the maximum height.
506 */
507 protected int getMaxPanelHeight() {
Selim Cinekb84a1072014-05-15 19:10:18 +0200508 mMaxPanelHeight = Math.max(mMaxPanelHeight, getHeight());
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100509 return mMaxPanelHeight;
Daniel Sandler08d05e32012-08-08 16:39:54 -0400510 }
511
512 public void setExpandedFraction(float frac) {
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100513 setExpandedHeight(getMaxPanelHeight() * frac);
Daniel Sandler08d05e32012-08-08 16:39:54 -0400514 }
515
516 public float getExpandedHeight() {
517 return mExpandedHeight;
518 }
519
520 public float getExpandedFraction() {
521 return mExpandedFraction;
522 }
523
Daniel Sandlerb4e56ed2012-09-12 23:07:44 -0700524 public boolean isFullyExpanded() {
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100525 return mExpandedHeight >= getMaxPanelHeight();
Daniel Sandlerb4e56ed2012-09-12 23:07:44 -0700526 }
527
528 public boolean isFullyCollapsed() {
Daniel Sandler67eab792012-10-02 17:08:23 -0400529 return mExpandedHeight <= 0;
530 }
531
532 public boolean isCollapsing() {
533 return mClosing;
Daniel Sandlerb4e56ed2012-09-12 23:07:44 -0700534 }
535
John Spurlocka4b70af2013-08-17 14:05:49 -0400536 public boolean isTracking() {
537 return mTracking;
538 }
539
Daniel Sandler08d05e32012-08-08 16:39:54 -0400540 public void setBar(PanelBar panelBar) {
541 mBar = panelBar;
542 }
543
Daniel Sandler08d05e32012-08-08 16:39:54 -0400544 public void collapse() {
545 // TODO: abort animation or ongoing touch
John Spurlock97642182013-07-29 17:58:39 -0400546 if (DEBUG) logf("collapse: " + this);
Daniel Sandlerb4e56ed2012-09-12 23:07:44 -0700547 if (!isFullyCollapsed()) {
Jorim Jaggi1d480692014-05-20 19:41:58 +0200548 if (mHeightAnimator != null) {
549 mHeightAnimator.cancel();
550 }
Daniel Sandler750bb9b2012-10-03 16:24:00 -0400551 mClosing = true;
Selim Cinek1685e632014-04-08 02:27:49 +0200552 onExpandingStarted();
Jorim Jaggi1d480692014-05-20 19:41:58 +0200553 fling(0, false /* expand */);
Daniel Sandler08d05e32012-08-08 16:39:54 -0400554 }
555 }
556
557 public void expand() {
John Spurlock97642182013-07-29 17:58:39 -0400558 if (DEBUG) logf("expand: " + this);
Daniel Sandler198a0302012-08-17 16:04:31 -0400559 if (isFullyCollapsed()) {
560 mBar.startOpeningPanel(this);
Selim Cinek1685e632014-04-08 02:27:49 +0200561 onExpandingStarted();
Jorim Jaggi1d480692014-05-20 19:41:58 +0200562 fling(0, true /* expand */);
Daniel Sandler198a0302012-08-17 16:04:31 -0400563 } else if (DEBUG) {
John Spurlock97642182013-07-29 17:58:39 -0400564 if (DEBUG) logf("skipping expansion: is expanded");
565 }
566 }
567
568 public void cancelPeek() {
569 if (mPeekAnimator != null && mPeekAnimator.isStarted()) {
570 mPeekAnimator.cancel();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400571 }
572 }
Daniel Sandler37a38aa2013-02-13 17:15:57 -0500573
Jorim Jaggi0a27be82014-06-11 03:22:39 +0200574 public void instantExpand() {
575 mInstantExpanding = true;
576 abortAnimations();
577 if (mTracking) {
578 onTrackingStopped(true /* expands */); // The panel is expanded after this call.
579 onExpandingFinished();
580 }
581 setVisibility(VISIBLE);
582
583 // Wait for window manager to pickup the change, so we know the maximum height of the panel
584 // then.
585 getViewTreeObserver().addOnGlobalLayoutListener(
586 new ViewTreeObserver.OnGlobalLayoutListener() {
587 @Override
588 public void onGlobalLayout() {
589 if (mStatusBar.getStatusBarWindow().getHeight()
590 != mStatusBar.getStatusBarHeight()) {
591 getViewTreeObserver().removeOnGlobalLayoutListener(this);
592 setExpandedFraction(1f);
593 mInstantExpanding = false;
594 }
595 }
596 });
597
598 // Make sure a layout really happens.
599 requestLayout();
600 }
601
602 private void abortAnimations() {
603 cancelPeek();
604 if (mHeightAnimator != null) {
605 mHeightAnimator.cancel();
606 }
607 }
608
Jorim Jaggi90129582014-06-02 14:44:49 +0200609 protected void startUnlockHintAnimation() {
610
611 // We don't need to hint the user if an animation is already running or the user is changing
612 // the expansion.
613 if (mHeightAnimator != null || mTracking) {
614 return;
615 }
616 cancelPeek();
617 onExpandingStarted();
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200618 startUnlockHintAnimationPhase1(new Runnable() {
619 @Override
620 public void run() {
621 onExpandingFinished();
622 mStatusBar.onHintFinished();
623 mHintAnimationRunning = false;
624 }
625 });
Jorim Jaggi90129582014-06-02 14:44:49 +0200626 mStatusBar.onUnlockHintStarted();
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200627 mHintAnimationRunning = true;
Jorim Jaggi90129582014-06-02 14:44:49 +0200628 }
629
630 /**
631 * Phase 1: Move everything upwards.
632 */
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200633 private void startUnlockHintAnimationPhase1(final Runnable onAnimationFinished) {
Jorim Jaggi90129582014-06-02 14:44:49 +0200634 float target = Math.max(0, getMaxPanelHeight() - mHintDistance);
635 ValueAnimator animator = createHeightAnimator(target);
636 animator.setDuration(250);
637 animator.setInterpolator(mLinearOutSlowInInterpolator);
638 animator.addListener(new AnimatorListenerAdapter() {
639 private boolean mCancelled;
640
641 @Override
642 public void onAnimationCancel(Animator animation) {
643 mCancelled = true;
644 }
645
646 @Override
647 public void onAnimationEnd(Animator animation) {
648 if (mCancelled) {
649 mHeightAnimator = null;
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200650 onAnimationFinished.run();
Jorim Jaggi90129582014-06-02 14:44:49 +0200651 } else {
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200652 startUnlockHintAnimationPhase2(onAnimationFinished);
Jorim Jaggi90129582014-06-02 14:44:49 +0200653 }
654 }
655 });
656 animator.start();
657 mHeightAnimator = animator;
Selim Cinekf99d0002014-06-13 07:36:01 +0200658 mOriginalIndicationY = mKeyguardBottomArea.getIndicationView().getY();
659 mKeyguardBottomArea.getIndicationView().animate()
660 .y(mOriginalIndicationY - mHintDistance)
661 .setDuration(250)
662 .setInterpolator(mLinearOutSlowInInterpolator)
663 .withEndAction(new Runnable() {
664 @Override
665 public void run() {
666 mKeyguardBottomArea.getIndicationView().animate()
667 .y(mOriginalIndicationY)
668 .setDuration(450)
669 .setInterpolator(mBounceInterpolator)
670 .start();
671 }
672 })
673 .start();
Jorim Jaggi90129582014-06-02 14:44:49 +0200674 }
675
676 /**
677 * Phase 2: Bounce down.
678 */
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200679 private void startUnlockHintAnimationPhase2(final Runnable onAnimationFinished) {
Jorim Jaggi90129582014-06-02 14:44:49 +0200680 ValueAnimator animator = createHeightAnimator(getMaxPanelHeight());
681 animator.setDuration(450);
682 animator.setInterpolator(mBounceInterpolator);
683 animator.addListener(new AnimatorListenerAdapter() {
684 @Override
685 public void onAnimationEnd(Animator animation) {
686 mHeightAnimator = null;
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200687 onAnimationFinished.run();
Jorim Jaggi90129582014-06-02 14:44:49 +0200688 }
689 });
690 animator.start();
691 mHeightAnimator = animator;
692 }
693
694 private ValueAnimator createHeightAnimator(float targetHeight) {
695 ValueAnimator animator = ValueAnimator.ofFloat(mExpandedHeight, targetHeight);
696 animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
697 @Override
698 public void onAnimationUpdate(ValueAnimator animation) {
Jorim Jaggi47c85a32014-06-05 17:25:40 +0200699 setExpandedHeightInternal((Float) animation.getAnimatedValue());
700 mBar.panelExpansionChanged(PanelView.this, mExpandedFraction);
Jorim Jaggi90129582014-06-02 14:44:49 +0200701 }
702 });
703 return animator;
704 }
705
706 /**
707 * Gets called when the user performs a click anywhere in the empty area of the panel.
708 *
709 * @return whether the panel will be expanded after the action performed by this method
710 */
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200711 private boolean onEmptySpaceClick(float x) {
712 if (mHintAnimationRunning) {
713 return true;
714 }
Jorim Jaggi6539a832014-06-03 23:33:09 +0200715 if (x < mEdgeTapAreaWidth
716 && mStatusBar.getBarState() == StatusBarState.KEYGUARD) {
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200717 onEdgeClicked(false /* right */);
718 return true;
Jorim Jaggi6539a832014-06-03 23:33:09 +0200719 } else if (x > getWidth() - mEdgeTapAreaWidth
720 && mStatusBar.getBarState() == StatusBarState.KEYGUARD) {
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200721 onEdgeClicked(true /* right */);
722 return true;
723 } else {
724 return onMiddleClicked();
725 }
726 }
727
728 private boolean onMiddleClicked() {
Jorim Jaggi90129582014-06-02 14:44:49 +0200729 switch (mStatusBar.getBarState()) {
730 case StatusBarState.KEYGUARD:
731 startUnlockHintAnimation();
732 return true;
733 case StatusBarState.SHADE_LOCKED:
Jorim Jaggi6539a832014-06-03 23:33:09 +0200734 mStatusBar.goToKeyguard();
Jorim Jaggi90129582014-06-02 14:44:49 +0200735 return true;
736 case StatusBarState.SHADE:
737 collapse();
738 return false;
739 default:
740 return true;
741 }
742 }
743
Jorim Jaggib3f0a2f2014-06-02 19:29:39 +0200744 protected abstract void onEdgeClicked(boolean right);
745
Daniel Sandler37a38aa2013-02-13 17:15:57 -0500746 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
Selim Cineka3e5bcb2014-04-07 20:07:22 +0200747 pw.println(String.format("[PanelView(%s): expandedHeight=%f maxPanelHeight=%d closing=%s"
John Spurlock50728832014-04-17 19:05:28 -0400748 + " tracking=%s justPeeked=%s peekAnim=%s%s timeAnim=%s%s"
Daniel Sandler37a38aa2013-02-13 17:15:57 -0500749 + "]",
750 this.getClass().getSimpleName(),
751 getExpandedHeight(),
Selim Cinekb6d85eb2014-03-28 20:21:01 +0100752 getMaxPanelHeight(),
Daniel Sandler37a38aa2013-02-13 17:15:57 -0500753 mClosing?"T":"f",
754 mTracking?"T":"f",
Daniel Sandler37a38aa2013-02-13 17:15:57 -0500755 mJustPeeked?"T":"f",
756 mPeekAnimator, ((mPeekAnimator!=null && mPeekAnimator.isStarted())?" (started)":""),
Jorim Jaggi1d480692014-05-20 19:41:58 +0200757 mHeightAnimator, ((mHeightAnimator !=null && mHeightAnimator.isStarted())?" (started)":"")
Daniel Sandler37a38aa2013-02-13 17:15:57 -0500758 ));
759 }
Selim Cinek3c4635c2014-05-29 02:12:47 +0200760
761 public abstract void resetViews();
Jorim Jaggi2580a9762014-06-25 03:08:25 +0200762
763 protected abstract float getPeekHeight();
Daniel Sandler08d05e32012-08-08 16:39:54 -0400764}