blob: 472033db76166a0e6b5cfd8add275860386949b1 [file] [log] [blame]
Selim Cinek67b22602014-03-10 15:40:16 +01001/*
2 * Copyright (C) 2014 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
17package com.android.systemui.statusbar.stack;
18
19import android.content.Context;
Christoph Studer6e3eceb2014-04-01 18:40:27 +020020import android.util.Log;
Selim Cinek67b22602014-03-10 15:40:16 +010021import android.view.View;
22import android.view.ViewGroup;
Selim Cinek343e6e22014-04-11 21:23:30 +020023
Selim Cinek67b22602014-03-10 15:40:16 +010024import com.android.systemui.R;
Selim Cinek1685e632014-04-08 02:27:49 +020025import com.android.systemui.statusbar.ExpandableNotificationRow;
Jorim Jaggibe565df2014-04-28 17:51:23 +020026import com.android.systemui.statusbar.ExpandableView;
Selim Cinek67b22602014-03-10 15:40:16 +010027
Jorim Jaggid4a57442014-04-10 02:45:55 +020028import java.util.ArrayList;
29
Selim Cinek67b22602014-03-10 15:40:16 +010030/**
31 * The Algorithm of the {@link com.android.systemui.statusbar.stack
32 * .NotificationStackScrollLayout} which can be queried for {@link com.android.systemui.statusbar
33 * .stack.StackScrollState}
34 */
35public class StackScrollAlgorithm {
36
Christoph Studer6e3eceb2014-04-01 18:40:27 +020037 private static final String LOG_TAG = "StackScrollAlgorithm";
38
Selim Cinek67b22602014-03-10 15:40:16 +010039 private static final int MAX_ITEMS_IN_BOTTOM_STACK = 3;
40 private static final int MAX_ITEMS_IN_TOP_STACK = 3;
41
Jorim Jaggid552d9d2014-05-07 19:41:13 +020042 /** When a child is activated, the other cards' alpha fade to this value. */
43 private static final float ACTIVATED_INVERSE_ALPHA = 0.9f;
44 private static final float DIMMED_SCALE = 0.95f;
45
Selim Cinek67b22602014-03-10 15:40:16 +010046 private int mPaddingBetweenElements;
47 private int mCollapsedSize;
48 private int mTopStackPeekSize;
49 private int mBottomStackPeekSize;
50 private int mZDistanceBetweenElements;
51 private int mZBasicHeight;
Selim Cinek708a6c12014-05-28 14:16:02 +020052 private int mRoundedRectCornerRadius;
Selim Cinek67b22602014-03-10 15:40:16 +010053
54 private StackIndentationFunctor mTopStackIndentationFunctor;
55 private StackIndentationFunctor mBottomStackIndentationFunctor;
56
Selim Cinek343e6e22014-04-11 21:23:30 +020057 private int mLayoutHeight;
Jorim Jaggi8c1a44b2014-04-29 19:04:02 +020058
59 /** mLayoutHeight - mTopPadding */
60 private int mInnerHeight;
61 private int mTopPadding;
Selim Cinek67b22602014-03-10 15:40:16 +010062 private StackScrollAlgorithmState mTempAlgorithmState = new StackScrollAlgorithmState();
Selim Cinek1685e632014-04-08 02:27:49 +020063 private boolean mIsExpansionChanging;
64 private int mFirstChildMaxHeight;
65 private boolean mIsExpanded;
Jorim Jaggibe565df2014-04-28 17:51:23 +020066 private ExpandableView mFirstChildWhileExpanding;
Selim Cinek1685e632014-04-08 02:27:49 +020067 private boolean mExpandedOnStart;
Selim Cinek343e6e22014-04-11 21:23:30 +020068 private int mTopStackTotalSize;
Selim Cinek34c0a8d2014-05-12 00:01:43 +020069 private int mPaddingBetweenElementsDimmed;
70 private int mPaddingBetweenElementsNormal;
71 private int mBottomStackSlowDownLength;
Selim Cinek67b22602014-03-10 15:40:16 +010072
73 public StackScrollAlgorithm(Context context) {
74 initConstants(context);
Selim Cinek34c0a8d2014-05-12 00:01:43 +020075 updatePadding(false);
76 }
77
78 private void updatePadding(boolean dimmed) {
79 mPaddingBetweenElements = dimmed
80 ? mPaddingBetweenElementsDimmed
81 : mPaddingBetweenElementsNormal;
82 mTopStackTotalSize = mCollapsedSize + mPaddingBetweenElements;
83 mTopStackIndentationFunctor = new PiecewiseLinearIndentationFunctor(
84 MAX_ITEMS_IN_TOP_STACK,
85 mTopStackPeekSize,
Selim Cinekb96924d2014-05-12 15:11:25 +020086 mTopStackTotalSize - mTopStackPeekSize,
Selim Cinek34c0a8d2014-05-12 00:01:43 +020087 0.5f);
88 mBottomStackIndentationFunctor = new PiecewiseLinearIndentationFunctor(
89 MAX_ITEMS_IN_BOTTOM_STACK,
90 mBottomStackPeekSize,
91 getBottomStackSlowDownLength(),
92 0.5f);
93 }
94
95 public int getBottomStackSlowDownLength() {
96 return mBottomStackSlowDownLength + mPaddingBetweenElements;
Selim Cinek67b22602014-03-10 15:40:16 +010097 }
98
99 private void initConstants(Context context) {
Selim Cinek34c0a8d2014-05-12 00:01:43 +0200100 mPaddingBetweenElementsDimmed = context.getResources()
101 .getDimensionPixelSize(R.dimen.notification_padding_dimmed);
102 mPaddingBetweenElementsNormal = context.getResources()
Jorim Jaggife40f7d2014-04-28 15:20:04 +0200103 .getDimensionPixelSize(R.dimen.notification_padding);
Selim Cinek67b22602014-03-10 15:40:16 +0100104 mCollapsedSize = context.getResources()
Jorim Jaggife40f7d2014-04-28 15:20:04 +0200105 .getDimensionPixelSize(R.dimen.notification_min_height);
Selim Cinek67b22602014-03-10 15:40:16 +0100106 mTopStackPeekSize = context.getResources()
107 .getDimensionPixelSize(R.dimen.top_stack_peek_amount);
108 mBottomStackPeekSize = context.getResources()
109 .getDimensionPixelSize(R.dimen.bottom_stack_peek_amount);
110 mZDistanceBetweenElements = context.getResources()
111 .getDimensionPixelSize(R.dimen.z_distance_between_notifications);
112 mZBasicHeight = (MAX_ITEMS_IN_BOTTOM_STACK + 1) * mZDistanceBetweenElements;
Selim Cinek34c0a8d2014-05-12 00:01:43 +0200113 mBottomStackSlowDownLength = context.getResources()
114 .getDimensionPixelSize(R.dimen.bottom_stack_slow_down_length);
Selim Cinek708a6c12014-05-28 14:16:02 +0200115 mRoundedRectCornerRadius = context.getResources().getDimensionPixelSize(
116 com.android.internal.R.dimen.notification_quantum_rounded_rect_radius);
Selim Cinek67b22602014-03-10 15:40:16 +0100117 }
118
119
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200120 public void getStackScrollState(AmbientState ambientState, StackScrollState resultState) {
Selim Cinek67b22602014-03-10 15:40:16 +0100121 // The state of the local variables are saved in an algorithmState to easily subdivide it
122 // into multiple phases.
123 StackScrollAlgorithmState algorithmState = mTempAlgorithmState;
124
125 // First we reset the view states to their default values.
126 resultState.resetViewStates();
127
Selim Cinek343e6e22014-04-11 21:23:30 +0200128 algorithmState.itemsInTopStack = 0.0f;
Selim Cinek67b22602014-03-10 15:40:16 +0100129 algorithmState.partialInTop = 0.0f;
130 algorithmState.lastTopStackIndex = 0;
Selim Cinek343e6e22014-04-11 21:23:30 +0200131 algorithmState.scrolledPixelsTop = 0;
Selim Cinek67b22602014-03-10 15:40:16 +0100132 algorithmState.itemsInBottomStack = 0.0f;
Selim Cinek343e6e22014-04-11 21:23:30 +0200133 algorithmState.partialInBottom = 0.0f;
Selim Cinek8d9ff9c2014-05-12 15:13:04 +0200134 float bottomOverScroll = ambientState.getOverScrollAmount(false /* onTop */);
Selim Cinek1408eb52014-06-02 14:45:38 +0200135
136 int scrollY = ambientState.getScrollY();
137
138 // Due to the overScroller, the stackscroller can have negative scroll state. This is
139 // already accounted for by the top padding and doesn't need an additional adaption
140 scrollY = Math.max(0, scrollY);
141 algorithmState.scrollY = (int) (scrollY + mCollapsedSize + bottomOverScroll);
Selim Cinek343e6e22014-04-11 21:23:30 +0200142
Jorim Jaggid4a57442014-04-10 02:45:55 +0200143 updateVisibleChildren(resultState, algorithmState);
Selim Cinek67b22602014-03-10 15:40:16 +0100144
145 // Phase 1:
146 findNumberOfItemsInTopStackAndUpdateState(resultState, algorithmState);
147
148 // Phase 2:
149 updatePositionsForState(resultState, algorithmState);
150
151 // Phase 3:
152 updateZValuesForState(resultState, algorithmState);
Selim Cinekeb973562014-05-02 17:07:49 +0200153
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200154 handleDraggedViews(ambientState, resultState, algorithmState);
155 updateDimmedActivated(ambientState, resultState, algorithmState);
Selim Cinek708a6c12014-05-28 14:16:02 +0200156 updateClipping(resultState, algorithmState);
157 }
158
159 private void updateClipping(StackScrollState resultState,
160 StackScrollAlgorithmState algorithmState) {
161 float previousNotificationEnd = 0;
162 float previousNotificationStart = 0;
163 boolean previousNotificationIsSwiped = false;
164 int childCount = algorithmState.visibleChildren.size();
165 for (int i = 0; i < childCount; i++) {
166 ExpandableView child = algorithmState.visibleChildren.get(i);
167 StackScrollState.ViewState state = resultState.getViewStateForView(child);
168 float newYTranslation = state.yTranslation;
169 int newHeight = state.height;
170 // apply clipping and shadow
171 float newNotificationEnd = newYTranslation + newHeight;
172
173 // In the unlocked shade we have to clip a little bit higher because of the rounded
174 // corners of the notifications.
175 float clippingCorrection = state.dimmed ? 0 : mRoundedRectCornerRadius;
176
177 // When the previous notification is swiped, we don't clip the content to the
178 // bottom of it.
179 float clipHeight = previousNotificationIsSwiped
180 ? newHeight
181 : newNotificationEnd - (previousNotificationEnd - clippingCorrection);
182
183 updateChildClippingAndBackground(state, newHeight, clipHeight,
184 (int) (newHeight - (previousNotificationStart - newYTranslation)));
185
186 if (!child.isTransparent()) {
187 // Only update the previous values if we are not transparent,
188 // otherwise we would clip to a transparent view.
189 previousNotificationStart = newYTranslation + child.getClipTopAmount();
190 previousNotificationEnd = newNotificationEnd;
191 previousNotificationIsSwiped = child.getTranslationX() != 0;
192 }
193 }
194 }
195
196 /**
197 * Updates the shadow outline and the clipping for a view.
198 *
199 * @param state the viewState to update
200 * @param realHeight the currently applied height of the view
201 * @param clipHeight the desired clip height, the rest of the view will be clipped from the top
202 * @param backgroundHeight the desired background height. The shadows of the view will be
203 * based on this height and the content will be clipped from the top
204 */
205 private void updateChildClippingAndBackground(StackScrollState.ViewState state, int realHeight,
206 float clipHeight, int backgroundHeight) {
207 if (realHeight > clipHeight) {
208 state.topOverLap = (int) (realHeight - clipHeight);
209 } else {
210 state.topOverLap = 0;
211 }
212 if (realHeight > backgroundHeight) {
213 state.clipTopAmount = (realHeight - backgroundHeight);
214 } else {
215 state.clipTopAmount = 0;
216 }
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200217 }
218
219 /**
220 * Updates the dimmed and activated states of the children.
221 */
222 private void updateDimmedActivated(AmbientState ambientState, StackScrollState resultState,
223 StackScrollAlgorithmState algorithmState) {
224 boolean dimmed = ambientState.isDimmed();
225 View activatedChild = ambientState.getActivatedChild();
226 int childCount = algorithmState.visibleChildren.size();
227 for (int i = 0; i < childCount; i++) {
228 View child = algorithmState.visibleChildren.get(i);
229 StackScrollState.ViewState childViewState = resultState.getViewStateForView(child);
230 childViewState.dimmed = dimmed;
Selim Cinekb89de4e2014-06-10 10:47:05 +0200231 boolean isActivatedChild = activatedChild == child;
232 childViewState.scale = !dimmed || isActivatedChild
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200233 ? 1.0f
234 : DIMMED_SCALE;
Selim Cinekb89de4e2014-06-10 10:47:05 +0200235 if (dimmed && activatedChild != null) {
236 if (!isActivatedChild) {
237 childViewState.alpha *= ACTIVATED_INVERSE_ALPHA;
238 } else {
239 childViewState.zTranslation += 2.0f * mZDistanceBetweenElements;
240 }
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200241 }
242 }
Selim Cinekeb973562014-05-02 17:07:49 +0200243 }
244
245 /**
246 * Handle the special state when views are being dragged
247 */
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200248 private void handleDraggedViews(AmbientState ambientState, StackScrollState resultState,
Selim Cinekeb973562014-05-02 17:07:49 +0200249 StackScrollAlgorithmState algorithmState) {
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200250 ArrayList<View> draggedViews = ambientState.getDraggedViews();
251 for (View draggedView : draggedViews) {
Selim Cinekeb973562014-05-02 17:07:49 +0200252 int childIndex = algorithmState.visibleChildren.indexOf(draggedView);
253 if (childIndex >= 0 && childIndex < algorithmState.visibleChildren.size() - 1) {
254 View nextChild = algorithmState.visibleChildren.get(childIndex + 1);
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200255 if (!draggedViews.contains(nextChild)) {
Selim Cinekeb973562014-05-02 17:07:49 +0200256 // only if the view is not dragged itself we modify its state to be fully
257 // visible
258 StackScrollState.ViewState viewState = resultState.getViewStateForView(
259 nextChild);
260 // The child below the dragged one must be fully visible
261 viewState.alpha = 1;
262 }
263
264 // Lets set the alpha to the one it currently has, as its currently being dragged
265 StackScrollState.ViewState viewState = resultState.getViewStateForView(draggedView);
266 // The dragged child should keep the set alpha
267 viewState.alpha = draggedView.getAlpha();
268 }
269 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200270 }
Selim Cinek67b22602014-03-10 15:40:16 +0100271
Selim Cinek343e6e22014-04-11 21:23:30 +0200272 /**
Jorim Jaggid4a57442014-04-10 02:45:55 +0200273 * Update the visible children on the state.
274 */
275 private void updateVisibleChildren(StackScrollState resultState,
276 StackScrollAlgorithmState state) {
277 ViewGroup hostView = resultState.getHostView();
278 int childCount = hostView.getChildCount();
279 state.visibleChildren.clear();
280 state.visibleChildren.ensureCapacity(childCount);
281 for (int i = 0; i < childCount; i++) {
Jorim Jaggibe565df2014-04-28 17:51:23 +0200282 ExpandableView v = (ExpandableView) hostView.getChildAt(i);
Jorim Jaggid4a57442014-04-10 02:45:55 +0200283 if (v.getVisibility() != View.GONE) {
Selim Cinek8efa6dd2014-05-19 16:27:37 +0200284 StackScrollState.ViewState viewState = resultState.getViewStateForView(v);
285 viewState.notGoneIndex = state.visibleChildren.size();
Jorim Jaggid4a57442014-04-10 02:45:55 +0200286 state.visibleChildren.add(v);
287 }
288 }
289 }
290
291 /**
Selim Cinek67b22602014-03-10 15:40:16 +0100292 * Determine the positions for the views. This is the main part of the algorithm.
293 *
294 * @param resultState The result state to update if a change to the properties of a child occurs
295 * @param algorithmState The state in which the current pass of the algorithm is currently in
Selim Cinek67b22602014-03-10 15:40:16 +0100296 */
297 private void updatePositionsForState(StackScrollState resultState,
298 StackScrollAlgorithmState algorithmState) {
Selim Cinek67b22602014-03-10 15:40:16 +0100299
Selim Cinek1685e632014-04-08 02:27:49 +0200300 // The starting position of the bottom stack peek
Jorim Jaggi8c1a44b2014-04-29 19:04:02 +0200301 float bottomPeekStart = mInnerHeight - mBottomStackPeekSize;
Selim Cinek1685e632014-04-08 02:27:49 +0200302
Selim Cinek67b22602014-03-10 15:40:16 +0100303 // The position where the bottom stack starts.
Selim Cinek34c0a8d2014-05-12 00:01:43 +0200304 float bottomStackStart = bottomPeekStart - mBottomStackSlowDownLength;
Selim Cinek67b22602014-03-10 15:40:16 +0100305
306 // The y coordinate of the current child.
307 float currentYPosition = 0.0f;
308
309 // How far in is the element currently transitioning into the bottom stack.
310 float yPositionInScrollView = 0.0f;
311
Jorim Jaggid4a57442014-04-10 02:45:55 +0200312 int childCount = algorithmState.visibleChildren.size();
Selim Cinek67b22602014-03-10 15:40:16 +0100313 int numberOfElementsCompletelyIn = (int) algorithmState.itemsInTopStack;
314 for (int i = 0; i < childCount; i++) {
Jorim Jaggibe565df2014-04-28 17:51:23 +0200315 ExpandableView child = algorithmState.visibleChildren.get(i);
Selim Cinek67b22602014-03-10 15:40:16 +0100316 StackScrollState.ViewState childViewState = resultState.getViewStateForView(child);
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200317 childViewState.location = StackScrollState.ViewState.LOCATION_UNKNOWN;
Jorim Jaggibe565df2014-04-28 17:51:23 +0200318 int childHeight = getMaxAllowedChildHeight(child);
Selim Cinek67b22602014-03-10 15:40:16 +0100319 float yPositionInScrollViewAfterElement = yPositionInScrollView
320 + childHeight
321 + mPaddingBetweenElements;
Selim Cinek343e6e22014-04-11 21:23:30 +0200322 float scrollOffset = yPositionInScrollView - algorithmState.scrollY + mCollapsedSize;
323
324 if (i == algorithmState.lastTopStackIndex + 1) {
325 // Normally the position of this child is the position in the regular scrollview,
326 // but if the two stacks are very close to each other,
327 // then have have to push it even more upwards to the position of the bottom
328 // stack start.
329 currentYPosition = Math.min(scrollOffset, bottomStackStart);
330 }
331 childViewState.yTranslation = currentYPosition;
332
333 // The y position after this element
334 float nextYPosition = currentYPosition + childHeight +
335 mPaddingBetweenElements;
336
337 if (i <= algorithmState.lastTopStackIndex) {
Selim Cinek67b22602014-03-10 15:40:16 +0100338 // Case 1:
339 // We are in the top Stack
Selim Cinek343e6e22014-04-11 21:23:30 +0200340 updateStateForTopStackChild(algorithmState,
341 numberOfElementsCompletelyIn, i, childHeight, childViewState, scrollOffset);
342 clampYTranslation(childViewState, childHeight);
343 // check if we are overlapping with the bottom stack
344 if (childViewState.yTranslation + childHeight + mPaddingBetweenElements
Selim Cinek4a1ac842014-05-01 15:51:58 +0200345 >= bottomStackStart && !mIsExpansionChanging && i != 0) {
Selim Cinek343e6e22014-04-11 21:23:30 +0200346 // TODO: handle overlapping sizes with end stack better
347 // we just collapse this element
348 childViewState.height = mCollapsedSize;
349 }
350 } else if (nextYPosition >= bottomStackStart) {
Selim Cinek67b22602014-03-10 15:40:16 +0100351 // Case 2:
Selim Cinek343e6e22014-04-11 21:23:30 +0200352 // We are in the bottom stack.
353 if (currentYPosition >= bottomStackStart) {
Selim Cinek67b22602014-03-10 15:40:16 +0100354 // According to the regular scroll view we are fully translated out of the
355 // bottom of the screen so we are fully in the bottom stack
Selim Cinek343e6e22014-04-11 21:23:30 +0200356 updateStateForChildFullyInBottomStack(algorithmState,
357 bottomStackStart, childViewState, childHeight);
Selim Cinek67b22602014-03-10 15:40:16 +0100358 } else {
Selim Cinek67b22602014-03-10 15:40:16 +0100359 // According to the regular scroll view we are currently translating out of /
360 // into the bottom of the screen
Selim Cinek343e6e22014-04-11 21:23:30 +0200361 updateStateForChildTransitioningInBottom(algorithmState,
362 bottomStackStart, bottomPeekStart, currentYPosition,
363 childViewState, childHeight);
Selim Cinek67b22602014-03-10 15:40:16 +0100364 }
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200365 } else {
Selim Cinek343e6e22014-04-11 21:23:30 +0200366 // Case 3:
367 // We are in the regular scroll area.
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200368 childViewState.location = StackScrollState.ViewState.LOCATION_MAIN_AREA;
Selim Cinek343e6e22014-04-11 21:23:30 +0200369 clampYTranslation(childViewState, childHeight);
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200370 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200371
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200372 // The first card is always rendered.
373 if (i == 0) {
374 childViewState.alpha = 1.0f;
Selim Cinek8d9ff9c2014-05-12 15:13:04 +0200375 childViewState.yTranslation = Math.max(mCollapsedSize - algorithmState.scrollY, 0);
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200376 childViewState.location = StackScrollState.ViewState.LOCATION_FIRST_CARD;
377 }
378 if (childViewState.location == StackScrollState.ViewState.LOCATION_UNKNOWN) {
379 Log.wtf(LOG_TAG, "Failed to assign location for child " + i);
Selim Cinek67b22602014-03-10 15:40:16 +0100380 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200381 currentYPosition = childViewState.yTranslation + childHeight + mPaddingBetweenElements;
Selim Cinek67b22602014-03-10 15:40:16 +0100382 yPositionInScrollView = yPositionInScrollViewAfterElement;
Jorim Jaggi8c1a44b2014-04-29 19:04:02 +0200383
384 childViewState.yTranslation += mTopPadding;
Selim Cinek67b22602014-03-10 15:40:16 +0100385 }
386 }
387
Selim Cinek1685e632014-04-08 02:27:49 +0200388 /**
Selim Cinek343e6e22014-04-11 21:23:30 +0200389 * Clamp the yTranslation both up and down to valid positions.
Selim Cinek1685e632014-04-08 02:27:49 +0200390 *
Selim Cinek1685e632014-04-08 02:27:49 +0200391 * @param childViewState the view state of the child
Selim Cinek343e6e22014-04-11 21:23:30 +0200392 * @param childHeight the height of this child
Selim Cinek1685e632014-04-08 02:27:49 +0200393 */
Selim Cinek343e6e22014-04-11 21:23:30 +0200394 private void clampYTranslation(StackScrollState.ViewState childViewState, int childHeight) {
395 clampPositionToBottomStackStart(childViewState, childHeight);
396 clampPositionToTopStackEnd(childViewState, childHeight);
397 }
398
399 /**
400 * Clamp the yTranslation of the child down such that its end is at most on the beginning of
401 * the bottom stack.
402 *
403 * @param childViewState the view state of the child
404 * @param childHeight the height of this child
405 */
406 private void clampPositionToBottomStackStart(StackScrollState.ViewState childViewState,
407 int childHeight) {
408 childViewState.yTranslation = Math.min(childViewState.yTranslation,
Jorim Jaggi8c1a44b2014-04-29 19:04:02 +0200409 mInnerHeight - mBottomStackPeekSize - childHeight);
Selim Cinek343e6e22014-04-11 21:23:30 +0200410 }
411
412 /**
413 * Clamp the yTranslation of the child up such that its end is at lest on the end of the top
Jorim Jaggibe565df2014-04-28 17:51:23 +0200414 * stack.get
Selim Cinek343e6e22014-04-11 21:23:30 +0200415 *
416 * @param childViewState the view state of the child
417 * @param childHeight the height of this child
418 */
419 private void clampPositionToTopStackEnd(StackScrollState.ViewState childViewState,
420 int childHeight) {
421 childViewState.yTranslation = Math.max(childViewState.yTranslation,
422 mCollapsedSize - childHeight);
Selim Cinek1685e632014-04-08 02:27:49 +0200423 }
424
425 private int getMaxAllowedChildHeight(View child) {
426 if (child instanceof ExpandableNotificationRow) {
427 ExpandableNotificationRow row = (ExpandableNotificationRow) child;
Jorim Jaggi9cbadd32014-05-01 20:18:31 +0200428 return row.getIntrinsicHeight();
Jorim Jaggibe565df2014-04-28 17:51:23 +0200429 } else if (child instanceof ExpandableView) {
430 ExpandableView expandableView = (ExpandableView) child;
431 return expandableView.getActualHeight();
Selim Cinek1685e632014-04-08 02:27:49 +0200432 }
Jorim Jaggibe565df2014-04-28 17:51:23 +0200433 return child == null? mCollapsedSize : child.getHeight();
Selim Cinek1685e632014-04-08 02:27:49 +0200434 }
435
Selim Cinek343e6e22014-04-11 21:23:30 +0200436 private void updateStateForChildTransitioningInBottom(StackScrollAlgorithmState algorithmState,
437 float transitioningPositionStart, float bottomPeakStart, float currentYPosition,
438 StackScrollState.ViewState childViewState, int childHeight) {
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200439
Selim Cinek343e6e22014-04-11 21:23:30 +0200440 // This is the transitioning element on top of bottom stack, calculate how far we are in.
441 algorithmState.partialInBottom = 1.0f - (
442 (transitioningPositionStart - currentYPosition) / (childHeight +
443 mPaddingBetweenElements));
444
445 // the offset starting at the transitionPosition of the bottom stack
446 float offset = mBottomStackIndentationFunctor.getValue(algorithmState.partialInBottom);
447 algorithmState.itemsInBottomStack += algorithmState.partialInBottom;
Jorim Jaggife40f7d2014-04-28 15:20:04 +0200448 childViewState.yTranslation = transitioningPositionStart + offset - childHeight
449 - mPaddingBetweenElements;
Selim Cinek34c0a8d2014-05-12 00:01:43 +0200450
Selim Cinek343e6e22014-04-11 21:23:30 +0200451 // We want at least to be at the end of the top stack when collapsing
452 clampPositionToTopStackEnd(childViewState, childHeight);
453 childViewState.location = StackScrollState.ViewState.LOCATION_MAIN_AREA;
Selim Cinek67b22602014-03-10 15:40:16 +0100454 }
455
Selim Cinek343e6e22014-04-11 21:23:30 +0200456 private void updateStateForChildFullyInBottomStack(StackScrollAlgorithmState algorithmState,
Selim Cinek67b22602014-03-10 15:40:16 +0100457 float transitioningPositionStart, StackScrollState.ViewState childViewState,
458 int childHeight) {
459
Selim Cinek343e6e22014-04-11 21:23:30 +0200460 float currentYPosition;
Selim Cinek67b22602014-03-10 15:40:16 +0100461 algorithmState.itemsInBottomStack += 1.0f;
462 if (algorithmState.itemsInBottomStack < MAX_ITEMS_IN_BOTTOM_STACK) {
463 // We are visually entering the bottom stack
Selim Cinek343e6e22014-04-11 21:23:30 +0200464 currentYPosition = transitioningPositionStart
Jorim Jaggife40f7d2014-04-28 15:20:04 +0200465 + mBottomStackIndentationFunctor.getValue(algorithmState.itemsInBottomStack)
466 - mPaddingBetweenElements;
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200467 childViewState.location = StackScrollState.ViewState.LOCATION_BOTTOM_STACK_PEEKING;
Selim Cinek67b22602014-03-10 15:40:16 +0100468 } else {
469 // we are fully inside the stack
470 if (algorithmState.itemsInBottomStack > MAX_ITEMS_IN_BOTTOM_STACK + 2) {
471 childViewState.alpha = 0.0f;
472 } else if (algorithmState.itemsInBottomStack
473 > MAX_ITEMS_IN_BOTTOM_STACK + 1) {
474 childViewState.alpha = 1.0f - algorithmState.partialInBottom;
475 }
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200476 childViewState.location = StackScrollState.ViewState.LOCATION_BOTTOM_STACK_HIDDEN;
Jorim Jaggi8c1a44b2014-04-29 19:04:02 +0200477 currentYPosition = mInnerHeight;
Selim Cinek67b22602014-03-10 15:40:16 +0100478 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200479 childViewState.yTranslation = currentYPosition - childHeight;
480 clampPositionToTopStackEnd(childViewState, childHeight);
Selim Cinek67b22602014-03-10 15:40:16 +0100481 }
482
Selim Cinek343e6e22014-04-11 21:23:30 +0200483 private void updateStateForTopStackChild(StackScrollAlgorithmState algorithmState,
484 int numberOfElementsCompletelyIn, int i, int childHeight,
485 StackScrollState.ViewState childViewState, float scrollOffset) {
Selim Cinek67b22602014-03-10 15:40:16 +0100486
Selim Cinek67b22602014-03-10 15:40:16 +0100487
488 // First we calculate the index relative to the current stack window of size at most
489 // {@link #MAX_ITEMS_IN_TOP_STACK}
Selim Cinek343e6e22014-04-11 21:23:30 +0200490 int paddedIndex = i - 1
Selim Cinek67b22602014-03-10 15:40:16 +0100491 - Math.max(numberOfElementsCompletelyIn - MAX_ITEMS_IN_TOP_STACK, 0);
492 if (paddedIndex >= 0) {
Selim Cinek343e6e22014-04-11 21:23:30 +0200493
Selim Cinek67b22602014-03-10 15:40:16 +0100494 // We are currently visually entering the top stack
Selim Cinek343e6e22014-04-11 21:23:30 +0200495 float distanceToStack = childHeight - algorithmState.scrolledPixelsTop;
496 if (i == algorithmState.lastTopStackIndex && distanceToStack > mTopStackTotalSize) {
497
498 // Child is currently translating into stack but not yet inside slow down zone.
499 // Handle it like the regular scrollview.
500 childViewState.yTranslation = scrollOffset;
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200501 } else {
Selim Cinek343e6e22014-04-11 21:23:30 +0200502 // Apply stacking logic.
503 float numItemsBefore;
504 if (i == algorithmState.lastTopStackIndex) {
505 numItemsBefore = 1.0f - (distanceToStack / mTopStackTotalSize);
506 } else {
507 numItemsBefore = algorithmState.itemsInTopStack - i;
508 }
509 // The end position of the current child
510 float currentChildEndY = mCollapsedSize + mTopStackTotalSize -
511 mTopStackIndentationFunctor.getValue(numItemsBefore);
512 childViewState.yTranslation = currentChildEndY - childHeight;
Selim Cinek67b22602014-03-10 15:40:16 +0100513 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200514 childViewState.location = StackScrollState.ViewState.LOCATION_TOP_STACK_PEEKING;
Selim Cinek67b22602014-03-10 15:40:16 +0100515 } else {
Selim Cinek343e6e22014-04-11 21:23:30 +0200516 if (paddedIndex == -1) {
517 childViewState.alpha = 1.0f - algorithmState.partialInTop;
518 } else {
519 // We are hidden behind the top card and faded out, so we can hide ourselves.
520 childViewState.alpha = 0.0f;
521 }
522 childViewState.yTranslation = mCollapsedSize - childHeight;
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200523 childViewState.location = StackScrollState.ViewState.LOCATION_TOP_STACK_HIDDEN;
Selim Cinek67b22602014-03-10 15:40:16 +0100524 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200525
526
Selim Cinek67b22602014-03-10 15:40:16 +0100527 }
528
529 /**
530 * Find the number of items in the top stack and update the result state if needed.
531 *
532 * @param resultState The result state to update if a height change of an child occurs
533 * @param algorithmState The state in which the current pass of the algorithm is currently in
Selim Cinek67b22602014-03-10 15:40:16 +0100534 */
535 private void findNumberOfItemsInTopStackAndUpdateState(StackScrollState resultState,
536 StackScrollAlgorithmState algorithmState) {
537
538 // The y Position if the element would be in a regular scrollView
539 float yPositionInScrollView = 0.0f;
Jorim Jaggid4a57442014-04-10 02:45:55 +0200540 int childCount = algorithmState.visibleChildren.size();
Selim Cinek67b22602014-03-10 15:40:16 +0100541
542 // find the number of elements in the top stack.
543 for (int i = 0; i < childCount; i++) {
Jorim Jaggibe565df2014-04-28 17:51:23 +0200544 ExpandableView child = algorithmState.visibleChildren.get(i);
Selim Cinek67b22602014-03-10 15:40:16 +0100545 StackScrollState.ViewState childViewState = resultState.getViewStateForView(child);
Jorim Jaggibe565df2014-04-28 17:51:23 +0200546 int childHeight = getMaxAllowedChildHeight(child);
Selim Cinek67b22602014-03-10 15:40:16 +0100547 float yPositionInScrollViewAfterElement = yPositionInScrollView
548 + childHeight
549 + mPaddingBetweenElements;
550 if (yPositionInScrollView < algorithmState.scrollY) {
Selim Cinek8d9ff9c2014-05-12 15:13:04 +0200551 if (i == 0 && algorithmState.scrollY <= mCollapsedSize) {
Selim Cinek343e6e22014-04-11 21:23:30 +0200552
553 // The starting position of the bottom stack peek
Jorim Jaggi8c1a44b2014-04-29 19:04:02 +0200554 int bottomPeekStart = mInnerHeight - mBottomStackPeekSize;
Selim Cinek343e6e22014-04-11 21:23:30 +0200555 // Collapse and expand the first child while the shade is being expanded
556 float maxHeight = mIsExpansionChanging && child == mFirstChildWhileExpanding
557 ? mFirstChildMaxHeight
558 : childHeight;
559 childViewState.height = (int) Math.max(Math.min(bottomPeekStart, maxHeight),
560 mCollapsedSize);
561 algorithmState.itemsInTopStack = 1.0f;
562
563 } else if (yPositionInScrollViewAfterElement < algorithmState.scrollY) {
Selim Cinek67b22602014-03-10 15:40:16 +0100564 // According to the regular scroll view we are fully off screen
565 algorithmState.itemsInTopStack += 1.0f;
Selim Cinek343e6e22014-04-11 21:23:30 +0200566 if (i == 0) {
Selim Cinek67b22602014-03-10 15:40:16 +0100567 childViewState.height = mCollapsedSize;
568 }
569 } else {
570 // According to the regular scroll view we are partially off screen
571 // If it is expanded we have to collapse it to a new size
572 float newSize = yPositionInScrollViewAfterElement
573 - mPaddingBetweenElements
574 - algorithmState.scrollY;
575
Selim Cinek343e6e22014-04-11 21:23:30 +0200576 if (i == 0) {
577 newSize += mCollapsedSize;
578 }
579
Selim Cinek67b22602014-03-10 15:40:16 +0100580 // How much did we scroll into this child
Selim Cinek343e6e22014-04-11 21:23:30 +0200581 algorithmState.scrolledPixelsTop = childHeight - newSize;
582 algorithmState.partialInTop = (algorithmState.scrolledPixelsTop) / (childHeight
Selim Cinek67b22602014-03-10 15:40:16 +0100583 + mPaddingBetweenElements);
584
585 // Our element can be expanded, so this can get negative
586 algorithmState.partialInTop = Math.max(0.0f, algorithmState.partialInTop);
587 algorithmState.itemsInTopStack += algorithmState.partialInTop;
Selim Cinek67b22602014-03-10 15:40:16 +0100588 newSize = Math.max(mCollapsedSize, newSize);
Selim Cinek343e6e22014-04-11 21:23:30 +0200589 if (i == 0) {
Selim Cinek67b22602014-03-10 15:40:16 +0100590 childViewState.height = (int) newSize;
Selim Cinek67b22602014-03-10 15:40:16 +0100591 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200592 algorithmState.lastTopStackIndex = i;
593 break;
Selim Cinek67b22602014-03-10 15:40:16 +0100594 }
595 } else {
Selim Cinek343e6e22014-04-11 21:23:30 +0200596 algorithmState.lastTopStackIndex = i - 1;
Selim Cinek67b22602014-03-10 15:40:16 +0100597 // We are already past the stack so we can end the loop
598 break;
599 }
600 yPositionInScrollView = yPositionInScrollViewAfterElement;
601 }
602 }
603
604 /**
605 * Calculate the Z positions for all children based on the number of items in both stacks and
606 * save it in the resultState
607 *
608 * @param resultState The result state to update the zTranslation values
609 * @param algorithmState The state in which the current pass of the algorithm is currently in
610 */
611 private void updateZValuesForState(StackScrollState resultState,
612 StackScrollAlgorithmState algorithmState) {
Jorim Jaggid4a57442014-04-10 02:45:55 +0200613 int childCount = algorithmState.visibleChildren.size();
Selim Cinek67b22602014-03-10 15:40:16 +0100614 for (int i = 0; i < childCount; i++) {
Jorim Jaggid4a57442014-04-10 02:45:55 +0200615 View child = algorithmState.visibleChildren.get(i);
Selim Cinek67b22602014-03-10 15:40:16 +0100616 StackScrollState.ViewState childViewState = resultState.getViewStateForView(child);
617 if (i < algorithmState.itemsInTopStack) {
618 float stackIndex = algorithmState.itemsInTopStack - i;
619 stackIndex = Math.min(stackIndex, MAX_ITEMS_IN_TOP_STACK + 2);
620 childViewState.zTranslation = mZBasicHeight
621 + stackIndex * mZDistanceBetweenElements;
622 } else if (i > (childCount - 1 - algorithmState.itemsInBottomStack)) {
623 float numItemsAbove = i - (childCount - 1 - algorithmState.itemsInBottomStack);
624 float translationZ = mZBasicHeight
625 - numItemsAbove * mZDistanceBetweenElements;
626 childViewState.zTranslation = translationZ;
627 } else {
628 childViewState.zTranslation = mZBasicHeight;
629 }
630 }
631 }
632
Selim Cinek343e6e22014-04-11 21:23:30 +0200633 public void setLayoutHeight(int layoutHeight) {
Selim Cinek67b22602014-03-10 15:40:16 +0100634 this.mLayoutHeight = layoutHeight;
Jorim Jaggi8c1a44b2014-04-29 19:04:02 +0200635 updateInnerHeight();
636 }
637
638 public void setTopPadding(int topPadding) {
639 mTopPadding = topPadding;
640 updateInnerHeight();
641 }
642
643 private void updateInnerHeight() {
644 mInnerHeight = mLayoutHeight - mTopPadding;
Selim Cinek67b22602014-03-10 15:40:16 +0100645 }
646
Selim Cinek1685e632014-04-08 02:27:49 +0200647 public void onExpansionStarted(StackScrollState currentState) {
648 mIsExpansionChanging = true;
649 mExpandedOnStart = mIsExpanded;
650 ViewGroup hostView = currentState.getHostView();
651 updateFirstChildHeightWhileExpanding(hostView);
652 }
653
654 private void updateFirstChildHeightWhileExpanding(ViewGroup hostView) {
Jorim Jaggibe565df2014-04-28 17:51:23 +0200655 mFirstChildWhileExpanding = (ExpandableView) findFirstVisibleChild(hostView);
Jorim Jaggi9f347ae2014-04-11 00:47:18 +0200656 if (mFirstChildWhileExpanding != null) {
Selim Cinek1685e632014-04-08 02:27:49 +0200657 if (mExpandedOnStart) {
658
659 // We are collapsing the shade, so the first child can get as most as high as the
660 // current height.
Jorim Jaggibe565df2014-04-28 17:51:23 +0200661 mFirstChildMaxHeight = mFirstChildWhileExpanding.getActualHeight();
Selim Cinek1685e632014-04-08 02:27:49 +0200662 } else {
663
664 // We are expanding the shade, expand it to its full height.
Selim Cinekb6e0e122014-04-23 17:24:37 +0200665 if (mFirstChildWhileExpanding.getWidth() == 0) {
666
667 // This child was not layouted yet, wait for a layout pass
668 mFirstChildWhileExpanding
669 .addOnLayoutChangeListener(new View.OnLayoutChangeListener() {
670 @Override
671 public void onLayoutChange(View v, int left, int top, int right,
672 int bottom, int oldLeft, int oldTop, int oldRight,
673 int oldBottom) {
Selim Cinek2ba5f1f2014-04-28 20:23:30 +0200674 if (mFirstChildWhileExpanding != null) {
675 mFirstChildMaxHeight = getMaxAllowedChildHeight(
676 mFirstChildWhileExpanding);
677 } else {
678 mFirstChildMaxHeight = 0;
679 }
680 v.removeOnLayoutChangeListener(this);
Selim Cinekb6e0e122014-04-23 17:24:37 +0200681 }
682 });
683 } else {
684 mFirstChildMaxHeight = getMaxAllowedChildHeight(mFirstChildWhileExpanding);
685 }
Selim Cinek1685e632014-04-08 02:27:49 +0200686 }
687 } else {
Selim Cinek1685e632014-04-08 02:27:49 +0200688 mFirstChildMaxHeight = 0;
689 }
690 }
691
Jorim Jaggi9f347ae2014-04-11 00:47:18 +0200692 private View findFirstVisibleChild(ViewGroup container) {
693 int childCount = container.getChildCount();
694 for (int i = 0; i < childCount; i++) {
695 View child = container.getChildAt(i);
696 if (child.getVisibility() != View.GONE) {
697 return child;
698 }
699 }
700 return null;
701 }
702
Selim Cinek1685e632014-04-08 02:27:49 +0200703 public void onExpansionStopped() {
704 mIsExpansionChanging = false;
705 mFirstChildWhileExpanding = null;
706 }
707
708 public void setIsExpanded(boolean isExpanded) {
709 this.mIsExpanded = isExpanded;
710 }
711
712 public void notifyChildrenChanged(ViewGroup hostView) {
713 if (mIsExpansionChanging) {
714 updateFirstChildHeightWhileExpanding(hostView);
715 }
716 }
717
Selim Cinek34c0a8d2014-05-12 00:01:43 +0200718 public void setDimmed(boolean dimmed) {
719 updatePadding(dimmed);
720 }
721
Selim Cinek67b22602014-03-10 15:40:16 +0100722 class StackScrollAlgorithmState {
723
724 /**
725 * The scroll position of the algorithm
726 */
727 public int scrollY;
728
729 /**
730 * The quantity of items which are in the top stack.
731 */
732 public float itemsInTopStack;
733
734 /**
735 * how far in is the element currently transitioning into the top stack
736 */
737 public float partialInTop;
738
739 /**
Selim Cinek343e6e22014-04-11 21:23:30 +0200740 * The number of pixels the last child in the top stack has scrolled in to the stack
741 */
742 public float scrolledPixelsTop;
743
744 /**
Selim Cinek67b22602014-03-10 15:40:16 +0100745 * The last item index which is in the top stack.
Selim Cinek67b22602014-03-10 15:40:16 +0100746 */
747 public int lastTopStackIndex;
748
749 /**
750 * The quantity of items which are in the bottom stack.
751 */
752 public float itemsInBottomStack;
753
754 /**
755 * how far in is the element currently transitioning into the bottom stack
756 */
757 public float partialInBottom;
Jorim Jaggid4a57442014-04-10 02:45:55 +0200758
759 /**
760 * The children from the host view which are not gone.
761 */
Jorim Jaggibe565df2014-04-28 17:51:23 +0200762 public final ArrayList<ExpandableView> visibleChildren = new ArrayList<ExpandableView>();
Selim Cinek67b22602014-03-10 15:40:16 +0100763 }
764
765}