blob: 202063ab9d65e0b6415bf5d03a874c2b85a2263c [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;
Jorim Jaggid7c1fae2014-08-13 18:27:47 +020020import android.util.DisplayMetrics;
Christoph Studer6e3eceb2014-04-01 18:40:27 +020021import android.util.Log;
Selim Cinek67b22602014-03-10 15:40:16 +010022import android.view.View;
23import android.view.ViewGroup;
Selim Cinek343e6e22014-04-11 21:23:30 +020024
Selim Cinek67b22602014-03-10 15:40:16 +010025import com.android.systemui.R;
Selim Cinek1685e632014-04-08 02:27:49 +020026import com.android.systemui.statusbar.ExpandableNotificationRow;
Jorim Jaggibe565df2014-04-28 17:51:23 +020027import com.android.systemui.statusbar.ExpandableView;
Selim Cinekb8f09cf2015-03-16 17:09:28 -070028import com.android.systemui.statusbar.policy.HeadsUpManager;
Selim Cinek67b22602014-03-10 15:40:16 +010029
Jorim Jaggid4a57442014-04-10 02:45:55 +020030import java.util.ArrayList;
Selim Cinekb5605e52015-02-20 18:21:41 +010031import java.util.List;
Jorim Jaggid4a57442014-04-10 02:45:55 +020032
Selim Cinek67b22602014-03-10 15:40:16 +010033/**
34 * The Algorithm of the {@link com.android.systemui.statusbar.stack
35 * .NotificationStackScrollLayout} which can be queried for {@link com.android.systemui.statusbar
36 * .stack.StackScrollState}
37 */
38public class StackScrollAlgorithm {
39
Christoph Studer6e3eceb2014-04-01 18:40:27 +020040 private static final String LOG_TAG = "StackScrollAlgorithm";
41
Selim Cinek67b22602014-03-10 15:40:16 +010042 private static final int MAX_ITEMS_IN_BOTTOM_STACK = 3;
43 private static final int MAX_ITEMS_IN_TOP_STACK = 3;
44
Jorim Jaggi362dd6d2014-07-09 19:04:07 +020045 public static final float DIMMED_SCALE = 0.95f;
Jorim Jaggid552d9d2014-05-07 19:41:13 +020046
Selim Cinek67b22602014-03-10 15:40:16 +010047 private int mPaddingBetweenElements;
48 private int mCollapsedSize;
49 private int mTopStackPeekSize;
50 private int mBottomStackPeekSize;
51 private int mZDistanceBetweenElements;
52 private int mZBasicHeight;
Selim Cinek708a6c12014-05-28 14:16:02 +020053 private int mRoundedRectCornerRadius;
Selim Cinek67b22602014-03-10 15:40:16 +010054
55 private StackIndentationFunctor mTopStackIndentationFunctor;
56 private StackIndentationFunctor mBottomStackIndentationFunctor;
57
Selim Cinek67b22602014-03-10 15:40:16 +010058 private StackScrollAlgorithmState mTempAlgorithmState = new StackScrollAlgorithmState();
Selim Cinek1685e632014-04-08 02:27:49 +020059 private boolean mIsExpansionChanging;
60 private int mFirstChildMaxHeight;
61 private boolean mIsExpanded;
Jorim Jaggibe565df2014-04-28 17:51:23 +020062 private ExpandableView mFirstChildWhileExpanding;
Selim Cinek1685e632014-04-08 02:27:49 +020063 private boolean mExpandedOnStart;
Selim Cinek343e6e22014-04-11 21:23:30 +020064 private int mTopStackTotalSize;
Selim Cinek34c0a8d2014-05-12 00:01:43 +020065 private int mPaddingBetweenElementsDimmed;
66 private int mPaddingBetweenElementsNormal;
67 private int mBottomStackSlowDownLength;
Selim Cinekad3e5af2014-07-04 12:24:11 +020068 private int mTopStackSlowDownLength;
Selim Cinekd83771e2014-07-04 16:45:31 +020069 private int mCollapseSecondCardPadding;
Selim Cinek3afd00e2014-08-11 22:32:57 +020070 private boolean mIsSmallScreen;
71 private int mMaxNotificationHeight;
Jorim Jaggid7c1fae2014-08-13 18:27:47 +020072 private boolean mScaleDimmed;
Selim Cinekd2281152015-04-10 14:37:46 -070073 private HeadsUpManager mHeadsUpManager;
Selim Cinek67b22602014-03-10 15:40:16 +010074
75 public StackScrollAlgorithm(Context context) {
76 initConstants(context);
Selim Cinek34c0a8d2014-05-12 00:01:43 +020077 updatePadding(false);
78 }
79
80 private void updatePadding(boolean dimmed) {
Jorim Jaggid7c1fae2014-08-13 18:27:47 +020081 mPaddingBetweenElements = dimmed && mScaleDimmed
Selim Cinek34c0a8d2014-05-12 00:01:43 +020082 ? mPaddingBetweenElementsDimmed
83 : mPaddingBetweenElementsNormal;
Selim Cinekad3e5af2014-07-04 12:24:11 +020084 mTopStackTotalSize = mTopStackSlowDownLength + mPaddingBetweenElements
85 + mTopStackPeekSize;
Selim Cinek34c0a8d2014-05-12 00:01:43 +020086 mTopStackIndentationFunctor = new PiecewiseLinearIndentationFunctor(
87 MAX_ITEMS_IN_TOP_STACK,
88 mTopStackPeekSize,
Selim Cinekb96924d2014-05-12 15:11:25 +020089 mTopStackTotalSize - mTopStackPeekSize,
Selim Cinek34c0a8d2014-05-12 00:01:43 +020090 0.5f);
91 mBottomStackIndentationFunctor = new PiecewiseLinearIndentationFunctor(
92 MAX_ITEMS_IN_BOTTOM_STACK,
93 mBottomStackPeekSize,
94 getBottomStackSlowDownLength(),
95 0.5f);
96 }
97
98 public int getBottomStackSlowDownLength() {
99 return mBottomStackSlowDownLength + mPaddingBetweenElements;
Selim Cinek67b22602014-03-10 15:40:16 +0100100 }
101
102 private void initConstants(Context context) {
Selim Cinek34c0a8d2014-05-12 00:01:43 +0200103 mPaddingBetweenElementsDimmed = context.getResources()
104 .getDimensionPixelSize(R.dimen.notification_padding_dimmed);
105 mPaddingBetweenElementsNormal = context.getResources()
Jorim Jaggife40f7d2014-04-28 15:20:04 +0200106 .getDimensionPixelSize(R.dimen.notification_padding);
Selim Cinek67b22602014-03-10 15:40:16 +0100107 mCollapsedSize = context.getResources()
Jorim Jaggife40f7d2014-04-28 15:20:04 +0200108 .getDimensionPixelSize(R.dimen.notification_min_height);
Selim Cinek3afd00e2014-08-11 22:32:57 +0200109 mMaxNotificationHeight = context.getResources()
110 .getDimensionPixelSize(R.dimen.notification_max_height);
Selim Cinek67b22602014-03-10 15:40:16 +0100111 mTopStackPeekSize = context.getResources()
112 .getDimensionPixelSize(R.dimen.top_stack_peek_amount);
113 mBottomStackPeekSize = context.getResources()
114 .getDimensionPixelSize(R.dimen.bottom_stack_peek_amount);
115 mZDistanceBetweenElements = context.getResources()
116 .getDimensionPixelSize(R.dimen.z_distance_between_notifications);
117 mZBasicHeight = (MAX_ITEMS_IN_BOTTOM_STACK + 1) * mZDistanceBetweenElements;
Selim Cinek34c0a8d2014-05-12 00:01:43 +0200118 mBottomStackSlowDownLength = context.getResources()
119 .getDimensionPixelSize(R.dimen.bottom_stack_slow_down_length);
Selim Cinekad3e5af2014-07-04 12:24:11 +0200120 mTopStackSlowDownLength = context.getResources()
121 .getDimensionPixelSize(R.dimen.top_stack_slow_down_length);
Selim Cinek708a6c12014-05-28 14:16:02 +0200122 mRoundedRectCornerRadius = context.getResources().getDimensionPixelSize(
Selim Cinek697178b2014-07-02 19:40:30 +0200123 R.dimen.notification_material_rounded_rect_radius);
Selim Cinekd83771e2014-07-04 16:45:31 +0200124 mCollapseSecondCardPadding = context.getResources().getDimensionPixelSize(
125 R.dimen.notification_collapse_second_card_padding);
Jorim Jaggid7c1fae2014-08-13 18:27:47 +0200126 mScaleDimmed = context.getResources().getDisplayMetrics().densityDpi
127 >= DisplayMetrics.DENSITY_XXHIGH;
Selim Cinek67b22602014-03-10 15:40:16 +0100128 }
129
Jorim Jaggid7c1fae2014-08-13 18:27:47 +0200130 public boolean shouldScaleDimmed() {
131 return mScaleDimmed;
132 }
Selim Cinek67b22602014-03-10 15:40:16 +0100133
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200134 public void getStackScrollState(AmbientState ambientState, StackScrollState resultState) {
Selim Cinek67b22602014-03-10 15:40:16 +0100135 // The state of the local variables are saved in an algorithmState to easily subdivide it
136 // into multiple phases.
137 StackScrollAlgorithmState algorithmState = mTempAlgorithmState;
138
139 // First we reset the view states to their default values.
140 resultState.resetViewStates();
141
Selim Cinek343e6e22014-04-11 21:23:30 +0200142 algorithmState.itemsInTopStack = 0.0f;
Selim Cinek67b22602014-03-10 15:40:16 +0100143 algorithmState.partialInTop = 0.0f;
144 algorithmState.lastTopStackIndex = 0;
Selim Cinek343e6e22014-04-11 21:23:30 +0200145 algorithmState.scrolledPixelsTop = 0;
Selim Cinek67b22602014-03-10 15:40:16 +0100146 algorithmState.itemsInBottomStack = 0.0f;
Selim Cinek343e6e22014-04-11 21:23:30 +0200147 algorithmState.partialInBottom = 0.0f;
Selim Cinek8d9ff9c2014-05-12 15:13:04 +0200148 float bottomOverScroll = ambientState.getOverScrollAmount(false /* onTop */);
Selim Cinek1408eb52014-06-02 14:45:38 +0200149
150 int scrollY = ambientState.getScrollY();
151
152 // Due to the overScroller, the stackscroller can have negative scroll state. This is
153 // already accounted for by the top padding and doesn't need an additional adaption
154 scrollY = Math.max(0, scrollY);
155 algorithmState.scrollY = (int) (scrollY + mCollapsedSize + bottomOverScroll);
Selim Cinek343e6e22014-04-11 21:23:30 +0200156
Selim Cineka4baaa32015-04-20 14:27:54 -0700157 updateVisibleChildren(resultState, algorithmState);
Selim Cinek67b22602014-03-10 15:40:16 +0100158
159 // Phase 1:
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700160 findNumberOfItemsInTopStackAndUpdateState(resultState, algorithmState, ambientState);
Selim Cinek67b22602014-03-10 15:40:16 +0100161
162 // Phase 2:
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700163 updatePositionsForState(resultState, algorithmState, ambientState);
Selim Cinek67b22602014-03-10 15:40:16 +0100164
165 // Phase 3:
166 updateZValuesForState(resultState, algorithmState);
Selim Cinekeb973562014-05-02 17:07:49 +0200167
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200168 handleDraggedViews(ambientState, resultState, algorithmState);
Jorim Jaggiae441282014-08-01 02:45:18 +0200169 updateDimmedActivatedHideSensitive(ambientState, resultState, algorithmState);
Selim Cineka59ecc32015-04-07 10:51:49 -0700170 updateClipping(resultState, algorithmState, ambientState);
Selim Cinek3d2b94bf2014-07-02 22:12:47 +0200171 updateSpeedBumpState(resultState, algorithmState, ambientState.getSpeedBumpIndex());
Selim Cinekb5605e52015-02-20 18:21:41 +0100172 getNotificationChildrenStates(resultState, algorithmState);
173 }
174
175 private void getNotificationChildrenStates(StackScrollState resultState,
176 StackScrollAlgorithmState algorithmState) {
177 int childCount = algorithmState.visibleChildren.size();
178 for (int i = 0; i < childCount; i++) {
179 ExpandableView v = algorithmState.visibleChildren.get(i);
180 if (v instanceof ExpandableNotificationRow) {
181 ExpandableNotificationRow row = (ExpandableNotificationRow) v;
182 row.getChildrenStates(resultState);
183 }
184 }
Selim Cinek3d2b94bf2014-07-02 22:12:47 +0200185 }
186
187 private void updateSpeedBumpState(StackScrollState resultState,
188 StackScrollAlgorithmState algorithmState, int speedBumpIndex) {
189 int childCount = algorithmState.visibleChildren.size();
190 for (int i = 0; i < childCount; i++) {
191 View child = algorithmState.visibleChildren.get(i);
Selim Cinekb036ca42015-02-20 15:56:28 +0100192 StackViewState childViewState = resultState.getViewStateForView(child);
Selim Cinek3107cfa2014-07-22 15:24:29 +0200193
194 // The speed bump can also be gone, so equality needs to be taken when comparing
195 // indices.
196 childViewState.belowSpeedBump = speedBumpIndex != -1 && i >= speedBumpIndex;
Selim Cinek3d2b94bf2014-07-02 22:12:47 +0200197 }
Selim Cinekf54090e2014-06-17 17:24:51 -0700198 }
199
Selim Cinek708a6c12014-05-28 14:16:02 +0200200 private void updateClipping(StackScrollState resultState,
Selim Cineka59ecc32015-04-07 10:51:49 -0700201 StackScrollAlgorithmState algorithmState, AmbientState ambientState) {
Selim Cinek708a6c12014-05-28 14:16:02 +0200202 float previousNotificationEnd = 0;
203 float previousNotificationStart = 0;
204 boolean previousNotificationIsSwiped = false;
205 int childCount = algorithmState.visibleChildren.size();
206 for (int i = 0; i < childCount; i++) {
207 ExpandableView child = algorithmState.visibleChildren.get(i);
Selim Cinekb036ca42015-02-20 15:56:28 +0100208 StackViewState state = resultState.getViewStateForView(child);
Jorim Jaggi2e34ec32014-07-01 03:17:05 +0200209 float newYTranslation = state.yTranslation + state.height * (1f - state.scale) / 2f;
210 float newHeight = state.height * state.scale;
Selim Cinek708a6c12014-05-28 14:16:02 +0200211 // apply clipping and shadow
212 float newNotificationEnd = newYTranslation + newHeight;
213
Selim Cinekc5baa3e2014-10-29 19:04:19 +0100214 float clipHeight;
215 if (previousNotificationIsSwiped) {
216 // When the previous notification is swiped, we don't clip the content to the
217 // bottom of it.
218 clipHeight = newHeight;
219 } else {
220 clipHeight = newNotificationEnd - previousNotificationEnd;
221 clipHeight = Math.max(0.0f, clipHeight);
222 if (clipHeight != 0.0f) {
Selim Cinek708a6c12014-05-28 14:16:02 +0200223
Selim Cinekc5baa3e2014-10-29 19:04:19 +0100224 // In the unlocked shade we have to clip a little bit higher because of the rounded
225 // corners of the notifications, but only if we are not fully overlapped by
226 // the top card.
227 float clippingCorrection = state.dimmed
228 ? 0
229 : mRoundedRectCornerRadius * state.scale;
230 clipHeight += clippingCorrection;
231 }
232 }
Selim Cinek708a6c12014-05-28 14:16:02 +0200233
234 updateChildClippingAndBackground(state, newHeight, clipHeight,
Jorim Jaggi2e34ec32014-07-01 03:17:05 +0200235 newHeight - (previousNotificationStart - newYTranslation));
Selim Cinek708a6c12014-05-28 14:16:02 +0200236
237 if (!child.isTransparent()) {
238 // Only update the previous values if we are not transparent,
239 // otherwise we would clip to a transparent view.
Jorim Jaggi2e34ec32014-07-01 03:17:05 +0200240 previousNotificationStart = newYTranslation + state.clipTopAmount * state.scale;
Selim Cinek708a6c12014-05-28 14:16:02 +0200241 previousNotificationEnd = newNotificationEnd;
Selim Cineka59ecc32015-04-07 10:51:49 -0700242 previousNotificationIsSwiped = ambientState.getDraggedViews().contains(child);
Selim Cinek708a6c12014-05-28 14:16:02 +0200243 }
244 }
245 }
246
247 /**
248 * Updates the shadow outline and the clipping for a view.
249 *
250 * @param state the viewState to update
251 * @param realHeight the currently applied height of the view
252 * @param clipHeight the desired clip height, the rest of the view will be clipped from the top
253 * @param backgroundHeight the desired background height. The shadows of the view will be
254 * based on this height and the content will be clipped from the top
255 */
Selim Cinekb036ca42015-02-20 15:56:28 +0100256 private void updateChildClippingAndBackground(StackViewState state, float realHeight,
257 float clipHeight, float backgroundHeight) {
Selim Cinek708a6c12014-05-28 14:16:02 +0200258 if (realHeight > clipHeight) {
Jorim Jaggi2e34ec32014-07-01 03:17:05 +0200259 // Rather overlap than create a hole.
260 state.topOverLap = (int) Math.floor((realHeight - clipHeight) / state.scale);
Selim Cinek708a6c12014-05-28 14:16:02 +0200261 } else {
262 state.topOverLap = 0;
263 }
264 if (realHeight > backgroundHeight) {
Jorim Jaggi2e34ec32014-07-01 03:17:05 +0200265 // Rather overlap than create a hole.
266 state.clipTopAmount = (int) Math.floor((realHeight - backgroundHeight) / state.scale);
Selim Cinek708a6c12014-05-28 14:16:02 +0200267 } else {
268 state.clipTopAmount = 0;
269 }
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200270 }
271
272 /**
Jorim Jaggiae441282014-08-01 02:45:18 +0200273 * Updates the dimmed, activated and hiding sensitive states of the children.
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200274 */
Jorim Jaggiae441282014-08-01 02:45:18 +0200275 private void updateDimmedActivatedHideSensitive(AmbientState ambientState,
276 StackScrollState resultState, StackScrollAlgorithmState algorithmState) {
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200277 boolean dimmed = ambientState.isDimmed();
John Spurlockbf370992014-06-17 13:58:31 -0400278 boolean dark = ambientState.isDark();
Jorim Jaggiae441282014-08-01 02:45:18 +0200279 boolean hideSensitive = ambientState.isHideSensitive();
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200280 View activatedChild = ambientState.getActivatedChild();
281 int childCount = algorithmState.visibleChildren.size();
282 for (int i = 0; i < childCount; i++) {
283 View child = algorithmState.visibleChildren.get(i);
Selim Cinekb036ca42015-02-20 15:56:28 +0100284 StackViewState childViewState = resultState.getViewStateForView(child);
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200285 childViewState.dimmed = dimmed;
John Spurlockbf370992014-06-17 13:58:31 -0400286 childViewState.dark = dark;
Jorim Jaggiae441282014-08-01 02:45:18 +0200287 childViewState.hideSensitive = hideSensitive;
Selim Cinekb89de4e2014-06-10 10:47:05 +0200288 boolean isActivatedChild = activatedChild == child;
Jorim Jaggid7c1fae2014-08-13 18:27:47 +0200289 childViewState.scale = !mScaleDimmed || !dimmed || isActivatedChild
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200290 ? 1.0f
291 : DIMMED_SCALE;
Jorim Jaggi4538cee2014-09-09 15:21:38 +0200292 if (dimmed && isActivatedChild) {
293 childViewState.zTranslation += 2.0f * mZDistanceBetweenElements;
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200294 }
295 }
Selim Cinekeb973562014-05-02 17:07:49 +0200296 }
297
298 /**
299 * Handle the special state when views are being dragged
300 */
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200301 private void handleDraggedViews(AmbientState ambientState, StackScrollState resultState,
Selim Cinekeb973562014-05-02 17:07:49 +0200302 StackScrollAlgorithmState algorithmState) {
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200303 ArrayList<View> draggedViews = ambientState.getDraggedViews();
304 for (View draggedView : draggedViews) {
Selim Cinekeb973562014-05-02 17:07:49 +0200305 int childIndex = algorithmState.visibleChildren.indexOf(draggedView);
306 if (childIndex >= 0 && childIndex < algorithmState.visibleChildren.size() - 1) {
307 View nextChild = algorithmState.visibleChildren.get(childIndex + 1);
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200308 if (!draggedViews.contains(nextChild)) {
Selim Cinekeb973562014-05-02 17:07:49 +0200309 // only if the view is not dragged itself we modify its state to be fully
310 // visible
Selim Cinekb036ca42015-02-20 15:56:28 +0100311 StackViewState viewState = resultState.getViewStateForView(
Selim Cinekeb973562014-05-02 17:07:49 +0200312 nextChild);
313 // The child below the dragged one must be fully visible
Selim Cinek684a4422015-04-15 16:18:39 -0700314 if (!NotificationStackScrollLayout.isPinnedHeadsUp(draggedView)
315 || NotificationStackScrollLayout.isPinnedHeadsUp(nextChild)) {
Selim Cineka59ecc32015-04-07 10:51:49 -0700316 viewState.alpha = 1;
317 }
Selim Cinekeb973562014-05-02 17:07:49 +0200318 }
319
320 // Lets set the alpha to the one it currently has, as its currently being dragged
Selim Cinekb036ca42015-02-20 15:56:28 +0100321 StackViewState viewState = resultState.getViewStateForView(draggedView);
Selim Cinekeb973562014-05-02 17:07:49 +0200322 // The dragged child should keep the set alpha
323 viewState.alpha = draggedView.getAlpha();
324 }
325 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200326 }
Selim Cinek67b22602014-03-10 15:40:16 +0100327
Selim Cinek343e6e22014-04-11 21:23:30 +0200328 /**
Jorim Jaggid4a57442014-04-10 02:45:55 +0200329 * Update the visible children on the state.
330 */
331 private void updateVisibleChildren(StackScrollState resultState,
Selim Cineka4baaa32015-04-20 14:27:54 -0700332 StackScrollAlgorithmState state) {
Jorim Jaggid4a57442014-04-10 02:45:55 +0200333 ViewGroup hostView = resultState.getHostView();
334 int childCount = hostView.getChildCount();
335 state.visibleChildren.clear();
336 state.visibleChildren.ensureCapacity(childCount);
Selim Cinekb036ca42015-02-20 15:56:28 +0100337 int notGoneIndex = 0;
Jorim Jaggid4a57442014-04-10 02:45:55 +0200338 for (int i = 0; i < childCount; i++) {
Jorim Jaggibe565df2014-04-28 17:51:23 +0200339 ExpandableView v = (ExpandableView) hostView.getChildAt(i);
Jorim Jaggid4a57442014-04-10 02:45:55 +0200340 if (v.getVisibility() != View.GONE) {
Selim Cineka4baaa32015-04-20 14:27:54 -0700341 notGoneIndex = updateNotGoneIndex(resultState, state, notGoneIndex, v);
Selim Cinekb5605e52015-02-20 18:21:41 +0100342 if (v instanceof ExpandableNotificationRow) {
343 ExpandableNotificationRow row = (ExpandableNotificationRow) v;
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700344
345 // handle the notgoneIndex for the children as well
Selim Cinekb5605e52015-02-20 18:21:41 +0100346 List<ExpandableNotificationRow> children =
347 row.getNotificationChildren();
348 if (row.areChildrenExpanded() && children != null) {
349 for (ExpandableNotificationRow childRow : children) {
350 if (childRow.getVisibility() != View.GONE) {
351 StackViewState childState
352 = resultState.getViewStateForView(childRow);
353 childState.notGoneIndex = notGoneIndex;
354 notGoneIndex++;
355 }
356 }
357 }
358 }
Jorim Jaggid4a57442014-04-10 02:45:55 +0200359 }
360 }
361 }
362
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700363 private int updateNotGoneIndex(StackScrollState resultState,
364 StackScrollAlgorithmState state, int notGoneIndex,
365 ExpandableView v) {
366 StackViewState viewState = resultState.getViewStateForView(v);
367 viewState.notGoneIndex = notGoneIndex;
368 state.visibleChildren.add(v);
369 notGoneIndex++;
370 return notGoneIndex;
371 }
372
Jorim Jaggid4a57442014-04-10 02:45:55 +0200373 /**
Selim Cinek67b22602014-03-10 15:40:16 +0100374 * Determine the positions for the views. This is the main part of the algorithm.
375 *
Selim Cinek684a4422015-04-15 16:18:39 -0700376 * @param resultState The result state to update if a change to the properties of a child occurs
Selim Cinek67b22602014-03-10 15:40:16 +0100377 * @param algorithmState The state in which the current pass of the algorithm is currently in
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700378 * @param ambientState The current ambient state
Selim Cinek67b22602014-03-10 15:40:16 +0100379 */
380 private void updatePositionsForState(StackScrollState resultState,
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700381 StackScrollAlgorithmState algorithmState, AmbientState ambientState) {
Selim Cinek67b22602014-03-10 15:40:16 +0100382
Selim Cinek1685e632014-04-08 02:27:49 +0200383 // The starting position of the bottom stack peek
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700384 float bottomPeekStart = ambientState.getInnerHeight() - mBottomStackPeekSize;
Selim Cinek1685e632014-04-08 02:27:49 +0200385
Selim Cinek67b22602014-03-10 15:40:16 +0100386 // The position where the bottom stack starts.
Selim Cinek34c0a8d2014-05-12 00:01:43 +0200387 float bottomStackStart = bottomPeekStart - mBottomStackSlowDownLength;
Selim Cinek67b22602014-03-10 15:40:16 +0100388
389 // The y coordinate of the current child.
390 float currentYPosition = 0.0f;
391
392 // How far in is the element currently transitioning into the bottom stack.
393 float yPositionInScrollView = 0.0f;
394
Selim Cineka59ecc32015-04-07 10:51:49 -0700395 // If we have a heads-up higher than the collapsed height we need to add the difference to
396 // the padding of all other elements, i.e push in the top stack slightly.
397 ExpandableNotificationRow topHeadsUpEntry = ambientState.getTopHeadsUpEntry();
398
Jorim Jaggid4a57442014-04-10 02:45:55 +0200399 int childCount = algorithmState.visibleChildren.size();
Selim Cinek67b22602014-03-10 15:40:16 +0100400 int numberOfElementsCompletelyIn = (int) algorithmState.itemsInTopStack;
401 for (int i = 0; i < childCount; i++) {
Jorim Jaggibe565df2014-04-28 17:51:23 +0200402 ExpandableView child = algorithmState.visibleChildren.get(i);
Selim Cinekb036ca42015-02-20 15:56:28 +0100403 StackViewState childViewState = resultState.getViewStateForView(child);
404 childViewState.location = StackViewState.LOCATION_UNKNOWN;
Selim Cineka59ecc32015-04-07 10:51:49 -0700405 int childHeight = getMaxAllowedChildHeight(child, ambientState);
Selim Cinek67b22602014-03-10 15:40:16 +0100406 float yPositionInScrollViewAfterElement = yPositionInScrollView
407 + childHeight
408 + mPaddingBetweenElements;
Selim Cinek343e6e22014-04-11 21:23:30 +0200409 float scrollOffset = yPositionInScrollView - algorithmState.scrollY + mCollapsedSize;
410
411 if (i == algorithmState.lastTopStackIndex + 1) {
412 // Normally the position of this child is the position in the regular scrollview,
413 // but if the two stacks are very close to each other,
414 // then have have to push it even more upwards to the position of the bottom
415 // stack start.
416 currentYPosition = Math.min(scrollOffset, bottomStackStart);
417 }
418 childViewState.yTranslation = currentYPosition;
419
420 // The y position after this element
421 float nextYPosition = currentYPosition + childHeight +
422 mPaddingBetweenElements;
423
424 if (i <= algorithmState.lastTopStackIndex) {
Selim Cinek67b22602014-03-10 15:40:16 +0100425 // Case 1:
426 // We are in the top Stack
Selim Cinek343e6e22014-04-11 21:23:30 +0200427 updateStateForTopStackChild(algorithmState,
428 numberOfElementsCompletelyIn, i, childHeight, childViewState, scrollOffset);
Selim Cinek3afd00e2014-08-11 22:32:57 +0200429 clampPositionToTopStackEnd(childViewState, childHeight);
430
Selim Cinek343e6e22014-04-11 21:23:30 +0200431 // check if we are overlapping with the bottom stack
432 if (childViewState.yTranslation + childHeight + mPaddingBetweenElements
Selim Cinek4581cf82014-08-12 12:40:32 +0200433 >= bottomStackStart && !mIsExpansionChanging && i != 0 && mIsSmallScreen) {
Selim Cinek3afd00e2014-08-11 22:32:57 +0200434 // we just collapse this element slightly
435 int newSize = (int) Math.max(bottomStackStart - mPaddingBetweenElements -
436 childViewState.yTranslation, mCollapsedSize);
437 childViewState.height = newSize;
Selim Cinek4581cf82014-08-12 12:40:32 +0200438 updateStateForChildTransitioningInBottom(algorithmState, bottomStackStart,
439 bottomPeekStart, childViewState.yTranslation, childViewState,
440 childHeight);
Selim Cinek343e6e22014-04-11 21:23:30 +0200441 }
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700442 clampPositionToBottomStackStart(childViewState, childViewState.height,
443 ambientState);
Selim Cinek343e6e22014-04-11 21:23:30 +0200444 } else if (nextYPosition >= bottomStackStart) {
Selim Cinek67b22602014-03-10 15:40:16 +0100445 // Case 2:
Selim Cinek343e6e22014-04-11 21:23:30 +0200446 // We are in the bottom stack.
447 if (currentYPosition >= bottomStackStart) {
Selim Cinek67b22602014-03-10 15:40:16 +0100448 // According to the regular scroll view we are fully translated out of the
449 // bottom of the screen so we are fully in the bottom stack
Selim Cinek343e6e22014-04-11 21:23:30 +0200450 updateStateForChildFullyInBottomStack(algorithmState,
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700451 bottomStackStart, childViewState, childHeight, ambientState);
Selim Cinek67b22602014-03-10 15:40:16 +0100452 } else {
Selim Cinek67b22602014-03-10 15:40:16 +0100453 // According to the regular scroll view we are currently translating out of /
454 // into the bottom of the screen
Selim Cinek343e6e22014-04-11 21:23:30 +0200455 updateStateForChildTransitioningInBottom(algorithmState,
456 bottomStackStart, bottomPeekStart, currentYPosition,
457 childViewState, childHeight);
Selim Cinek67b22602014-03-10 15:40:16 +0100458 }
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200459 } else {
Selim Cinek343e6e22014-04-11 21:23:30 +0200460 // Case 3:
461 // We are in the regular scroll area.
Selim Cinekb036ca42015-02-20 15:56:28 +0100462 childViewState.location = StackViewState.LOCATION_MAIN_AREA;
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700463 clampYTranslation(childViewState, childHeight, ambientState);
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200464 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200465
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200466 // The first card is always rendered.
467 if (i == 0) {
468 childViewState.alpha = 1.0f;
Selim Cinek8d9ff9c2014-05-12 15:13:04 +0200469 childViewState.yTranslation = Math.max(mCollapsedSize - algorithmState.scrollY, 0);
Selim Cinekd83771e2014-07-04 16:45:31 +0200470 if (childViewState.yTranslation + childViewState.height
471 > bottomPeekStart - mCollapseSecondCardPadding) {
Selim Cinek4fe3e472014-07-03 16:32:54 +0200472 childViewState.height = (int) Math.max(
Selim Cinekd83771e2014-07-04 16:45:31 +0200473 bottomPeekStart - mCollapseSecondCardPadding
474 - childViewState.yTranslation, mCollapsedSize);
Selim Cinek4fe3e472014-07-03 16:32:54 +0200475 }
Selim Cinekb036ca42015-02-20 15:56:28 +0100476 childViewState.location = StackViewState.LOCATION_FIRST_CARD;
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200477 }
Selim Cinekb036ca42015-02-20 15:56:28 +0100478 if (childViewState.location == StackViewState.LOCATION_UNKNOWN) {
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200479 Log.wtf(LOG_TAG, "Failed to assign location for child " + i);
Selim Cinek67b22602014-03-10 15:40:16 +0100480 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200481 currentYPosition = childViewState.yTranslation + childHeight + mPaddingBetweenElements;
Selim Cinek67b22602014-03-10 15:40:16 +0100482 yPositionInScrollView = yPositionInScrollViewAfterElement;
Jorim Jaggi8c1a44b2014-04-29 19:04:02 +0200483
Selim Cineka59ecc32015-04-07 10:51:49 -0700484 if (ambientState.isShadeExpanded() && topHeadsUpEntry != null
485 && child != topHeadsUpEntry) {
486 childViewState.yTranslation += topHeadsUpEntry.getHeadsUpHeight() - mCollapsedSize;
487 }
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700488 childViewState.yTranslation += ambientState.getTopPadding()
Selim Cineka59ecc32015-04-07 10:51:49 -0700489 + ambientState.getStackTranslation();
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700490 }
Selim Cineka4baaa32015-04-20 14:27:54 -0700491 updateHeadsUpStates(resultState, algorithmState, ambientState);
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700492 }
493
Selim Cineka4baaa32015-04-20 14:27:54 -0700494 private void updateHeadsUpStates(StackScrollState resultState,
495 StackScrollAlgorithmState algorithmState, AmbientState ambientState) {
496 int childCount = algorithmState.visibleChildren.size();
497 ExpandableNotificationRow topHeadsUpEntry = null;
498 for (int i = 0; i < childCount; i++) {
499 View child = algorithmState.visibleChildren.get(i);
500 if (!(child instanceof ExpandableNotificationRow)) {
501 break;
502 }
503 ExpandableNotificationRow row = (ExpandableNotificationRow) child;
504 if (!row.isHeadsUp()) {
505 break;
506 } else if (topHeadsUpEntry == null) {
507 topHeadsUpEntry = row;
508 }
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700509 StackViewState childState = resultState.getViewStateForView(row);
Selim Cinek1f3f5442015-04-10 17:54:46 -0700510 boolean isTopEntry = topHeadsUpEntry == row;
Selim Cinek684a4422015-04-15 16:18:39 -0700511 if (row.isPinned()) {
Selim Cineka59ecc32015-04-07 10:51:49 -0700512 childState.yTranslation = 0;
Selim Cinek1f3f5442015-04-10 17:54:46 -0700513 childState.height = row.getHeadsUpHeight();
514 if (!isTopEntry) {
Selim Cinek684a4422015-04-15 16:18:39 -0700515 // Ensure that a headsUp doesn't vertically extend further than the heads-up at
516 // the top most z-position
Selim Cinek1f3f5442015-04-10 17:54:46 -0700517 StackViewState topState = resultState.getViewStateForView(topHeadsUpEntry);
518 childState.height = row.getHeadsUpHeight();
Selim Cineke53e6bb2015-04-13 16:14:26 -0700519 childState.yTranslation = topState.yTranslation + topState.height
520 - childState.height;
Selim Cinek1f3f5442015-04-10 17:54:46 -0700521 }
522 } else if (mIsExpanded) {
523 if (isTopEntry) {
524 childState.height += row.getHeadsUpHeight() - mCollapsedSize;
525 }
526 childState.height = Math.max(childState.height, row.getHeadsUpHeight());
527 // Ensure that the heads up is always visible even when scrolled of from the bottom
528 float bottomPosition = ambientState.getMaxHeadsUpTranslation() - childState.height;
529 childState.yTranslation = Math.min(childState.yTranslation,
530 bottomPosition);
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700531 }
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700532 }
Selim Cinek67b22602014-03-10 15:40:16 +0100533 }
534
Selim Cinek1685e632014-04-08 02:27:49 +0200535 /**
Selim Cinek343e6e22014-04-11 21:23:30 +0200536 * Clamp the yTranslation both up and down to valid positions.
Selim Cinek1685e632014-04-08 02:27:49 +0200537 *
Selim Cinek1685e632014-04-08 02:27:49 +0200538 * @param childViewState the view state of the child
Selim Cinek343e6e22014-04-11 21:23:30 +0200539 * @param childHeight the height of this child
Selim Cinek1685e632014-04-08 02:27:49 +0200540 */
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700541 private void clampYTranslation(StackViewState childViewState, int childHeight,
542 AmbientState ambientState) {
543 clampPositionToBottomStackStart(childViewState, childHeight, ambientState);
Selim Cinek343e6e22014-04-11 21:23:30 +0200544 clampPositionToTopStackEnd(childViewState, childHeight);
545 }
546
547 /**
548 * Clamp the yTranslation of the child down such that its end is at most on the beginning of
549 * the bottom stack.
550 *
551 * @param childViewState the view state of the child
552 * @param childHeight the height of this child
553 */
Selim Cinekb036ca42015-02-20 15:56:28 +0100554 private void clampPositionToBottomStackStart(StackViewState childViewState,
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700555 int childHeight, AmbientState ambientState) {
Selim Cinek343e6e22014-04-11 21:23:30 +0200556 childViewState.yTranslation = Math.min(childViewState.yTranslation,
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700557 ambientState.getInnerHeight() - mBottomStackPeekSize - mCollapseSecondCardPadding
558 - childHeight);
Selim Cinek343e6e22014-04-11 21:23:30 +0200559 }
560
561 /**
562 * Clamp the yTranslation of the child up such that its end is at lest on the end of the top
Selim Cineka59ecc32015-04-07 10:51:49 -0700563 * stack.
Selim Cinek343e6e22014-04-11 21:23:30 +0200564 *
565 * @param childViewState the view state of the child
566 * @param childHeight the height of this child
567 */
Selim Cinekb036ca42015-02-20 15:56:28 +0100568 private void clampPositionToTopStackEnd(StackViewState childViewState,
Selim Cinek343e6e22014-04-11 21:23:30 +0200569 int childHeight) {
570 childViewState.yTranslation = Math.max(childViewState.yTranslation,
571 mCollapsedSize - childHeight);
Selim Cinek1685e632014-04-08 02:27:49 +0200572 }
573
Selim Cineka59ecc32015-04-07 10:51:49 -0700574 private int getMaxAllowedChildHeight(View child, AmbientState ambientState) {
Selim Cinek1685e632014-04-08 02:27:49 +0200575 if (child instanceof ExpandableNotificationRow) {
576 ExpandableNotificationRow row = (ExpandableNotificationRow) child;
Selim Cinekd2281152015-04-10 14:37:46 -0700577 if (ambientState == null && row.isHeadsUp()
578 || ambientState != null && ambientState.getTopHeadsUpEntry() == child) {
Selim Cinek8d490d42015-04-10 00:05:50 -0700579 int extraSize = row.getIntrinsicHeight() - row.getHeadsUpHeight();
580 return mCollapsedSize + extraSize;
Selim Cineka59ecc32015-04-07 10:51:49 -0700581 }
Jorim Jaggi9cbadd32014-05-01 20:18:31 +0200582 return row.getIntrinsicHeight();
Jorim Jaggibe565df2014-04-28 17:51:23 +0200583 } else if (child instanceof ExpandableView) {
584 ExpandableView expandableView = (ExpandableView) child;
585 return expandableView.getActualHeight();
Selim Cinek1685e632014-04-08 02:27:49 +0200586 }
Jorim Jaggibe565df2014-04-28 17:51:23 +0200587 return child == null? mCollapsedSize : child.getHeight();
Selim Cinek1685e632014-04-08 02:27:49 +0200588 }
589
Selim Cinek343e6e22014-04-11 21:23:30 +0200590 private void updateStateForChildTransitioningInBottom(StackScrollAlgorithmState algorithmState,
591 float transitioningPositionStart, float bottomPeakStart, float currentYPosition,
Selim Cinekb036ca42015-02-20 15:56:28 +0100592 StackViewState childViewState, int childHeight) {
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200593
Selim Cinek343e6e22014-04-11 21:23:30 +0200594 // This is the transitioning element on top of bottom stack, calculate how far we are in.
595 algorithmState.partialInBottom = 1.0f - (
596 (transitioningPositionStart - currentYPosition) / (childHeight +
597 mPaddingBetweenElements));
598
599 // the offset starting at the transitionPosition of the bottom stack
600 float offset = mBottomStackIndentationFunctor.getValue(algorithmState.partialInBottom);
601 algorithmState.itemsInBottomStack += algorithmState.partialInBottom;
Selim Cinek3afd00e2014-08-11 22:32:57 +0200602 int newHeight = childHeight;
603 if (childHeight > mCollapsedSize && mIsSmallScreen) {
604 newHeight = (int) Math.max(Math.min(transitioningPositionStart + offset -
605 mPaddingBetweenElements - currentYPosition, childHeight), mCollapsedSize);
606 childViewState.height = newHeight;
607 }
608 childViewState.yTranslation = transitioningPositionStart + offset - newHeight
Jorim Jaggife40f7d2014-04-28 15:20:04 +0200609 - mPaddingBetweenElements;
Selim Cinek3afd00e2014-08-11 22:32:57 +0200610
Selim Cinek343e6e22014-04-11 21:23:30 +0200611 // We want at least to be at the end of the top stack when collapsing
Selim Cinek3afd00e2014-08-11 22:32:57 +0200612 clampPositionToTopStackEnd(childViewState, newHeight);
Selim Cinekb036ca42015-02-20 15:56:28 +0100613 childViewState.location = StackViewState.LOCATION_MAIN_AREA;
Selim Cinek67b22602014-03-10 15:40:16 +0100614 }
615
Selim Cinek343e6e22014-04-11 21:23:30 +0200616 private void updateStateForChildFullyInBottomStack(StackScrollAlgorithmState algorithmState,
Selim Cinekb036ca42015-02-20 15:56:28 +0100617 float transitioningPositionStart, StackViewState childViewState,
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700618 int childHeight, AmbientState ambientState) {
Selim Cinek343e6e22014-04-11 21:23:30 +0200619 float currentYPosition;
Selim Cinek67b22602014-03-10 15:40:16 +0100620 algorithmState.itemsInBottomStack += 1.0f;
621 if (algorithmState.itemsInBottomStack < MAX_ITEMS_IN_BOTTOM_STACK) {
622 // We are visually entering the bottom stack
Selim Cinek343e6e22014-04-11 21:23:30 +0200623 currentYPosition = transitioningPositionStart
Jorim Jaggife40f7d2014-04-28 15:20:04 +0200624 + mBottomStackIndentationFunctor.getValue(algorithmState.itemsInBottomStack)
625 - mPaddingBetweenElements;
Selim Cinekb036ca42015-02-20 15:56:28 +0100626 childViewState.location = StackViewState.LOCATION_BOTTOM_STACK_PEEKING;
Selim Cinek67b22602014-03-10 15:40:16 +0100627 } else {
628 // we are fully inside the stack
629 if (algorithmState.itemsInBottomStack > MAX_ITEMS_IN_BOTTOM_STACK + 2) {
630 childViewState.alpha = 0.0f;
631 } else if (algorithmState.itemsInBottomStack
632 > MAX_ITEMS_IN_BOTTOM_STACK + 1) {
633 childViewState.alpha = 1.0f - algorithmState.partialInBottom;
634 }
Selim Cinekb036ca42015-02-20 15:56:28 +0100635 childViewState.location = StackViewState.LOCATION_BOTTOM_STACK_HIDDEN;
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700636 currentYPosition = ambientState.getInnerHeight();
Selim Cinek67b22602014-03-10 15:40:16 +0100637 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200638 childViewState.yTranslation = currentYPosition - childHeight;
639 clampPositionToTopStackEnd(childViewState, childHeight);
Selim Cinek67b22602014-03-10 15:40:16 +0100640 }
641
Selim Cinek343e6e22014-04-11 21:23:30 +0200642 private void updateStateForTopStackChild(StackScrollAlgorithmState algorithmState,
643 int numberOfElementsCompletelyIn, int i, int childHeight,
Selim Cinekb036ca42015-02-20 15:56:28 +0100644 StackViewState childViewState, float scrollOffset) {
Selim Cinek67b22602014-03-10 15:40:16 +0100645
Selim Cinek67b22602014-03-10 15:40:16 +0100646
647 // First we calculate the index relative to the current stack window of size at most
648 // {@link #MAX_ITEMS_IN_TOP_STACK}
Selim Cinek343e6e22014-04-11 21:23:30 +0200649 int paddedIndex = i - 1
Selim Cinek67b22602014-03-10 15:40:16 +0100650 - Math.max(numberOfElementsCompletelyIn - MAX_ITEMS_IN_TOP_STACK, 0);
651 if (paddedIndex >= 0) {
Selim Cinek343e6e22014-04-11 21:23:30 +0200652
Selim Cinek67b22602014-03-10 15:40:16 +0100653 // We are currently visually entering the top stack
Selim Cinekad3e5af2014-07-04 12:24:11 +0200654 float distanceToStack = (childHeight + mPaddingBetweenElements)
655 - algorithmState.scrolledPixelsTop;
656 if (i == algorithmState.lastTopStackIndex
657 && distanceToStack > (mTopStackTotalSize + mPaddingBetweenElements)) {
Selim Cinek343e6e22014-04-11 21:23:30 +0200658
659 // Child is currently translating into stack but not yet inside slow down zone.
660 // Handle it like the regular scrollview.
661 childViewState.yTranslation = scrollOffset;
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200662 } else {
Selim Cinek343e6e22014-04-11 21:23:30 +0200663 // Apply stacking logic.
664 float numItemsBefore;
665 if (i == algorithmState.lastTopStackIndex) {
Selim Cinekad3e5af2014-07-04 12:24:11 +0200666 numItemsBefore = 1.0f
667 - (distanceToStack / (mTopStackTotalSize + mPaddingBetweenElements));
Selim Cinek343e6e22014-04-11 21:23:30 +0200668 } else {
669 numItemsBefore = algorithmState.itemsInTopStack - i;
670 }
671 // The end position of the current child
Selim Cinekad3e5af2014-07-04 12:24:11 +0200672 float currentChildEndY = mCollapsedSize + mTopStackTotalSize
673 - mTopStackIndentationFunctor.getValue(numItemsBefore);
Selim Cinek343e6e22014-04-11 21:23:30 +0200674 childViewState.yTranslation = currentChildEndY - childHeight;
Selim Cinek67b22602014-03-10 15:40:16 +0100675 }
Selim Cinekb036ca42015-02-20 15:56:28 +0100676 childViewState.location = StackViewState.LOCATION_TOP_STACK_PEEKING;
Selim Cinek67b22602014-03-10 15:40:16 +0100677 } else {
Selim Cinek343e6e22014-04-11 21:23:30 +0200678 if (paddedIndex == -1) {
679 childViewState.alpha = 1.0f - algorithmState.partialInTop;
680 } else {
681 // We are hidden behind the top card and faded out, so we can hide ourselves.
682 childViewState.alpha = 0.0f;
683 }
684 childViewState.yTranslation = mCollapsedSize - childHeight;
Selim Cinekb036ca42015-02-20 15:56:28 +0100685 childViewState.location = StackViewState.LOCATION_TOP_STACK_HIDDEN;
Selim Cinek67b22602014-03-10 15:40:16 +0100686 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200687
688
Selim Cinek67b22602014-03-10 15:40:16 +0100689 }
690
691 /**
692 * Find the number of items in the top stack and update the result state if needed.
693 *
694 * @param resultState The result state to update if a height change of an child occurs
695 * @param algorithmState The state in which the current pass of the algorithm is currently in
Selim Cinek67b22602014-03-10 15:40:16 +0100696 */
697 private void findNumberOfItemsInTopStackAndUpdateState(StackScrollState resultState,
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700698 StackScrollAlgorithmState algorithmState, AmbientState ambientState) {
Selim Cinek67b22602014-03-10 15:40:16 +0100699
700 // The y Position if the element would be in a regular scrollView
701 float yPositionInScrollView = 0.0f;
Jorim Jaggid4a57442014-04-10 02:45:55 +0200702 int childCount = algorithmState.visibleChildren.size();
Selim Cinek67b22602014-03-10 15:40:16 +0100703
704 // find the number of elements in the top stack.
705 for (int i = 0; i < childCount; i++) {
Jorim Jaggibe565df2014-04-28 17:51:23 +0200706 ExpandableView child = algorithmState.visibleChildren.get(i);
Selim Cinekb036ca42015-02-20 15:56:28 +0100707 StackViewState childViewState = resultState.getViewStateForView(child);
Selim Cineka59ecc32015-04-07 10:51:49 -0700708 int childHeight = getMaxAllowedChildHeight(child, ambientState);
Selim Cinek67b22602014-03-10 15:40:16 +0100709 float yPositionInScrollViewAfterElement = yPositionInScrollView
710 + childHeight
711 + mPaddingBetweenElements;
712 if (yPositionInScrollView < algorithmState.scrollY) {
Selim Cinek8d9ff9c2014-05-12 15:13:04 +0200713 if (i == 0 && algorithmState.scrollY <= mCollapsedSize) {
Selim Cinek343e6e22014-04-11 21:23:30 +0200714
715 // The starting position of the bottom stack peek
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700716 int bottomPeekStart = ambientState.getInnerHeight() - mBottomStackPeekSize -
Selim Cinekd83771e2014-07-04 16:45:31 +0200717 mCollapseSecondCardPadding;
Selim Cinek343e6e22014-04-11 21:23:30 +0200718 // Collapse and expand the first child while the shade is being expanded
719 float maxHeight = mIsExpansionChanging && child == mFirstChildWhileExpanding
720 ? mFirstChildMaxHeight
721 : childHeight;
722 childViewState.height = (int) Math.max(Math.min(bottomPeekStart, maxHeight),
723 mCollapsedSize);
724 algorithmState.itemsInTopStack = 1.0f;
725
726 } else if (yPositionInScrollViewAfterElement < algorithmState.scrollY) {
Selim Cinek67b22602014-03-10 15:40:16 +0100727 // According to the regular scroll view we are fully off screen
728 algorithmState.itemsInTopStack += 1.0f;
Selim Cinek343e6e22014-04-11 21:23:30 +0200729 if (i == 0) {
Selim Cinek67b22602014-03-10 15:40:16 +0100730 childViewState.height = mCollapsedSize;
731 }
732 } else {
733 // According to the regular scroll view we are partially off screen
Selim Cinek343e6e22014-04-11 21:23:30 +0200734
Selim Cinek67b22602014-03-10 15:40:16 +0100735 // How much did we scroll into this child
Selim Cinekad3e5af2014-07-04 12:24:11 +0200736 algorithmState.scrolledPixelsTop = algorithmState.scrollY
737 - yPositionInScrollView;
Selim Cinek343e6e22014-04-11 21:23:30 +0200738 algorithmState.partialInTop = (algorithmState.scrolledPixelsTop) / (childHeight
Selim Cinek67b22602014-03-10 15:40:16 +0100739 + mPaddingBetweenElements);
740
741 // Our element can be expanded, so this can get negative
742 algorithmState.partialInTop = Math.max(0.0f, algorithmState.partialInTop);
743 algorithmState.itemsInTopStack += algorithmState.partialInTop;
Selim Cinekad3e5af2014-07-04 12:24:11 +0200744
Selim Cinek343e6e22014-04-11 21:23:30 +0200745 if (i == 0) {
Selim Cinekad3e5af2014-07-04 12:24:11 +0200746 // If it is expanded we have to collapse it to a new size
747 float newSize = yPositionInScrollViewAfterElement
748 - mPaddingBetweenElements
749 - algorithmState.scrollY + mCollapsedSize;
750 newSize = Math.max(mCollapsedSize, newSize);
Selim Cinek4e456be2014-06-12 18:09:43 +0200751 algorithmState.itemsInTopStack = 1.0f;
Selim Cinek67b22602014-03-10 15:40:16 +0100752 childViewState.height = (int) newSize;
Selim Cinek67b22602014-03-10 15:40:16 +0100753 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200754 algorithmState.lastTopStackIndex = i;
755 break;
Selim Cinek67b22602014-03-10 15:40:16 +0100756 }
757 } else {
Selim Cinek343e6e22014-04-11 21:23:30 +0200758 algorithmState.lastTopStackIndex = i - 1;
Selim Cinek67b22602014-03-10 15:40:16 +0100759 // We are already past the stack so we can end the loop
760 break;
761 }
762 yPositionInScrollView = yPositionInScrollViewAfterElement;
763 }
764 }
765
766 /**
767 * Calculate the Z positions for all children based on the number of items in both stacks and
768 * save it in the resultState
769 *
770 * @param resultState The result state to update the zTranslation values
771 * @param algorithmState The state in which the current pass of the algorithm is currently in
772 */
773 private void updateZValuesForState(StackScrollState resultState,
774 StackScrollAlgorithmState algorithmState) {
Jorim Jaggid4a57442014-04-10 02:45:55 +0200775 int childCount = algorithmState.visibleChildren.size();
Selim Cinek67b22602014-03-10 15:40:16 +0100776 for (int i = 0; i < childCount; i++) {
Jorim Jaggid4a57442014-04-10 02:45:55 +0200777 View child = algorithmState.visibleChildren.get(i);
Selim Cinekb036ca42015-02-20 15:56:28 +0100778 StackViewState childViewState = resultState.getViewStateForView(child);
Selim Cinek67b22602014-03-10 15:40:16 +0100779 if (i < algorithmState.itemsInTopStack) {
780 float stackIndex = algorithmState.itemsInTopStack - i;
Selim Cinekc5baa3e2014-10-29 19:04:19 +0100781
782 // Ensure that the topmost item is a little bit higher than the rest when fully
783 // scrolled, to avoid drawing errors when swiping it out
784 float max = MAX_ITEMS_IN_TOP_STACK + (i == 0 ? 2.5f : 2);
785 stackIndex = Math.min(stackIndex, max);
Selim Cinek4e456be2014-06-12 18:09:43 +0200786 if (i == 0 && algorithmState.itemsInTopStack < 2.0f) {
787
788 // We only have the top item and an additional item in the top stack,
789 // Interpolate the index from 0 to 2 while the second item is
790 // translating in.
791 stackIndex -= 1.0f;
792 if (algorithmState.scrollY > mCollapsedSize) {
793
794 // Since there is a shadow treshhold, we cant just interpolate from 0 to
795 // 2 but we interpolate from 0.1f to 2.0f when scrolled in. The jump in
796 // height will not be noticable since we have padding in between.
797 stackIndex = 0.1f + stackIndex * 1.9f;
798 }
799 }
Selim Cinek67b22602014-03-10 15:40:16 +0100800 childViewState.zTranslation = mZBasicHeight
801 + stackIndex * mZDistanceBetweenElements;
802 } else if (i > (childCount - 1 - algorithmState.itemsInBottomStack)) {
803 float numItemsAbove = i - (childCount - 1 - algorithmState.itemsInBottomStack);
804 float translationZ = mZBasicHeight
805 - numItemsAbove * mZDistanceBetweenElements;
806 childViewState.zTranslation = translationZ;
807 } else {
808 childViewState.zTranslation = mZBasicHeight;
809 }
810 }
811 }
812
Selim Cinek3afd00e2014-08-11 22:32:57 +0200813 /**
814 * Update whether the device is very small, i.e. Notifications can be in both the top and the
815 * bottom stack at the same time
816 *
817 * @param panelHeight The normal height of the panel when it's open
818 */
819 public void updateIsSmallScreen(int panelHeight) {
820 mIsSmallScreen = panelHeight <
821 mCollapsedSize /* top stack */
822 + mBottomStackSlowDownLength + mBottomStackPeekSize /* bottom stack */
823 + mMaxNotificationHeight; /* max notification height */
824 }
825
Selim Cinek1685e632014-04-08 02:27:49 +0200826 public void onExpansionStarted(StackScrollState currentState) {
827 mIsExpansionChanging = true;
828 mExpandedOnStart = mIsExpanded;
829 ViewGroup hostView = currentState.getHostView();
830 updateFirstChildHeightWhileExpanding(hostView);
831 }
832
833 private void updateFirstChildHeightWhileExpanding(ViewGroup hostView) {
Jorim Jaggibe565df2014-04-28 17:51:23 +0200834 mFirstChildWhileExpanding = (ExpandableView) findFirstVisibleChild(hostView);
Jorim Jaggi9f347ae2014-04-11 00:47:18 +0200835 if (mFirstChildWhileExpanding != null) {
Selim Cinek1685e632014-04-08 02:27:49 +0200836 if (mExpandedOnStart) {
837
838 // We are collapsing the shade, so the first child can get as most as high as the
Selim Cinek02af41e2014-10-14 15:46:43 +0200839 // current height or the end value of the animation.
840 mFirstChildMaxHeight = StackStateAnimator.getFinalActualHeight(
841 mFirstChildWhileExpanding);
Selim Cinekd2281152015-04-10 14:37:46 -0700842 if (mFirstChildWhileExpanding instanceof ExpandableNotificationRow) {
843 ExpandableNotificationRow row =
844 (ExpandableNotificationRow) mFirstChildWhileExpanding;
845 if (row.isHeadsUp()) {
846 mFirstChildMaxHeight += mCollapsedSize - row.getHeadsUpHeight();
847 }
848 }
Selim Cinek1685e632014-04-08 02:27:49 +0200849 } else {
Selim Cinek31094df2014-08-14 19:28:15 +0200850 updateFirstChildMaxSizeToMaxHeight();
Selim Cinek1685e632014-04-08 02:27:49 +0200851 }
852 } else {
Selim Cinek1685e632014-04-08 02:27:49 +0200853 mFirstChildMaxHeight = 0;
854 }
855 }
856
Selim Cinek31094df2014-08-14 19:28:15 +0200857 private void updateFirstChildMaxSizeToMaxHeight() {
858 // We are expanding the shade, expand it to its full height.
859 if (!isMaxSizeInitialized(mFirstChildWhileExpanding)) {
860
861 // This child was not layouted yet, wait for a layout pass
862 mFirstChildWhileExpanding
863 .addOnLayoutChangeListener(new View.OnLayoutChangeListener() {
864 @Override
865 public void onLayoutChange(View v, int left, int top, int right,
866 int bottom, int oldLeft, int oldTop, int oldRight,
867 int oldBottom) {
868 if (mFirstChildWhileExpanding != null) {
869 mFirstChildMaxHeight = getMaxAllowedChildHeight(
Selim Cineka59ecc32015-04-07 10:51:49 -0700870 mFirstChildWhileExpanding, null);
Selim Cinek31094df2014-08-14 19:28:15 +0200871 } else {
872 mFirstChildMaxHeight = 0;
873 }
874 v.removeOnLayoutChangeListener(this);
875 }
876 });
877 } else {
Selim Cineka59ecc32015-04-07 10:51:49 -0700878 mFirstChildMaxHeight = getMaxAllowedChildHeight(mFirstChildWhileExpanding, null);
Selim Cinek31094df2014-08-14 19:28:15 +0200879 }
880 }
881
Selim Cinek7d447722014-06-10 15:51:59 +0200882 private boolean isMaxSizeInitialized(ExpandableView child) {
883 if (child instanceof ExpandableNotificationRow) {
884 ExpandableNotificationRow row = (ExpandableNotificationRow) child;
Selim Cinek31094df2014-08-14 19:28:15 +0200885 return row.isMaxExpandHeightInitialized();
Selim Cinek7d447722014-06-10 15:51:59 +0200886 }
887 return child == null || child.getWidth() != 0;
888 }
889
Jorim Jaggi9f347ae2014-04-11 00:47:18 +0200890 private View findFirstVisibleChild(ViewGroup container) {
891 int childCount = container.getChildCount();
892 for (int i = 0; i < childCount; i++) {
893 View child = container.getChildAt(i);
894 if (child.getVisibility() != View.GONE) {
895 return child;
896 }
897 }
898 return null;
899 }
900
Selim Cinek1685e632014-04-08 02:27:49 +0200901 public void onExpansionStopped() {
902 mIsExpansionChanging = false;
903 mFirstChildWhileExpanding = null;
904 }
905
906 public void setIsExpanded(boolean isExpanded) {
907 this.mIsExpanded = isExpanded;
908 }
909
Selim Cinek02af41e2014-10-14 15:46:43 +0200910 public void notifyChildrenChanged(final ViewGroup hostView) {
Selim Cinek1685e632014-04-08 02:27:49 +0200911 if (mIsExpansionChanging) {
Selim Cinek02af41e2014-10-14 15:46:43 +0200912 hostView.post(new Runnable() {
913 @Override
914 public void run() {
915 updateFirstChildHeightWhileExpanding(hostView);
916 }
917 });
Selim Cinek1685e632014-04-08 02:27:49 +0200918 }
919 }
920
Selim Cinek34c0a8d2014-05-12 00:01:43 +0200921 public void setDimmed(boolean dimmed) {
922 updatePadding(dimmed);
923 }
924
Selim Cinek31094df2014-08-14 19:28:15 +0200925 public void onReset(ExpandableView view) {
926 if (view.equals(mFirstChildWhileExpanding)) {
927 updateFirstChildMaxSizeToMaxHeight();
928 }
929 }
930
Selim Cinekd2281152015-04-10 14:37:46 -0700931 public void setHeadsUpManager(HeadsUpManager headsUpManager) {
932 mHeadsUpManager = headsUpManager;
933 }
934
Selim Cinek67b22602014-03-10 15:40:16 +0100935 class StackScrollAlgorithmState {
936
937 /**
938 * The scroll position of the algorithm
939 */
940 public int scrollY;
941
942 /**
943 * The quantity of items which are in the top stack.
944 */
945 public float itemsInTopStack;
946
947 /**
948 * how far in is the element currently transitioning into the top stack
949 */
950 public float partialInTop;
951
952 /**
Selim Cinek343e6e22014-04-11 21:23:30 +0200953 * The number of pixels the last child in the top stack has scrolled in to the stack
954 */
955 public float scrolledPixelsTop;
956
957 /**
Selim Cinek67b22602014-03-10 15:40:16 +0100958 * The last item index which is in the top stack.
Selim Cinek67b22602014-03-10 15:40:16 +0100959 */
960 public int lastTopStackIndex;
961
962 /**
963 * The quantity of items which are in the bottom stack.
964 */
965 public float itemsInBottomStack;
966
967 /**
968 * how far in is the element currently transitioning into the bottom stack
969 */
970 public float partialInBottom;
Jorim Jaggid4a57442014-04-10 02:45:55 +0200971
972 /**
973 * The children from the host view which are not gone.
974 */
Jorim Jaggibe565df2014-04-28 17:51:23 +0200975 public final ArrayList<ExpandableView> visibleChildren = new ArrayList<ExpandableView>();
Selim Cinek67b22602014-03-10 15:40:16 +0100976 }
977
978}