blob: 1e3d6e6e9ad07ce6fbae171f7f46e2317de2057f [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 Cinek8d490d42015-04-10 00:05:50 -0700509 updateHeadsUpStates(resultState, ambientState);
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700510 }
511
Selim Cinek8d490d42015-04-10 00:05:50 -0700512 private void updateHeadsUpStates(StackScrollState resultState, AmbientState ambientState) {
Selim Cineka59ecc32015-04-07 10:51:49 -0700513 TreeSet<HeadsUpManager.HeadsUpEntry> headsUpEntries = ambientState.getSortedHeadsUpEntries();
514 for (HeadsUpManager.HeadsUpEntry entry: headsUpEntries) {
515 ExpandableNotificationRow row = entry.entry.row;
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700516 StackViewState childState = resultState.getViewStateForView(row);
517 if (!row.isInShade()) {
Selim Cineka59ecc32015-04-07 10:51:49 -0700518 childState.yTranslation = 0;
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700519 }
Selim Cinek8d490d42015-04-10 00:05:50 -0700520 if (ambientState.getTopHeadsUpEntry() == row) {
521 childState.height += row.getHeadsUpHeight() - mCollapsedSize;
522 }
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700523 childState.height = Math.max(childState.height, row.getHeadsUpHeight());
Selim Cineka59ecc32015-04-07 10:51:49 -0700524
525 // Ensure that the heads up is always visible even when scrolled of from the bottom
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700526 childState.yTranslation = Math.min(childState.yTranslation,
527 ambientState.getMaxHeadsUpTranslation() - childState.height);
528 }
Selim Cinek67b22602014-03-10 15:40:16 +0100529 }
530
Selim Cinek1685e632014-04-08 02:27:49 +0200531 /**
Selim Cinek343e6e22014-04-11 21:23:30 +0200532 * Clamp the yTranslation both up and down to valid positions.
Selim Cinek1685e632014-04-08 02:27:49 +0200533 *
Selim Cinek1685e632014-04-08 02:27:49 +0200534 * @param childViewState the view state of the child
Selim Cinek343e6e22014-04-11 21:23:30 +0200535 * @param childHeight the height of this child
Selim Cinek1685e632014-04-08 02:27:49 +0200536 */
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700537 private void clampYTranslation(StackViewState childViewState, int childHeight,
538 AmbientState ambientState) {
539 clampPositionToBottomStackStart(childViewState, childHeight, ambientState);
Selim Cinek343e6e22014-04-11 21:23:30 +0200540 clampPositionToTopStackEnd(childViewState, childHeight);
541 }
542
543 /**
544 * Clamp the yTranslation of the child down such that its end is at most on the beginning of
545 * the bottom stack.
546 *
547 * @param childViewState the view state of the child
548 * @param childHeight the height of this child
549 */
Selim Cinekb036ca42015-02-20 15:56:28 +0100550 private void clampPositionToBottomStackStart(StackViewState childViewState,
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700551 int childHeight, AmbientState ambientState) {
Selim Cinek343e6e22014-04-11 21:23:30 +0200552 childViewState.yTranslation = Math.min(childViewState.yTranslation,
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700553 ambientState.getInnerHeight() - mBottomStackPeekSize - mCollapseSecondCardPadding
554 - childHeight);
Selim Cinek343e6e22014-04-11 21:23:30 +0200555 }
556
557 /**
558 * 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 -0700559 * stack.
Selim Cinek343e6e22014-04-11 21:23:30 +0200560 *
561 * @param childViewState the view state of the child
562 * @param childHeight the height of this child
563 */
Selim Cinekb036ca42015-02-20 15:56:28 +0100564 private void clampPositionToTopStackEnd(StackViewState childViewState,
Selim Cinek343e6e22014-04-11 21:23:30 +0200565 int childHeight) {
566 childViewState.yTranslation = Math.max(childViewState.yTranslation,
567 mCollapsedSize - childHeight);
Selim Cinek1685e632014-04-08 02:27:49 +0200568 }
569
Selim Cineka59ecc32015-04-07 10:51:49 -0700570 private int getMaxAllowedChildHeight(View child, AmbientState ambientState) {
Selim Cinek1685e632014-04-08 02:27:49 +0200571 if (child instanceof ExpandableNotificationRow) {
572 ExpandableNotificationRow row = (ExpandableNotificationRow) child;
Selim Cineka59ecc32015-04-07 10:51:49 -0700573 if (ambientState != null && ambientState.getTopHeadsUpEntry() == child) {
Selim Cinek8d490d42015-04-10 00:05:50 -0700574 int extraSize = row.getIntrinsicHeight() - row.getHeadsUpHeight();
575 return mCollapsedSize + extraSize;
Selim Cineka59ecc32015-04-07 10:51:49 -0700576 }
Jorim Jaggi9cbadd32014-05-01 20:18:31 +0200577 return row.getIntrinsicHeight();
Jorim Jaggibe565df2014-04-28 17:51:23 +0200578 } else if (child instanceof ExpandableView) {
579 ExpandableView expandableView = (ExpandableView) child;
580 return expandableView.getActualHeight();
Selim Cinek1685e632014-04-08 02:27:49 +0200581 }
Jorim Jaggibe565df2014-04-28 17:51:23 +0200582 return child == null? mCollapsedSize : child.getHeight();
Selim Cinek1685e632014-04-08 02:27:49 +0200583 }
584
Selim Cinek343e6e22014-04-11 21:23:30 +0200585 private void updateStateForChildTransitioningInBottom(StackScrollAlgorithmState algorithmState,
586 float transitioningPositionStart, float bottomPeakStart, float currentYPosition,
Selim Cinekb036ca42015-02-20 15:56:28 +0100587 StackViewState childViewState, int childHeight) {
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200588
Selim Cinek343e6e22014-04-11 21:23:30 +0200589 // This is the transitioning element on top of bottom stack, calculate how far we are in.
590 algorithmState.partialInBottom = 1.0f - (
591 (transitioningPositionStart - currentYPosition) / (childHeight +
592 mPaddingBetweenElements));
593
594 // the offset starting at the transitionPosition of the bottom stack
595 float offset = mBottomStackIndentationFunctor.getValue(algorithmState.partialInBottom);
596 algorithmState.itemsInBottomStack += algorithmState.partialInBottom;
Selim Cinek3afd00e2014-08-11 22:32:57 +0200597 int newHeight = childHeight;
598 if (childHeight > mCollapsedSize && mIsSmallScreen) {
599 newHeight = (int) Math.max(Math.min(transitioningPositionStart + offset -
600 mPaddingBetweenElements - currentYPosition, childHeight), mCollapsedSize);
601 childViewState.height = newHeight;
602 }
603 childViewState.yTranslation = transitioningPositionStart + offset - newHeight
Jorim Jaggife40f7d2014-04-28 15:20:04 +0200604 - mPaddingBetweenElements;
Selim Cinek3afd00e2014-08-11 22:32:57 +0200605
Selim Cinek343e6e22014-04-11 21:23:30 +0200606 // We want at least to be at the end of the top stack when collapsing
Selim Cinek3afd00e2014-08-11 22:32:57 +0200607 clampPositionToTopStackEnd(childViewState, newHeight);
Selim Cinekb036ca42015-02-20 15:56:28 +0100608 childViewState.location = StackViewState.LOCATION_MAIN_AREA;
Selim Cinek67b22602014-03-10 15:40:16 +0100609 }
610
Selim Cinek343e6e22014-04-11 21:23:30 +0200611 private void updateStateForChildFullyInBottomStack(StackScrollAlgorithmState algorithmState,
Selim Cinekb036ca42015-02-20 15:56:28 +0100612 float transitioningPositionStart, StackViewState childViewState,
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700613 int childHeight, AmbientState ambientState) {
Selim Cinek343e6e22014-04-11 21:23:30 +0200614 float currentYPosition;
Selim Cinek67b22602014-03-10 15:40:16 +0100615 algorithmState.itemsInBottomStack += 1.0f;
616 if (algorithmState.itemsInBottomStack < MAX_ITEMS_IN_BOTTOM_STACK) {
617 // We are visually entering the bottom stack
Selim Cinek343e6e22014-04-11 21:23:30 +0200618 currentYPosition = transitioningPositionStart
Jorim Jaggife40f7d2014-04-28 15:20:04 +0200619 + mBottomStackIndentationFunctor.getValue(algorithmState.itemsInBottomStack)
620 - mPaddingBetweenElements;
Selim Cinekb036ca42015-02-20 15:56:28 +0100621 childViewState.location = StackViewState.LOCATION_BOTTOM_STACK_PEEKING;
Selim Cinek67b22602014-03-10 15:40:16 +0100622 } else {
623 // we are fully inside the stack
624 if (algorithmState.itemsInBottomStack > MAX_ITEMS_IN_BOTTOM_STACK + 2) {
625 childViewState.alpha = 0.0f;
626 } else if (algorithmState.itemsInBottomStack
627 > MAX_ITEMS_IN_BOTTOM_STACK + 1) {
628 childViewState.alpha = 1.0f - algorithmState.partialInBottom;
629 }
Selim Cinekb036ca42015-02-20 15:56:28 +0100630 childViewState.location = StackViewState.LOCATION_BOTTOM_STACK_HIDDEN;
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700631 currentYPosition = ambientState.getInnerHeight();
Selim Cinek67b22602014-03-10 15:40:16 +0100632 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200633 childViewState.yTranslation = currentYPosition - childHeight;
634 clampPositionToTopStackEnd(childViewState, childHeight);
Selim Cinek67b22602014-03-10 15:40:16 +0100635 }
636
Selim Cinek343e6e22014-04-11 21:23:30 +0200637 private void updateStateForTopStackChild(StackScrollAlgorithmState algorithmState,
638 int numberOfElementsCompletelyIn, int i, int childHeight,
Selim Cinekb036ca42015-02-20 15:56:28 +0100639 StackViewState childViewState, float scrollOffset) {
Selim Cinek67b22602014-03-10 15:40:16 +0100640
Selim Cinek67b22602014-03-10 15:40:16 +0100641
642 // First we calculate the index relative to the current stack window of size at most
643 // {@link #MAX_ITEMS_IN_TOP_STACK}
Selim Cinek343e6e22014-04-11 21:23:30 +0200644 int paddedIndex = i - 1
Selim Cinek67b22602014-03-10 15:40:16 +0100645 - Math.max(numberOfElementsCompletelyIn - MAX_ITEMS_IN_TOP_STACK, 0);
646 if (paddedIndex >= 0) {
Selim Cinek343e6e22014-04-11 21:23:30 +0200647
Selim Cinek67b22602014-03-10 15:40:16 +0100648 // We are currently visually entering the top stack
Selim Cinekad3e5af2014-07-04 12:24:11 +0200649 float distanceToStack = (childHeight + mPaddingBetweenElements)
650 - algorithmState.scrolledPixelsTop;
651 if (i == algorithmState.lastTopStackIndex
652 && distanceToStack > (mTopStackTotalSize + mPaddingBetweenElements)) {
Selim Cinek343e6e22014-04-11 21:23:30 +0200653
654 // Child is currently translating into stack but not yet inside slow down zone.
655 // Handle it like the regular scrollview.
656 childViewState.yTranslation = scrollOffset;
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200657 } else {
Selim Cinek343e6e22014-04-11 21:23:30 +0200658 // Apply stacking logic.
659 float numItemsBefore;
660 if (i == algorithmState.lastTopStackIndex) {
Selim Cinekad3e5af2014-07-04 12:24:11 +0200661 numItemsBefore = 1.0f
662 - (distanceToStack / (mTopStackTotalSize + mPaddingBetweenElements));
Selim Cinek343e6e22014-04-11 21:23:30 +0200663 } else {
664 numItemsBefore = algorithmState.itemsInTopStack - i;
665 }
666 // The end position of the current child
Selim Cinekad3e5af2014-07-04 12:24:11 +0200667 float currentChildEndY = mCollapsedSize + mTopStackTotalSize
668 - mTopStackIndentationFunctor.getValue(numItemsBefore);
Selim Cinek343e6e22014-04-11 21:23:30 +0200669 childViewState.yTranslation = currentChildEndY - childHeight;
Selim Cinek67b22602014-03-10 15:40:16 +0100670 }
Selim Cinekb036ca42015-02-20 15:56:28 +0100671 childViewState.location = StackViewState.LOCATION_TOP_STACK_PEEKING;
Selim Cinek67b22602014-03-10 15:40:16 +0100672 } else {
Selim Cinek343e6e22014-04-11 21:23:30 +0200673 if (paddedIndex == -1) {
674 childViewState.alpha = 1.0f - algorithmState.partialInTop;
675 } else {
676 // We are hidden behind the top card and faded out, so we can hide ourselves.
677 childViewState.alpha = 0.0f;
678 }
679 childViewState.yTranslation = mCollapsedSize - childHeight;
Selim Cinekb036ca42015-02-20 15:56:28 +0100680 childViewState.location = StackViewState.LOCATION_TOP_STACK_HIDDEN;
Selim Cinek67b22602014-03-10 15:40:16 +0100681 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200682
683
Selim Cinek67b22602014-03-10 15:40:16 +0100684 }
685
686 /**
687 * Find the number of items in the top stack and update the result state if needed.
688 *
689 * @param resultState The result state to update if a height change of an child occurs
690 * @param algorithmState The state in which the current pass of the algorithm is currently in
Selim Cinek67b22602014-03-10 15:40:16 +0100691 */
692 private void findNumberOfItemsInTopStackAndUpdateState(StackScrollState resultState,
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700693 StackScrollAlgorithmState algorithmState, AmbientState ambientState) {
Selim Cinek67b22602014-03-10 15:40:16 +0100694
695 // The y Position if the element would be in a regular scrollView
696 float yPositionInScrollView = 0.0f;
Jorim Jaggid4a57442014-04-10 02:45:55 +0200697 int childCount = algorithmState.visibleChildren.size();
Selim Cinek67b22602014-03-10 15:40:16 +0100698
699 // find the number of elements in the top stack.
700 for (int i = 0; i < childCount; i++) {
Jorim Jaggibe565df2014-04-28 17:51:23 +0200701 ExpandableView child = algorithmState.visibleChildren.get(i);
Selim Cinekb036ca42015-02-20 15:56:28 +0100702 StackViewState childViewState = resultState.getViewStateForView(child);
Selim Cineka59ecc32015-04-07 10:51:49 -0700703 int childHeight = getMaxAllowedChildHeight(child, ambientState);
Selim Cinek67b22602014-03-10 15:40:16 +0100704 float yPositionInScrollViewAfterElement = yPositionInScrollView
705 + childHeight
706 + mPaddingBetweenElements;
707 if (yPositionInScrollView < algorithmState.scrollY) {
Selim Cinek8d9ff9c2014-05-12 15:13:04 +0200708 if (i == 0 && algorithmState.scrollY <= mCollapsedSize) {
Selim Cinek343e6e22014-04-11 21:23:30 +0200709
710 // The starting position of the bottom stack peek
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700711 int bottomPeekStart = ambientState.getInnerHeight() - mBottomStackPeekSize -
Selim Cinekd83771e2014-07-04 16:45:31 +0200712 mCollapseSecondCardPadding;
Selim Cinek343e6e22014-04-11 21:23:30 +0200713 // Collapse and expand the first child while the shade is being expanded
714 float maxHeight = mIsExpansionChanging && child == mFirstChildWhileExpanding
715 ? mFirstChildMaxHeight
716 : childHeight;
717 childViewState.height = (int) Math.max(Math.min(bottomPeekStart, maxHeight),
718 mCollapsedSize);
719 algorithmState.itemsInTopStack = 1.0f;
720
721 } else if (yPositionInScrollViewAfterElement < algorithmState.scrollY) {
Selim Cinek67b22602014-03-10 15:40:16 +0100722 // According to the regular scroll view we are fully off screen
723 algorithmState.itemsInTopStack += 1.0f;
Selim Cinek343e6e22014-04-11 21:23:30 +0200724 if (i == 0) {
Selim Cinek67b22602014-03-10 15:40:16 +0100725 childViewState.height = mCollapsedSize;
726 }
727 } else {
728 // According to the regular scroll view we are partially off screen
Selim Cinek343e6e22014-04-11 21:23:30 +0200729
Selim Cinek67b22602014-03-10 15:40:16 +0100730 // How much did we scroll into this child
Selim Cinekad3e5af2014-07-04 12:24:11 +0200731 algorithmState.scrolledPixelsTop = algorithmState.scrollY
732 - yPositionInScrollView;
Selim Cinek343e6e22014-04-11 21:23:30 +0200733 algorithmState.partialInTop = (algorithmState.scrolledPixelsTop) / (childHeight
Selim Cinek67b22602014-03-10 15:40:16 +0100734 + mPaddingBetweenElements);
735
736 // Our element can be expanded, so this can get negative
737 algorithmState.partialInTop = Math.max(0.0f, algorithmState.partialInTop);
738 algorithmState.itemsInTopStack += algorithmState.partialInTop;
Selim Cinekad3e5af2014-07-04 12:24:11 +0200739
Selim Cinek343e6e22014-04-11 21:23:30 +0200740 if (i == 0) {
Selim Cinekad3e5af2014-07-04 12:24:11 +0200741 // If it is expanded we have to collapse it to a new size
742 float newSize = yPositionInScrollViewAfterElement
743 - mPaddingBetweenElements
744 - algorithmState.scrollY + mCollapsedSize;
745 newSize = Math.max(mCollapsedSize, newSize);
Selim Cinek4e456be2014-06-12 18:09:43 +0200746 algorithmState.itemsInTopStack = 1.0f;
Selim Cinek67b22602014-03-10 15:40:16 +0100747 childViewState.height = (int) newSize;
Selim Cinek67b22602014-03-10 15:40:16 +0100748 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200749 algorithmState.lastTopStackIndex = i;
750 break;
Selim Cinek67b22602014-03-10 15:40:16 +0100751 }
752 } else {
Selim Cinek343e6e22014-04-11 21:23:30 +0200753 algorithmState.lastTopStackIndex = i - 1;
Selim Cinek67b22602014-03-10 15:40:16 +0100754 // We are already past the stack so we can end the loop
755 break;
756 }
757 yPositionInScrollView = yPositionInScrollViewAfterElement;
758 }
759 }
760
761 /**
762 * Calculate the Z positions for all children based on the number of items in both stacks and
763 * save it in the resultState
764 *
765 * @param resultState The result state to update the zTranslation values
766 * @param algorithmState The state in which the current pass of the algorithm is currently in
767 */
768 private void updateZValuesForState(StackScrollState resultState,
769 StackScrollAlgorithmState algorithmState) {
Jorim Jaggid4a57442014-04-10 02:45:55 +0200770 int childCount = algorithmState.visibleChildren.size();
Selim Cinek67b22602014-03-10 15:40:16 +0100771 for (int i = 0; i < childCount; i++) {
Jorim Jaggid4a57442014-04-10 02:45:55 +0200772 View child = algorithmState.visibleChildren.get(i);
Selim Cinekb036ca42015-02-20 15:56:28 +0100773 StackViewState childViewState = resultState.getViewStateForView(child);
Selim Cinek67b22602014-03-10 15:40:16 +0100774 if (i < algorithmState.itemsInTopStack) {
775 float stackIndex = algorithmState.itemsInTopStack - i;
Selim Cinekc5baa3e2014-10-29 19:04:19 +0100776
777 // Ensure that the topmost item is a little bit higher than the rest when fully
778 // scrolled, to avoid drawing errors when swiping it out
779 float max = MAX_ITEMS_IN_TOP_STACK + (i == 0 ? 2.5f : 2);
780 stackIndex = Math.min(stackIndex, max);
Selim Cinek4e456be2014-06-12 18:09:43 +0200781 if (i == 0 && algorithmState.itemsInTopStack < 2.0f) {
782
783 // We only have the top item and an additional item in the top stack,
784 // Interpolate the index from 0 to 2 while the second item is
785 // translating in.
786 stackIndex -= 1.0f;
787 if (algorithmState.scrollY > mCollapsedSize) {
788
789 // Since there is a shadow treshhold, we cant just interpolate from 0 to
790 // 2 but we interpolate from 0.1f to 2.0f when scrolled in. The jump in
791 // height will not be noticable since we have padding in between.
792 stackIndex = 0.1f + stackIndex * 1.9f;
793 }
794 }
Selim Cinek67b22602014-03-10 15:40:16 +0100795 childViewState.zTranslation = mZBasicHeight
796 + stackIndex * mZDistanceBetweenElements;
797 } else if (i > (childCount - 1 - algorithmState.itemsInBottomStack)) {
798 float numItemsAbove = i - (childCount - 1 - algorithmState.itemsInBottomStack);
799 float translationZ = mZBasicHeight
800 - numItemsAbove * mZDistanceBetweenElements;
801 childViewState.zTranslation = translationZ;
802 } else {
803 childViewState.zTranslation = mZBasicHeight;
804 }
805 }
806 }
807
Selim Cinek3afd00e2014-08-11 22:32:57 +0200808 /**
809 * Update whether the device is very small, i.e. Notifications can be in both the top and the
810 * bottom stack at the same time
811 *
812 * @param panelHeight The normal height of the panel when it's open
813 */
814 public void updateIsSmallScreen(int panelHeight) {
815 mIsSmallScreen = panelHeight <
816 mCollapsedSize /* top stack */
817 + mBottomStackSlowDownLength + mBottomStackPeekSize /* bottom stack */
818 + mMaxNotificationHeight; /* max notification height */
819 }
820
Selim Cinek1685e632014-04-08 02:27:49 +0200821 public void onExpansionStarted(StackScrollState currentState) {
822 mIsExpansionChanging = true;
823 mExpandedOnStart = mIsExpanded;
824 ViewGroup hostView = currentState.getHostView();
825 updateFirstChildHeightWhileExpanding(hostView);
826 }
827
828 private void updateFirstChildHeightWhileExpanding(ViewGroup hostView) {
Jorim Jaggibe565df2014-04-28 17:51:23 +0200829 mFirstChildWhileExpanding = (ExpandableView) findFirstVisibleChild(hostView);
Jorim Jaggi9f347ae2014-04-11 00:47:18 +0200830 if (mFirstChildWhileExpanding != null) {
Selim Cinek1685e632014-04-08 02:27:49 +0200831 if (mExpandedOnStart) {
832
833 // We are collapsing the shade, so the first child can get as most as high as the
Selim Cinek02af41e2014-10-14 15:46:43 +0200834 // current height or the end value of the animation.
835 mFirstChildMaxHeight = StackStateAnimator.getFinalActualHeight(
836 mFirstChildWhileExpanding);
Selim Cinek1685e632014-04-08 02:27:49 +0200837 } else {
Selim Cinek31094df2014-08-14 19:28:15 +0200838 updateFirstChildMaxSizeToMaxHeight();
Selim Cinek1685e632014-04-08 02:27:49 +0200839 }
840 } else {
Selim Cinek1685e632014-04-08 02:27:49 +0200841 mFirstChildMaxHeight = 0;
842 }
843 }
844
Selim Cinek31094df2014-08-14 19:28:15 +0200845 private void updateFirstChildMaxSizeToMaxHeight() {
846 // We are expanding the shade, expand it to its full height.
847 if (!isMaxSizeInitialized(mFirstChildWhileExpanding)) {
848
849 // This child was not layouted yet, wait for a layout pass
850 mFirstChildWhileExpanding
851 .addOnLayoutChangeListener(new View.OnLayoutChangeListener() {
852 @Override
853 public void onLayoutChange(View v, int left, int top, int right,
854 int bottom, int oldLeft, int oldTop, int oldRight,
855 int oldBottom) {
856 if (mFirstChildWhileExpanding != null) {
857 mFirstChildMaxHeight = getMaxAllowedChildHeight(
Selim Cineka59ecc32015-04-07 10:51:49 -0700858 mFirstChildWhileExpanding, null);
Selim Cinek31094df2014-08-14 19:28:15 +0200859 } else {
860 mFirstChildMaxHeight = 0;
861 }
862 v.removeOnLayoutChangeListener(this);
863 }
864 });
865 } else {
Selim Cineka59ecc32015-04-07 10:51:49 -0700866 mFirstChildMaxHeight = getMaxAllowedChildHeight(mFirstChildWhileExpanding, null);
Selim Cinek31094df2014-08-14 19:28:15 +0200867 }
868 }
869
Selim Cinek7d447722014-06-10 15:51:59 +0200870 private boolean isMaxSizeInitialized(ExpandableView child) {
871 if (child instanceof ExpandableNotificationRow) {
872 ExpandableNotificationRow row = (ExpandableNotificationRow) child;
Selim Cinek31094df2014-08-14 19:28:15 +0200873 return row.isMaxExpandHeightInitialized();
Selim Cinek7d447722014-06-10 15:51:59 +0200874 }
875 return child == null || child.getWidth() != 0;
876 }
877
Jorim Jaggi9f347ae2014-04-11 00:47:18 +0200878 private View findFirstVisibleChild(ViewGroup container) {
879 int childCount = container.getChildCount();
880 for (int i = 0; i < childCount; i++) {
881 View child = container.getChildAt(i);
882 if (child.getVisibility() != View.GONE) {
883 return child;
884 }
885 }
886 return null;
887 }
888
Selim Cinek1685e632014-04-08 02:27:49 +0200889 public void onExpansionStopped() {
890 mIsExpansionChanging = false;
891 mFirstChildWhileExpanding = null;
892 }
893
894 public void setIsExpanded(boolean isExpanded) {
895 this.mIsExpanded = isExpanded;
896 }
897
Selim Cinek02af41e2014-10-14 15:46:43 +0200898 public void notifyChildrenChanged(final ViewGroup hostView) {
Selim Cinek1685e632014-04-08 02:27:49 +0200899 if (mIsExpansionChanging) {
Selim Cinek02af41e2014-10-14 15:46:43 +0200900 hostView.post(new Runnable() {
901 @Override
902 public void run() {
903 updateFirstChildHeightWhileExpanding(hostView);
904 }
905 });
Selim Cinek1685e632014-04-08 02:27:49 +0200906 }
907 }
908
Selim Cinek34c0a8d2014-05-12 00:01:43 +0200909 public void setDimmed(boolean dimmed) {
910 updatePadding(dimmed);
911 }
912
Selim Cinek31094df2014-08-14 19:28:15 +0200913 public void onReset(ExpandableView view) {
914 if (view.equals(mFirstChildWhileExpanding)) {
915 updateFirstChildMaxSizeToMaxHeight();
916 }
917 }
918
Selim Cinek67b22602014-03-10 15:40:16 +0100919 class StackScrollAlgorithmState {
920
921 /**
922 * The scroll position of the algorithm
923 */
924 public int scrollY;
925
926 /**
927 * The quantity of items which are in the top stack.
928 */
929 public float itemsInTopStack;
930
931 /**
932 * how far in is the element currently transitioning into the top stack
933 */
934 public float partialInTop;
935
936 /**
Selim Cinek343e6e22014-04-11 21:23:30 +0200937 * The number of pixels the last child in the top stack has scrolled in to the stack
938 */
939 public float scrolledPixelsTop;
940
941 /**
Selim Cinek67b22602014-03-10 15:40:16 +0100942 * The last item index which is in the top stack.
Selim Cinek67b22602014-03-10 15:40:16 +0100943 */
944 public int lastTopStackIndex;
945
946 /**
947 * The quantity of items which are in the bottom stack.
948 */
949 public float itemsInBottomStack;
950
951 /**
952 * how far in is the element currently transitioning into the bottom stack
953 */
954 public float partialInBottom;
Jorim Jaggid4a57442014-04-10 02:45:55 +0200955
956 /**
957 * The children from the host view which are not gone.
958 */
Jorim Jaggibe565df2014-04-28 17:51:23 +0200959 public final ArrayList<ExpandableView> visibleChildren = new ArrayList<ExpandableView>();
Selim Cinek67b22602014-03-10 15:40:16 +0100960 }
961
962}