blob: 1a42f45a0b018e61906e79c0b710b4134fc7ae60 [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;
Selim Cineka59ecc32015-04-07 10:51:49 -070032import java.util.TreeSet;
Jorim Jaggid4a57442014-04-10 02:45:55 +020033
Selim Cinek67b22602014-03-10 15:40:16 +010034/**
35 * The Algorithm of the {@link com.android.systemui.statusbar.stack
36 * .NotificationStackScrollLayout} which can be queried for {@link com.android.systemui.statusbar
37 * .stack.StackScrollState}
38 */
39public class StackScrollAlgorithm {
40
Christoph Studer6e3eceb2014-04-01 18:40:27 +020041 private static final String LOG_TAG = "StackScrollAlgorithm";
42
Selim Cinek67b22602014-03-10 15:40:16 +010043 private static final int MAX_ITEMS_IN_BOTTOM_STACK = 3;
44 private static final int MAX_ITEMS_IN_TOP_STACK = 3;
45
Jorim Jaggi362dd6d2014-07-09 19:04:07 +020046 public static final float DIMMED_SCALE = 0.95f;
Jorim Jaggid552d9d2014-05-07 19:41:13 +020047
Selim Cinek67b22602014-03-10 15:40:16 +010048 private int mPaddingBetweenElements;
49 private int mCollapsedSize;
50 private int mTopStackPeekSize;
51 private int mBottomStackPeekSize;
52 private int mZDistanceBetweenElements;
53 private int mZBasicHeight;
Selim Cinek708a6c12014-05-28 14:16:02 +020054 private int mRoundedRectCornerRadius;
Selim Cinek67b22602014-03-10 15:40:16 +010055
56 private StackIndentationFunctor mTopStackIndentationFunctor;
57 private StackIndentationFunctor mBottomStackIndentationFunctor;
58
Selim Cinek67b22602014-03-10 15:40:16 +010059 private StackScrollAlgorithmState mTempAlgorithmState = new StackScrollAlgorithmState();
Selim Cinek1685e632014-04-08 02:27:49 +020060 private boolean mIsExpansionChanging;
61 private int mFirstChildMaxHeight;
62 private boolean mIsExpanded;
Jorim Jaggibe565df2014-04-28 17:51:23 +020063 private ExpandableView mFirstChildWhileExpanding;
Selim Cinek1685e632014-04-08 02:27:49 +020064 private boolean mExpandedOnStart;
Selim Cinek343e6e22014-04-11 21:23:30 +020065 private int mTopStackTotalSize;
Selim Cinek34c0a8d2014-05-12 00:01:43 +020066 private int mPaddingBetweenElementsDimmed;
67 private int mPaddingBetweenElementsNormal;
68 private int mBottomStackSlowDownLength;
Selim Cinekad3e5af2014-07-04 12:24:11 +020069 private int mTopStackSlowDownLength;
Selim Cinekd83771e2014-07-04 16:45:31 +020070 private int mCollapseSecondCardPadding;
Selim Cinek3afd00e2014-08-11 22:32:57 +020071 private boolean mIsSmallScreen;
72 private int mMaxNotificationHeight;
Jorim Jaggid7c1fae2014-08-13 18:27:47 +020073 private boolean mScaleDimmed;
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 Cinekb8f09cf2015-03-16 17:09:28 -0700157 updateVisibleChildren(resultState, algorithmState, ambientState);
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 Cineka59ecc32015-04-07 10:51:49 -0700314 if (!isPinnedHeadsUpView(draggedView) || isPinnedHeadsUpView(nextChild)) {
315 viewState.alpha = 1;
316 }
Selim Cinekeb973562014-05-02 17:07:49 +0200317 }
318
319 // Lets set the alpha to the one it currently has, as its currently being dragged
Selim Cinekb036ca42015-02-20 15:56:28 +0100320 StackViewState viewState = resultState.getViewStateForView(draggedView);
Selim Cinekeb973562014-05-02 17:07:49 +0200321 // The dragged child should keep the set alpha
322 viewState.alpha = draggedView.getAlpha();
323 }
324 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200325 }
Selim Cinek67b22602014-03-10 15:40:16 +0100326
Selim Cineka59ecc32015-04-07 10:51:49 -0700327 private boolean isPinnedHeadsUpView(View view) {
328 if (view instanceof ExpandableNotificationRow) {
329 ExpandableNotificationRow row = (ExpandableNotificationRow) view;
330 return row.isHeadsUp() && !row.isInShade();
331 }
332 return false;
333 }
334
Selim Cinek343e6e22014-04-11 21:23:30 +0200335 /**
Jorim Jaggid4a57442014-04-10 02:45:55 +0200336 * Update the visible children on the state.
337 */
338 private void updateVisibleChildren(StackScrollState resultState,
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700339 StackScrollAlgorithmState state, AmbientState ambientState) {
Jorim Jaggid4a57442014-04-10 02:45:55 +0200340 ViewGroup hostView = resultState.getHostView();
341 int childCount = hostView.getChildCount();
342 state.visibleChildren.clear();
343 state.visibleChildren.ensureCapacity(childCount);
Selim Cinekb036ca42015-02-20 15:56:28 +0100344 int notGoneIndex = 0;
Selim Cineka59ecc32015-04-07 10:51:49 -0700345 TreeSet<HeadsUpManager.HeadsUpEntry> headsUpEntries
346 = ambientState.getSortedHeadsUpEntries();
347 for (HeadsUpManager.HeadsUpEntry entry: headsUpEntries) {
348 ExpandableView v = entry.entry.row;
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700349 notGoneIndex = updateNotGoneIndex(resultState, state, notGoneIndex, v);
350 }
Jorim Jaggid4a57442014-04-10 02:45:55 +0200351 for (int i = 0; i < childCount; i++) {
Jorim Jaggibe565df2014-04-28 17:51:23 +0200352 ExpandableView v = (ExpandableView) hostView.getChildAt(i);
Jorim Jaggid4a57442014-04-10 02:45:55 +0200353 if (v.getVisibility() != View.GONE) {
Selim Cinekb5605e52015-02-20 18:21:41 +0100354 if (v instanceof ExpandableNotificationRow) {
355 ExpandableNotificationRow row = (ExpandableNotificationRow) v;
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700356 if (row.isHeadsUp()) {
357 continue;
358 }
359 notGoneIndex = updateNotGoneIndex(resultState, state, notGoneIndex, v);
360
361 // handle the notgoneIndex for the children as well
Selim Cinekb5605e52015-02-20 18:21:41 +0100362 List<ExpandableNotificationRow> children =
363 row.getNotificationChildren();
364 if (row.areChildrenExpanded() && children != null) {
365 for (ExpandableNotificationRow childRow : children) {
366 if (childRow.getVisibility() != View.GONE) {
367 StackViewState childState
368 = resultState.getViewStateForView(childRow);
369 childState.notGoneIndex = notGoneIndex;
370 notGoneIndex++;
371 }
372 }
373 }
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700374 } else {
375 notGoneIndex = updateNotGoneIndex(resultState, state, notGoneIndex, v);
Selim Cinekb5605e52015-02-20 18:21:41 +0100376 }
Jorim Jaggid4a57442014-04-10 02:45:55 +0200377 }
378 }
379 }
380
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700381 private int updateNotGoneIndex(StackScrollState resultState,
382 StackScrollAlgorithmState state, int notGoneIndex,
383 ExpandableView v) {
384 StackViewState viewState = resultState.getViewStateForView(v);
385 viewState.notGoneIndex = notGoneIndex;
386 state.visibleChildren.add(v);
387 notGoneIndex++;
388 return notGoneIndex;
389 }
390
Jorim Jaggid4a57442014-04-10 02:45:55 +0200391 /**
Selim Cinek67b22602014-03-10 15:40:16 +0100392 * Determine the positions for the views. This is the main part of the algorithm.
393 *
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700394 * @param resultState The result state to update if a change to the properties of a child occurs
Selim Cinek67b22602014-03-10 15:40:16 +0100395 * @param algorithmState The state in which the current pass of the algorithm is currently in
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700396 * @param ambientState The current ambient state
Selim Cinek67b22602014-03-10 15:40:16 +0100397 */
398 private void updatePositionsForState(StackScrollState resultState,
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700399 StackScrollAlgorithmState algorithmState, AmbientState ambientState) {
Selim Cinek67b22602014-03-10 15:40:16 +0100400
Selim Cinek1685e632014-04-08 02:27:49 +0200401 // The starting position of the bottom stack peek
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700402 float bottomPeekStart = ambientState.getInnerHeight() - mBottomStackPeekSize;
Selim Cinek1685e632014-04-08 02:27:49 +0200403
Selim Cinek67b22602014-03-10 15:40:16 +0100404 // The position where the bottom stack starts.
Selim Cinek34c0a8d2014-05-12 00:01:43 +0200405 float bottomStackStart = bottomPeekStart - mBottomStackSlowDownLength;
Selim Cinek67b22602014-03-10 15:40:16 +0100406
407 // The y coordinate of the current child.
408 float currentYPosition = 0.0f;
409
410 // How far in is the element currently transitioning into the bottom stack.
411 float yPositionInScrollView = 0.0f;
412
Selim Cineka59ecc32015-04-07 10:51:49 -0700413 // If we have a heads-up higher than the collapsed height we need to add the difference to
414 // the padding of all other elements, i.e push in the top stack slightly.
415 ExpandableNotificationRow topHeadsUpEntry = ambientState.getTopHeadsUpEntry();
416
Jorim Jaggid4a57442014-04-10 02:45:55 +0200417 int childCount = algorithmState.visibleChildren.size();
Selim Cinek67b22602014-03-10 15:40:16 +0100418 int numberOfElementsCompletelyIn = (int) algorithmState.itemsInTopStack;
419 for (int i = 0; i < childCount; i++) {
Jorim Jaggibe565df2014-04-28 17:51:23 +0200420 ExpandableView child = algorithmState.visibleChildren.get(i);
Selim Cinekb036ca42015-02-20 15:56:28 +0100421 StackViewState childViewState = resultState.getViewStateForView(child);
422 childViewState.location = StackViewState.LOCATION_UNKNOWN;
Selim Cineka59ecc32015-04-07 10:51:49 -0700423 int childHeight = getMaxAllowedChildHeight(child, ambientState);
Selim Cinek67b22602014-03-10 15:40:16 +0100424 float yPositionInScrollViewAfterElement = yPositionInScrollView
425 + childHeight
426 + mPaddingBetweenElements;
Selim Cinek343e6e22014-04-11 21:23:30 +0200427 float scrollOffset = yPositionInScrollView - algorithmState.scrollY + mCollapsedSize;
428
429 if (i == algorithmState.lastTopStackIndex + 1) {
430 // Normally the position of this child is the position in the regular scrollview,
431 // but if the two stacks are very close to each other,
432 // then have have to push it even more upwards to the position of the bottom
433 // stack start.
434 currentYPosition = Math.min(scrollOffset, bottomStackStart);
435 }
436 childViewState.yTranslation = currentYPosition;
437
438 // The y position after this element
439 float nextYPosition = currentYPosition + childHeight +
440 mPaddingBetweenElements;
441
442 if (i <= algorithmState.lastTopStackIndex) {
Selim Cinek67b22602014-03-10 15:40:16 +0100443 // Case 1:
444 // We are in the top Stack
Selim Cinek343e6e22014-04-11 21:23:30 +0200445 updateStateForTopStackChild(algorithmState,
446 numberOfElementsCompletelyIn, i, childHeight, childViewState, scrollOffset);
Selim Cinek3afd00e2014-08-11 22:32:57 +0200447 clampPositionToTopStackEnd(childViewState, childHeight);
448
Selim Cinek343e6e22014-04-11 21:23:30 +0200449 // check if we are overlapping with the bottom stack
450 if (childViewState.yTranslation + childHeight + mPaddingBetweenElements
Selim Cinek4581cf82014-08-12 12:40:32 +0200451 >= bottomStackStart && !mIsExpansionChanging && i != 0 && mIsSmallScreen) {
Selim Cinek3afd00e2014-08-11 22:32:57 +0200452 // we just collapse this element slightly
453 int newSize = (int) Math.max(bottomStackStart - mPaddingBetweenElements -
454 childViewState.yTranslation, mCollapsedSize);
455 childViewState.height = newSize;
Selim Cinek4581cf82014-08-12 12:40:32 +0200456 updateStateForChildTransitioningInBottom(algorithmState, bottomStackStart,
457 bottomPeekStart, childViewState.yTranslation, childViewState,
458 childHeight);
Selim Cinek343e6e22014-04-11 21:23:30 +0200459 }
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700460 clampPositionToBottomStackStart(childViewState, childViewState.height,
461 ambientState);
Selim Cinek343e6e22014-04-11 21:23:30 +0200462 } else if (nextYPosition >= bottomStackStart) {
Selim Cinek67b22602014-03-10 15:40:16 +0100463 // Case 2:
Selim Cinek343e6e22014-04-11 21:23:30 +0200464 // We are in the bottom stack.
465 if (currentYPosition >= bottomStackStart) {
Selim Cinek67b22602014-03-10 15:40:16 +0100466 // According to the regular scroll view we are fully translated out of the
467 // bottom of the screen so we are fully in the bottom stack
Selim Cinek343e6e22014-04-11 21:23:30 +0200468 updateStateForChildFullyInBottomStack(algorithmState,
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700469 bottomStackStart, childViewState, childHeight, ambientState);
Selim Cinek67b22602014-03-10 15:40:16 +0100470 } else {
Selim Cinek67b22602014-03-10 15:40:16 +0100471 // According to the regular scroll view we are currently translating out of /
472 // into the bottom of the screen
Selim Cinek343e6e22014-04-11 21:23:30 +0200473 updateStateForChildTransitioningInBottom(algorithmState,
474 bottomStackStart, bottomPeekStart, currentYPosition,
475 childViewState, childHeight);
Selim Cinek67b22602014-03-10 15:40:16 +0100476 }
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200477 } else {
Selim Cinek343e6e22014-04-11 21:23:30 +0200478 // Case 3:
479 // We are in the regular scroll area.
Selim Cinekb036ca42015-02-20 15:56:28 +0100480 childViewState.location = StackViewState.LOCATION_MAIN_AREA;
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700481 clampYTranslation(childViewState, childHeight, ambientState);
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200482 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200483
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200484 // The first card is always rendered.
485 if (i == 0) {
486 childViewState.alpha = 1.0f;
Selim Cinek8d9ff9c2014-05-12 15:13:04 +0200487 childViewState.yTranslation = Math.max(mCollapsedSize - algorithmState.scrollY, 0);
Selim Cinekd83771e2014-07-04 16:45:31 +0200488 if (childViewState.yTranslation + childViewState.height
489 > bottomPeekStart - mCollapseSecondCardPadding) {
Selim Cinek4fe3e472014-07-03 16:32:54 +0200490 childViewState.height = (int) Math.max(
Selim Cinekd83771e2014-07-04 16:45:31 +0200491 bottomPeekStart - mCollapseSecondCardPadding
492 - childViewState.yTranslation, mCollapsedSize);
Selim Cinek4fe3e472014-07-03 16:32:54 +0200493 }
Selim Cinekb036ca42015-02-20 15:56:28 +0100494 childViewState.location = StackViewState.LOCATION_FIRST_CARD;
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200495 }
Selim Cinekb036ca42015-02-20 15:56:28 +0100496 if (childViewState.location == StackViewState.LOCATION_UNKNOWN) {
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200497 Log.wtf(LOG_TAG, "Failed to assign location for child " + i);
Selim Cinek67b22602014-03-10 15:40:16 +0100498 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200499 currentYPosition = childViewState.yTranslation + childHeight + mPaddingBetweenElements;
Selim Cinek67b22602014-03-10 15:40:16 +0100500 yPositionInScrollView = yPositionInScrollViewAfterElement;
Jorim Jaggi8c1a44b2014-04-29 19:04:02 +0200501
Selim Cineka59ecc32015-04-07 10:51:49 -0700502 if (ambientState.isShadeExpanded() && topHeadsUpEntry != null
503 && child != topHeadsUpEntry) {
504 childViewState.yTranslation += topHeadsUpEntry.getHeadsUpHeight() - mCollapsedSize;
505 }
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700506 childViewState.yTranslation += ambientState.getTopPadding()
Selim Cineka59ecc32015-04-07 10:51:49 -0700507 + ambientState.getStackTranslation();
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700508 }
Selim Cineka59ecc32015-04-07 10:51:49 -0700509 updateHeadsUpStates(resultState, algorithmState, ambientState);
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700510 }
511
512 private void updateHeadsUpStates(StackScrollState resultState,
513 StackScrollAlgorithmState algorithmState, AmbientState ambientState) {
Selim Cineka59ecc32015-04-07 10:51:49 -0700514 TreeSet<HeadsUpManager.HeadsUpEntry> headsUpEntries = ambientState.getSortedHeadsUpEntries();
515 for (HeadsUpManager.HeadsUpEntry entry: headsUpEntries) {
516 ExpandableNotificationRow row = entry.entry.row;
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700517 StackViewState childState = resultState.getViewStateForView(row);
518 if (!row.isInShade()) {
Selim Cineka59ecc32015-04-07 10:51:49 -0700519 childState.yTranslation = 0;
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700520 }
521 childState.height = Math.max(childState.height, row.getHeadsUpHeight());
Selim Cineka59ecc32015-04-07 10:51:49 -0700522
523 // Ensure that the heads up is always visible even when scrolled of from the bottom
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700524 childState.yTranslation = Math.min(childState.yTranslation,
525 ambientState.getMaxHeadsUpTranslation() - childState.height);
526 }
Selim Cinek67b22602014-03-10 15:40:16 +0100527 }
528
Selim Cinek1685e632014-04-08 02:27:49 +0200529 /**
Selim Cinek343e6e22014-04-11 21:23:30 +0200530 * Clamp the yTranslation both up and down to valid positions.
Selim Cinek1685e632014-04-08 02:27:49 +0200531 *
Selim Cinek1685e632014-04-08 02:27:49 +0200532 * @param childViewState the view state of the child
Selim Cinek343e6e22014-04-11 21:23:30 +0200533 * @param childHeight the height of this child
Selim Cinek1685e632014-04-08 02:27:49 +0200534 */
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700535 private void clampYTranslation(StackViewState childViewState, int childHeight,
536 AmbientState ambientState) {
537 clampPositionToBottomStackStart(childViewState, childHeight, ambientState);
Selim Cinek343e6e22014-04-11 21:23:30 +0200538 clampPositionToTopStackEnd(childViewState, childHeight);
539 }
540
541 /**
542 * Clamp the yTranslation of the child down such that its end is at most on the beginning of
543 * the bottom stack.
544 *
545 * @param childViewState the view state of the child
546 * @param childHeight the height of this child
547 */
Selim Cinekb036ca42015-02-20 15:56:28 +0100548 private void clampPositionToBottomStackStart(StackViewState childViewState,
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700549 int childHeight, AmbientState ambientState) {
Selim Cinek343e6e22014-04-11 21:23:30 +0200550 childViewState.yTranslation = Math.min(childViewState.yTranslation,
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700551 ambientState.getInnerHeight() - mBottomStackPeekSize - mCollapseSecondCardPadding
552 - childHeight);
Selim Cinek343e6e22014-04-11 21:23:30 +0200553 }
554
555 /**
556 * 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 -0700557 * stack.
Selim Cinek343e6e22014-04-11 21:23:30 +0200558 *
559 * @param childViewState the view state of the child
560 * @param childHeight the height of this child
561 */
Selim Cinekb036ca42015-02-20 15:56:28 +0100562 private void clampPositionToTopStackEnd(StackViewState childViewState,
Selim Cinek343e6e22014-04-11 21:23:30 +0200563 int childHeight) {
564 childViewState.yTranslation = Math.max(childViewState.yTranslation,
565 mCollapsedSize - childHeight);
Selim Cinek1685e632014-04-08 02:27:49 +0200566 }
567
Selim Cineka59ecc32015-04-07 10:51:49 -0700568 private int getMaxAllowedChildHeight(View child, AmbientState ambientState) {
Selim Cinek1685e632014-04-08 02:27:49 +0200569 if (child instanceof ExpandableNotificationRow) {
570 ExpandableNotificationRow row = (ExpandableNotificationRow) child;
Selim Cineka59ecc32015-04-07 10:51:49 -0700571 if (ambientState != null && ambientState.getTopHeadsUpEntry() == child) {
572 return mCollapsedSize;
573 }
Jorim Jaggi9cbadd32014-05-01 20:18:31 +0200574 return row.getIntrinsicHeight();
Jorim Jaggibe565df2014-04-28 17:51:23 +0200575 } else if (child instanceof ExpandableView) {
576 ExpandableView expandableView = (ExpandableView) child;
577 return expandableView.getActualHeight();
Selim Cinek1685e632014-04-08 02:27:49 +0200578 }
Jorim Jaggibe565df2014-04-28 17:51:23 +0200579 return child == null? mCollapsedSize : child.getHeight();
Selim Cinek1685e632014-04-08 02:27:49 +0200580 }
581
Selim Cinek343e6e22014-04-11 21:23:30 +0200582 private void updateStateForChildTransitioningInBottom(StackScrollAlgorithmState algorithmState,
583 float transitioningPositionStart, float bottomPeakStart, float currentYPosition,
Selim Cinekb036ca42015-02-20 15:56:28 +0100584 StackViewState childViewState, int childHeight) {
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200585
Selim Cinek343e6e22014-04-11 21:23:30 +0200586 // This is the transitioning element on top of bottom stack, calculate how far we are in.
587 algorithmState.partialInBottom = 1.0f - (
588 (transitioningPositionStart - currentYPosition) / (childHeight +
589 mPaddingBetweenElements));
590
591 // the offset starting at the transitionPosition of the bottom stack
592 float offset = mBottomStackIndentationFunctor.getValue(algorithmState.partialInBottom);
593 algorithmState.itemsInBottomStack += algorithmState.partialInBottom;
Selim Cinek3afd00e2014-08-11 22:32:57 +0200594 int newHeight = childHeight;
595 if (childHeight > mCollapsedSize && mIsSmallScreen) {
596 newHeight = (int) Math.max(Math.min(transitioningPositionStart + offset -
597 mPaddingBetweenElements - currentYPosition, childHeight), mCollapsedSize);
598 childViewState.height = newHeight;
599 }
600 childViewState.yTranslation = transitioningPositionStart + offset - newHeight
Jorim Jaggife40f7d2014-04-28 15:20:04 +0200601 - mPaddingBetweenElements;
Selim Cinek3afd00e2014-08-11 22:32:57 +0200602
Selim Cinek343e6e22014-04-11 21:23:30 +0200603 // We want at least to be at the end of the top stack when collapsing
Selim Cinek3afd00e2014-08-11 22:32:57 +0200604 clampPositionToTopStackEnd(childViewState, newHeight);
Selim Cinekb036ca42015-02-20 15:56:28 +0100605 childViewState.location = StackViewState.LOCATION_MAIN_AREA;
Selim Cinek67b22602014-03-10 15:40:16 +0100606 }
607
Selim Cinek343e6e22014-04-11 21:23:30 +0200608 private void updateStateForChildFullyInBottomStack(StackScrollAlgorithmState algorithmState,
Selim Cinekb036ca42015-02-20 15:56:28 +0100609 float transitioningPositionStart, StackViewState childViewState,
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700610 int childHeight, AmbientState ambientState) {
Selim Cinek343e6e22014-04-11 21:23:30 +0200611 float currentYPosition;
Selim Cinek67b22602014-03-10 15:40:16 +0100612 algorithmState.itemsInBottomStack += 1.0f;
613 if (algorithmState.itemsInBottomStack < MAX_ITEMS_IN_BOTTOM_STACK) {
614 // We are visually entering the bottom stack
Selim Cinek343e6e22014-04-11 21:23:30 +0200615 currentYPosition = transitioningPositionStart
Jorim Jaggife40f7d2014-04-28 15:20:04 +0200616 + mBottomStackIndentationFunctor.getValue(algorithmState.itemsInBottomStack)
617 - mPaddingBetweenElements;
Selim Cinekb036ca42015-02-20 15:56:28 +0100618 childViewState.location = StackViewState.LOCATION_BOTTOM_STACK_PEEKING;
Selim Cinek67b22602014-03-10 15:40:16 +0100619 } else {
620 // we are fully inside the stack
621 if (algorithmState.itemsInBottomStack > MAX_ITEMS_IN_BOTTOM_STACK + 2) {
622 childViewState.alpha = 0.0f;
623 } else if (algorithmState.itemsInBottomStack
624 > MAX_ITEMS_IN_BOTTOM_STACK + 1) {
625 childViewState.alpha = 1.0f - algorithmState.partialInBottom;
626 }
Selim Cinekb036ca42015-02-20 15:56:28 +0100627 childViewState.location = StackViewState.LOCATION_BOTTOM_STACK_HIDDEN;
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700628 currentYPosition = ambientState.getInnerHeight();
Selim Cinek67b22602014-03-10 15:40:16 +0100629 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200630 childViewState.yTranslation = currentYPosition - childHeight;
631 clampPositionToTopStackEnd(childViewState, childHeight);
Selim Cinek67b22602014-03-10 15:40:16 +0100632 }
633
Selim Cinek343e6e22014-04-11 21:23:30 +0200634 private void updateStateForTopStackChild(StackScrollAlgorithmState algorithmState,
635 int numberOfElementsCompletelyIn, int i, int childHeight,
Selim Cinekb036ca42015-02-20 15:56:28 +0100636 StackViewState childViewState, float scrollOffset) {
Selim Cinek67b22602014-03-10 15:40:16 +0100637
Selim Cinek67b22602014-03-10 15:40:16 +0100638
639 // First we calculate the index relative to the current stack window of size at most
640 // {@link #MAX_ITEMS_IN_TOP_STACK}
Selim Cinek343e6e22014-04-11 21:23:30 +0200641 int paddedIndex = i - 1
Selim Cinek67b22602014-03-10 15:40:16 +0100642 - Math.max(numberOfElementsCompletelyIn - MAX_ITEMS_IN_TOP_STACK, 0);
643 if (paddedIndex >= 0) {
Selim Cinek343e6e22014-04-11 21:23:30 +0200644
Selim Cinek67b22602014-03-10 15:40:16 +0100645 // We are currently visually entering the top stack
Selim Cinekad3e5af2014-07-04 12:24:11 +0200646 float distanceToStack = (childHeight + mPaddingBetweenElements)
647 - algorithmState.scrolledPixelsTop;
648 if (i == algorithmState.lastTopStackIndex
649 && distanceToStack > (mTopStackTotalSize + mPaddingBetweenElements)) {
Selim Cinek343e6e22014-04-11 21:23:30 +0200650
651 // Child is currently translating into stack but not yet inside slow down zone.
652 // Handle it like the regular scrollview.
653 childViewState.yTranslation = scrollOffset;
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200654 } else {
Selim Cinek343e6e22014-04-11 21:23:30 +0200655 // Apply stacking logic.
656 float numItemsBefore;
657 if (i == algorithmState.lastTopStackIndex) {
Selim Cinekad3e5af2014-07-04 12:24:11 +0200658 numItemsBefore = 1.0f
659 - (distanceToStack / (mTopStackTotalSize + mPaddingBetweenElements));
Selim Cinek343e6e22014-04-11 21:23:30 +0200660 } else {
661 numItemsBefore = algorithmState.itemsInTopStack - i;
662 }
663 // The end position of the current child
Selim Cinekad3e5af2014-07-04 12:24:11 +0200664 float currentChildEndY = mCollapsedSize + mTopStackTotalSize
665 - mTopStackIndentationFunctor.getValue(numItemsBefore);
Selim Cinek343e6e22014-04-11 21:23:30 +0200666 childViewState.yTranslation = currentChildEndY - childHeight;
Selim Cinek67b22602014-03-10 15:40:16 +0100667 }
Selim Cinekb036ca42015-02-20 15:56:28 +0100668 childViewState.location = StackViewState.LOCATION_TOP_STACK_PEEKING;
Selim Cinek67b22602014-03-10 15:40:16 +0100669 } else {
Selim Cinek343e6e22014-04-11 21:23:30 +0200670 if (paddedIndex == -1) {
671 childViewState.alpha = 1.0f - algorithmState.partialInTop;
672 } else {
673 // We are hidden behind the top card and faded out, so we can hide ourselves.
674 childViewState.alpha = 0.0f;
675 }
676 childViewState.yTranslation = mCollapsedSize - childHeight;
Selim Cinekb036ca42015-02-20 15:56:28 +0100677 childViewState.location = StackViewState.LOCATION_TOP_STACK_HIDDEN;
Selim Cinek67b22602014-03-10 15:40:16 +0100678 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200679
680
Selim Cinek67b22602014-03-10 15:40:16 +0100681 }
682
683 /**
684 * Find the number of items in the top stack and update the result state if needed.
685 *
686 * @param resultState The result state to update if a height change of an child occurs
687 * @param algorithmState The state in which the current pass of the algorithm is currently in
Selim Cinek67b22602014-03-10 15:40:16 +0100688 */
689 private void findNumberOfItemsInTopStackAndUpdateState(StackScrollState resultState,
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700690 StackScrollAlgorithmState algorithmState, AmbientState ambientState) {
Selim Cinek67b22602014-03-10 15:40:16 +0100691
692 // The y Position if the element would be in a regular scrollView
693 float yPositionInScrollView = 0.0f;
Jorim Jaggid4a57442014-04-10 02:45:55 +0200694 int childCount = algorithmState.visibleChildren.size();
Selim Cinek67b22602014-03-10 15:40:16 +0100695
696 // find the number of elements in the top stack.
697 for (int i = 0; i < childCount; i++) {
Jorim Jaggibe565df2014-04-28 17:51:23 +0200698 ExpandableView child = algorithmState.visibleChildren.get(i);
Selim Cinekb036ca42015-02-20 15:56:28 +0100699 StackViewState childViewState = resultState.getViewStateForView(child);
Selim Cineka59ecc32015-04-07 10:51:49 -0700700 int childHeight = getMaxAllowedChildHeight(child, ambientState);
Selim Cinek67b22602014-03-10 15:40:16 +0100701 float yPositionInScrollViewAfterElement = yPositionInScrollView
702 + childHeight
703 + mPaddingBetweenElements;
704 if (yPositionInScrollView < algorithmState.scrollY) {
Selim Cinek8d9ff9c2014-05-12 15:13:04 +0200705 if (i == 0 && algorithmState.scrollY <= mCollapsedSize) {
Selim Cinek343e6e22014-04-11 21:23:30 +0200706
707 // The starting position of the bottom stack peek
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700708 int bottomPeekStart = ambientState.getInnerHeight() - mBottomStackPeekSize -
Selim Cinekd83771e2014-07-04 16:45:31 +0200709 mCollapseSecondCardPadding;
Selim Cinek343e6e22014-04-11 21:23:30 +0200710 // Collapse and expand the first child while the shade is being expanded
711 float maxHeight = mIsExpansionChanging && child == mFirstChildWhileExpanding
712 ? mFirstChildMaxHeight
713 : childHeight;
714 childViewState.height = (int) Math.max(Math.min(bottomPeekStart, maxHeight),
715 mCollapsedSize);
716 algorithmState.itemsInTopStack = 1.0f;
717
718 } else if (yPositionInScrollViewAfterElement < algorithmState.scrollY) {
Selim Cinek67b22602014-03-10 15:40:16 +0100719 // According to the regular scroll view we are fully off screen
720 algorithmState.itemsInTopStack += 1.0f;
Selim Cinek343e6e22014-04-11 21:23:30 +0200721 if (i == 0) {
Selim Cinek67b22602014-03-10 15:40:16 +0100722 childViewState.height = mCollapsedSize;
723 }
724 } else {
725 // According to the regular scroll view we are partially off screen
Selim Cinek343e6e22014-04-11 21:23:30 +0200726
Selim Cinek67b22602014-03-10 15:40:16 +0100727 // How much did we scroll into this child
Selim Cinekad3e5af2014-07-04 12:24:11 +0200728 algorithmState.scrolledPixelsTop = algorithmState.scrollY
729 - yPositionInScrollView;
Selim Cinek343e6e22014-04-11 21:23:30 +0200730 algorithmState.partialInTop = (algorithmState.scrolledPixelsTop) / (childHeight
Selim Cinek67b22602014-03-10 15:40:16 +0100731 + mPaddingBetweenElements);
732
733 // Our element can be expanded, so this can get negative
734 algorithmState.partialInTop = Math.max(0.0f, algorithmState.partialInTop);
735 algorithmState.itemsInTopStack += algorithmState.partialInTop;
Selim Cinekad3e5af2014-07-04 12:24:11 +0200736
Selim Cinek343e6e22014-04-11 21:23:30 +0200737 if (i == 0) {
Selim Cinekad3e5af2014-07-04 12:24:11 +0200738 // If it is expanded we have to collapse it to a new size
739 float newSize = yPositionInScrollViewAfterElement
740 - mPaddingBetweenElements
741 - algorithmState.scrollY + mCollapsedSize;
742 newSize = Math.max(mCollapsedSize, newSize);
Selim Cinek4e456be2014-06-12 18:09:43 +0200743 algorithmState.itemsInTopStack = 1.0f;
Selim Cinek67b22602014-03-10 15:40:16 +0100744 childViewState.height = (int) newSize;
Selim Cinek67b22602014-03-10 15:40:16 +0100745 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200746 algorithmState.lastTopStackIndex = i;
747 break;
Selim Cinek67b22602014-03-10 15:40:16 +0100748 }
749 } else {
Selim Cinek343e6e22014-04-11 21:23:30 +0200750 algorithmState.lastTopStackIndex = i - 1;
Selim Cinek67b22602014-03-10 15:40:16 +0100751 // We are already past the stack so we can end the loop
752 break;
753 }
754 yPositionInScrollView = yPositionInScrollViewAfterElement;
755 }
756 }
757
758 /**
759 * Calculate the Z positions for all children based on the number of items in both stacks and
760 * save it in the resultState
761 *
762 * @param resultState The result state to update the zTranslation values
763 * @param algorithmState The state in which the current pass of the algorithm is currently in
764 */
765 private void updateZValuesForState(StackScrollState resultState,
766 StackScrollAlgorithmState algorithmState) {
Jorim Jaggid4a57442014-04-10 02:45:55 +0200767 int childCount = algorithmState.visibleChildren.size();
Selim Cinek67b22602014-03-10 15:40:16 +0100768 for (int i = 0; i < childCount; i++) {
Jorim Jaggid4a57442014-04-10 02:45:55 +0200769 View child = algorithmState.visibleChildren.get(i);
Selim Cinekb036ca42015-02-20 15:56:28 +0100770 StackViewState childViewState = resultState.getViewStateForView(child);
Selim Cinek67b22602014-03-10 15:40:16 +0100771 if (i < algorithmState.itemsInTopStack) {
772 float stackIndex = algorithmState.itemsInTopStack - i;
Selim Cinekc5baa3e2014-10-29 19:04:19 +0100773
774 // Ensure that the topmost item is a little bit higher than the rest when fully
775 // scrolled, to avoid drawing errors when swiping it out
776 float max = MAX_ITEMS_IN_TOP_STACK + (i == 0 ? 2.5f : 2);
777 stackIndex = Math.min(stackIndex, max);
Selim Cinek4e456be2014-06-12 18:09:43 +0200778 if (i == 0 && algorithmState.itemsInTopStack < 2.0f) {
779
780 // We only have the top item and an additional item in the top stack,
781 // Interpolate the index from 0 to 2 while the second item is
782 // translating in.
783 stackIndex -= 1.0f;
784 if (algorithmState.scrollY > mCollapsedSize) {
785
786 // Since there is a shadow treshhold, we cant just interpolate from 0 to
787 // 2 but we interpolate from 0.1f to 2.0f when scrolled in. The jump in
788 // height will not be noticable since we have padding in between.
789 stackIndex = 0.1f + stackIndex * 1.9f;
790 }
791 }
Selim Cinek67b22602014-03-10 15:40:16 +0100792 childViewState.zTranslation = mZBasicHeight
793 + stackIndex * mZDistanceBetweenElements;
794 } else if (i > (childCount - 1 - algorithmState.itemsInBottomStack)) {
795 float numItemsAbove = i - (childCount - 1 - algorithmState.itemsInBottomStack);
796 float translationZ = mZBasicHeight
797 - numItemsAbove * mZDistanceBetweenElements;
798 childViewState.zTranslation = translationZ;
799 } else {
800 childViewState.zTranslation = mZBasicHeight;
801 }
802 }
803 }
804
Selim Cinek3afd00e2014-08-11 22:32:57 +0200805 /**
806 * Update whether the device is very small, i.e. Notifications can be in both the top and the
807 * bottom stack at the same time
808 *
809 * @param panelHeight The normal height of the panel when it's open
810 */
811 public void updateIsSmallScreen(int panelHeight) {
812 mIsSmallScreen = panelHeight <
813 mCollapsedSize /* top stack */
814 + mBottomStackSlowDownLength + mBottomStackPeekSize /* bottom stack */
815 + mMaxNotificationHeight; /* max notification height */
816 }
817
Selim Cinek1685e632014-04-08 02:27:49 +0200818 public void onExpansionStarted(StackScrollState currentState) {
819 mIsExpansionChanging = true;
820 mExpandedOnStart = mIsExpanded;
821 ViewGroup hostView = currentState.getHostView();
822 updateFirstChildHeightWhileExpanding(hostView);
823 }
824
825 private void updateFirstChildHeightWhileExpanding(ViewGroup hostView) {
Jorim Jaggibe565df2014-04-28 17:51:23 +0200826 mFirstChildWhileExpanding = (ExpandableView) findFirstVisibleChild(hostView);
Jorim Jaggi9f347ae2014-04-11 00:47:18 +0200827 if (mFirstChildWhileExpanding != null) {
Selim Cinek1685e632014-04-08 02:27:49 +0200828 if (mExpandedOnStart) {
829
830 // We are collapsing the shade, so the first child can get as most as high as the
Selim Cinek02af41e2014-10-14 15:46:43 +0200831 // current height or the end value of the animation.
832 mFirstChildMaxHeight = StackStateAnimator.getFinalActualHeight(
833 mFirstChildWhileExpanding);
Selim Cinek1685e632014-04-08 02:27:49 +0200834 } else {
Selim Cinek31094df2014-08-14 19:28:15 +0200835 updateFirstChildMaxSizeToMaxHeight();
Selim Cinek1685e632014-04-08 02:27:49 +0200836 }
837 } else {
Selim Cinek1685e632014-04-08 02:27:49 +0200838 mFirstChildMaxHeight = 0;
839 }
840 }
841
Selim Cinek31094df2014-08-14 19:28:15 +0200842 private void updateFirstChildMaxSizeToMaxHeight() {
843 // We are expanding the shade, expand it to its full height.
844 if (!isMaxSizeInitialized(mFirstChildWhileExpanding)) {
845
846 // This child was not layouted yet, wait for a layout pass
847 mFirstChildWhileExpanding
848 .addOnLayoutChangeListener(new View.OnLayoutChangeListener() {
849 @Override
850 public void onLayoutChange(View v, int left, int top, int right,
851 int bottom, int oldLeft, int oldTop, int oldRight,
852 int oldBottom) {
853 if (mFirstChildWhileExpanding != null) {
854 mFirstChildMaxHeight = getMaxAllowedChildHeight(
Selim Cineka59ecc32015-04-07 10:51:49 -0700855 mFirstChildWhileExpanding, null);
Selim Cinek31094df2014-08-14 19:28:15 +0200856 } else {
857 mFirstChildMaxHeight = 0;
858 }
859 v.removeOnLayoutChangeListener(this);
860 }
861 });
862 } else {
Selim Cineka59ecc32015-04-07 10:51:49 -0700863 mFirstChildMaxHeight = getMaxAllowedChildHeight(mFirstChildWhileExpanding, null);
Selim Cinek31094df2014-08-14 19:28:15 +0200864 }
865 }
866
Selim Cinek7d447722014-06-10 15:51:59 +0200867 private boolean isMaxSizeInitialized(ExpandableView child) {
868 if (child instanceof ExpandableNotificationRow) {
869 ExpandableNotificationRow row = (ExpandableNotificationRow) child;
Selim Cinek31094df2014-08-14 19:28:15 +0200870 return row.isMaxExpandHeightInitialized();
Selim Cinek7d447722014-06-10 15:51:59 +0200871 }
872 return child == null || child.getWidth() != 0;
873 }
874
Jorim Jaggi9f347ae2014-04-11 00:47:18 +0200875 private View findFirstVisibleChild(ViewGroup container) {
876 int childCount = container.getChildCount();
877 for (int i = 0; i < childCount; i++) {
878 View child = container.getChildAt(i);
879 if (child.getVisibility() != View.GONE) {
880 return child;
881 }
882 }
883 return null;
884 }
885
Selim Cinek1685e632014-04-08 02:27:49 +0200886 public void onExpansionStopped() {
887 mIsExpansionChanging = false;
888 mFirstChildWhileExpanding = null;
889 }
890
891 public void setIsExpanded(boolean isExpanded) {
892 this.mIsExpanded = isExpanded;
893 }
894
Selim Cinek02af41e2014-10-14 15:46:43 +0200895 public void notifyChildrenChanged(final ViewGroup hostView) {
Selim Cinek1685e632014-04-08 02:27:49 +0200896 if (mIsExpansionChanging) {
Selim Cinek02af41e2014-10-14 15:46:43 +0200897 hostView.post(new Runnable() {
898 @Override
899 public void run() {
900 updateFirstChildHeightWhileExpanding(hostView);
901 }
902 });
Selim Cinek1685e632014-04-08 02:27:49 +0200903 }
904 }
905
Selim Cinek34c0a8d2014-05-12 00:01:43 +0200906 public void setDimmed(boolean dimmed) {
907 updatePadding(dimmed);
908 }
909
Selim Cinek31094df2014-08-14 19:28:15 +0200910 public void onReset(ExpandableView view) {
911 if (view.equals(mFirstChildWhileExpanding)) {
912 updateFirstChildMaxSizeToMaxHeight();
913 }
914 }
915
Selim Cinek67b22602014-03-10 15:40:16 +0100916 class StackScrollAlgorithmState {
917
918 /**
919 * The scroll position of the algorithm
920 */
921 public int scrollY;
922
923 /**
924 * The quantity of items which are in the top stack.
925 */
926 public float itemsInTopStack;
927
928 /**
929 * how far in is the element currently transitioning into the top stack
930 */
931 public float partialInTop;
932
933 /**
Selim Cinek343e6e22014-04-11 21:23:30 +0200934 * The number of pixels the last child in the top stack has scrolled in to the stack
935 */
936 public float scrolledPixelsTop;
937
938 /**
Selim Cinek67b22602014-03-10 15:40:16 +0100939 * The last item index which is in the top stack.
Selim Cinek67b22602014-03-10 15:40:16 +0100940 */
941 public int lastTopStackIndex;
942
943 /**
944 * The quantity of items which are in the bottom stack.
945 */
946 public float itemsInBottomStack;
947
948 /**
949 * how far in is the element currently transitioning into the bottom stack
950 */
951 public float partialInBottom;
Jorim Jaggid4a57442014-04-10 02:45:55 +0200952
953 /**
954 * The children from the host view which are not gone.
955 */
Jorim Jaggibe565df2014-04-28 17:51:23 +0200956 public final ArrayList<ExpandableView> visibleChildren = new ArrayList<ExpandableView>();
Selim Cinek67b22602014-03-10 15:40:16 +0100957 }
958
959}