blob: 36c26ec5503fa19fbccedd72d9c410cd36d9de3c [file] [log] [blame]
Selim Cinek67b22602014-03-10 15:40:16 +01001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License
15 */
16
17package com.android.systemui.statusbar.stack;
18
19import android.content.Context;
Jorim Jaggid7c1fae2014-08-13 18:27:47 +020020import android.util.DisplayMetrics;
Christoph Studer6e3eceb2014-04-01 18:40:27 +020021import android.util.Log;
Selim Cinek67b22602014-03-10 15:40:16 +010022import android.view.View;
23import android.view.ViewGroup;
Selim Cinek343e6e22014-04-11 21:23:30 +020024
Selim Cinek67b22602014-03-10 15:40:16 +010025import com.android.systemui.R;
Selim Cinek1685e632014-04-08 02:27:49 +020026import com.android.systemui.statusbar.ExpandableNotificationRow;
Jorim Jaggibe565df2014-04-28 17:51:23 +020027import com.android.systemui.statusbar.ExpandableView;
Selim Cinekb8f09cf2015-03-16 17:09:28 -070028import com.android.systemui.statusbar.policy.HeadsUpManager;
Selim Cinek67b22602014-03-10 15:40:16 +010029
Jorim Jaggid4a57442014-04-10 02:45:55 +020030import java.util.ArrayList;
Selim Cinekb5605e52015-02-20 18:21:41 +010031import java.util.List;
Jorim Jaggid4a57442014-04-10 02:45:55 +020032
Selim Cinek67b22602014-03-10 15:40:16 +010033/**
34 * The Algorithm of the {@link com.android.systemui.statusbar.stack
35 * .NotificationStackScrollLayout} which can be queried for {@link com.android.systemui.statusbar
36 * .stack.StackScrollState}
37 */
38public class StackScrollAlgorithm {
39
Christoph Studer6e3eceb2014-04-01 18:40:27 +020040 private static final String LOG_TAG = "StackScrollAlgorithm";
41
Selim Cinek67b22602014-03-10 15:40:16 +010042 private static final int MAX_ITEMS_IN_BOTTOM_STACK = 3;
43 private static final int MAX_ITEMS_IN_TOP_STACK = 3;
44
Selim Cinek65b2e7c2015-10-26 14:11:31 -070045 public static final float DIMMED_SCALE = 0.98f;
Jorim Jaggid552d9d2014-05-07 19:41:13 +020046
Selim Cinek67b22602014-03-10 15:40:16 +010047 private int mPaddingBetweenElements;
48 private int mCollapsedSize;
49 private int mTopStackPeekSize;
50 private int mBottomStackPeekSize;
51 private int mZDistanceBetweenElements;
52 private int mZBasicHeight;
Selim Cinek708a6c12014-05-28 14:16:02 +020053 private int mRoundedRectCornerRadius;
Selim Cinek67b22602014-03-10 15:40:16 +010054
55 private StackIndentationFunctor mTopStackIndentationFunctor;
56 private StackIndentationFunctor mBottomStackIndentationFunctor;
57
Selim Cinek67b22602014-03-10 15:40:16 +010058 private StackScrollAlgorithmState mTempAlgorithmState = new StackScrollAlgorithmState();
Selim Cinek1685e632014-04-08 02:27:49 +020059 private boolean mIsExpansionChanging;
60 private int mFirstChildMaxHeight;
61 private boolean mIsExpanded;
Jorim Jaggibe565df2014-04-28 17:51:23 +020062 private ExpandableView mFirstChildWhileExpanding;
Selim Cinek1685e632014-04-08 02:27:49 +020063 private boolean mExpandedOnStart;
Selim Cinek343e6e22014-04-11 21:23:30 +020064 private int mTopStackTotalSize;
Selim Cinek34c0a8d2014-05-12 00:01:43 +020065 private int mPaddingBetweenElementsDimmed;
66 private int mPaddingBetweenElementsNormal;
Selim Cinek79d79c42015-05-21 16:14:45 -070067 private int mNotificationsTopPadding;
Selim Cinek34c0a8d2014-05-12 00:01:43 +020068 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 Cinekd2281152015-04-10 14:37:46 -070074 private HeadsUpManager mHeadsUpManager;
Selim Cinek816c8e42015-11-19 12:00:45 -080075 private int mFirstChildMinHeight;
Selim Cinek67b22602014-03-10 15:40:16 +010076
77 public StackScrollAlgorithm(Context context) {
78 initConstants(context);
Selim Cinek34c0a8d2014-05-12 00:01:43 +020079 updatePadding(false);
80 }
81
82 private void updatePadding(boolean dimmed) {
Jorim Jaggid7c1fae2014-08-13 18:27:47 +020083 mPaddingBetweenElements = dimmed && mScaleDimmed
Selim Cinek34c0a8d2014-05-12 00:01:43 +020084 ? mPaddingBetweenElementsDimmed
85 : mPaddingBetweenElementsNormal;
Selim Cinekad3e5af2014-07-04 12:24:11 +020086 mTopStackTotalSize = mTopStackSlowDownLength + mPaddingBetweenElements
87 + mTopStackPeekSize;
Selim Cinek34c0a8d2014-05-12 00:01:43 +020088 mTopStackIndentationFunctor = new PiecewiseLinearIndentationFunctor(
89 MAX_ITEMS_IN_TOP_STACK,
90 mTopStackPeekSize,
Selim Cinekb96924d2014-05-12 15:11:25 +020091 mTopStackTotalSize - mTopStackPeekSize,
Selim Cinek34c0a8d2014-05-12 00:01:43 +020092 0.5f);
93 mBottomStackIndentationFunctor = new PiecewiseLinearIndentationFunctor(
94 MAX_ITEMS_IN_BOTTOM_STACK,
95 mBottomStackPeekSize,
96 getBottomStackSlowDownLength(),
97 0.5f);
98 }
99
100 public int getBottomStackSlowDownLength() {
101 return mBottomStackSlowDownLength + mPaddingBetweenElements;
Selim Cinek67b22602014-03-10 15:40:16 +0100102 }
103
104 private void initConstants(Context context) {
Selim Cinek34c0a8d2014-05-12 00:01:43 +0200105 mPaddingBetweenElementsDimmed = context.getResources()
106 .getDimensionPixelSize(R.dimen.notification_padding_dimmed);
107 mPaddingBetweenElementsNormal = context.getResources()
Jorim Jaggife40f7d2014-04-28 15:20:04 +0200108 .getDimensionPixelSize(R.dimen.notification_padding);
Selim Cinek79d79c42015-05-21 16:14:45 -0700109 mNotificationsTopPadding = context.getResources()
110 .getDimensionPixelSize(R.dimen.notifications_top_padding);
Selim Cinek67b22602014-03-10 15:40:16 +0100111 mCollapsedSize = context.getResources()
Jorim Jaggife40f7d2014-04-28 15:20:04 +0200112 .getDimensionPixelSize(R.dimen.notification_min_height);
Selim Cinek3afd00e2014-08-11 22:32:57 +0200113 mMaxNotificationHeight = context.getResources()
114 .getDimensionPixelSize(R.dimen.notification_max_height);
Selim Cinek67b22602014-03-10 15:40:16 +0100115 mTopStackPeekSize = context.getResources()
116 .getDimensionPixelSize(R.dimen.top_stack_peek_amount);
117 mBottomStackPeekSize = context.getResources()
118 .getDimensionPixelSize(R.dimen.bottom_stack_peek_amount);
119 mZDistanceBetweenElements = context.getResources()
120 .getDimensionPixelSize(R.dimen.z_distance_between_notifications);
121 mZBasicHeight = (MAX_ITEMS_IN_BOTTOM_STACK + 1) * mZDistanceBetweenElements;
Selim Cinek34c0a8d2014-05-12 00:01:43 +0200122 mBottomStackSlowDownLength = context.getResources()
123 .getDimensionPixelSize(R.dimen.bottom_stack_slow_down_length);
Selim Cinekad3e5af2014-07-04 12:24:11 +0200124 mTopStackSlowDownLength = context.getResources()
125 .getDimensionPixelSize(R.dimen.top_stack_slow_down_length);
Selim Cinek708a6c12014-05-28 14:16:02 +0200126 mRoundedRectCornerRadius = context.getResources().getDimensionPixelSize(
Selim Cinek697178b2014-07-02 19:40:30 +0200127 R.dimen.notification_material_rounded_rect_radius);
Selim Cinekd83771e2014-07-04 16:45:31 +0200128 mCollapseSecondCardPadding = context.getResources().getDimensionPixelSize(
129 R.dimen.notification_collapse_second_card_padding);
Jorim Jaggid7c1fae2014-08-13 18:27:47 +0200130 mScaleDimmed = context.getResources().getDisplayMetrics().densityDpi
Jorim Jaggi2cb70042015-08-24 14:52:45 -0700131 >= DisplayMetrics.DENSITY_420;
Selim Cinek67b22602014-03-10 15:40:16 +0100132 }
133
Jorim Jaggid7c1fae2014-08-13 18:27:47 +0200134 public boolean shouldScaleDimmed() {
135 return mScaleDimmed;
136 }
Selim Cinek67b22602014-03-10 15:40:16 +0100137
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200138 public void getStackScrollState(AmbientState ambientState, StackScrollState resultState) {
Selim Cinek67b22602014-03-10 15:40:16 +0100139 // The state of the local variables are saved in an algorithmState to easily subdivide it
140 // into multiple phases.
141 StackScrollAlgorithmState algorithmState = mTempAlgorithmState;
142
143 // First we reset the view states to their default values.
144 resultState.resetViewStates();
145
Selim Cinek343e6e22014-04-11 21:23:30 +0200146 algorithmState.itemsInTopStack = 0.0f;
Selim Cinek67b22602014-03-10 15:40:16 +0100147 algorithmState.partialInTop = 0.0f;
148 algorithmState.lastTopStackIndex = 0;
Selim Cinek343e6e22014-04-11 21:23:30 +0200149 algorithmState.scrolledPixelsTop = 0;
Selim Cinek67b22602014-03-10 15:40:16 +0100150 algorithmState.itemsInBottomStack = 0.0f;
Selim Cinek343e6e22014-04-11 21:23:30 +0200151 algorithmState.partialInBottom = 0.0f;
Selim Cinek8d9ff9c2014-05-12 15:13:04 +0200152 float bottomOverScroll = ambientState.getOverScrollAmount(false /* onTop */);
Selim Cinek1408eb52014-06-02 14:45:38 +0200153
154 int scrollY = ambientState.getScrollY();
155
156 // Due to the overScroller, the stackscroller can have negative scroll state. This is
157 // already accounted for by the top padding and doesn't need an additional adaption
158 scrollY = Math.max(0, scrollY);
Selim Cinek816c8e42015-11-19 12:00:45 -0800159 algorithmState.scrollY = (int) (scrollY + mFirstChildMinHeight + bottomOverScroll);
Selim Cinek343e6e22014-04-11 21:23:30 +0200160
Selim Cineka4baaa32015-04-20 14:27:54 -0700161 updateVisibleChildren(resultState, algorithmState);
Selim Cinek67b22602014-03-10 15:40:16 +0100162
163 // Phase 1:
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700164 findNumberOfItemsInTopStackAndUpdateState(resultState, algorithmState, ambientState);
Selim Cinek67b22602014-03-10 15:40:16 +0100165
166 // Phase 2:
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700167 updatePositionsForState(resultState, algorithmState, ambientState);
Selim Cinek67b22602014-03-10 15:40:16 +0100168
169 // Phase 3:
170 updateZValuesForState(resultState, algorithmState);
Selim Cinekeb973562014-05-02 17:07:49 +0200171
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200172 handleDraggedViews(ambientState, resultState, algorithmState);
Jorim Jaggiae441282014-08-01 02:45:18 +0200173 updateDimmedActivatedHideSensitive(ambientState, resultState, algorithmState);
Selim Cineka59ecc32015-04-07 10:51:49 -0700174 updateClipping(resultState, algorithmState, ambientState);
Selim Cinek3d2b94bf2014-07-02 22:12:47 +0200175 updateSpeedBumpState(resultState, algorithmState, ambientState.getSpeedBumpIndex());
Selim Cinekb5605e52015-02-20 18:21:41 +0100176 getNotificationChildrenStates(resultState, algorithmState);
177 }
178
179 private void getNotificationChildrenStates(StackScrollState resultState,
180 StackScrollAlgorithmState algorithmState) {
181 int childCount = algorithmState.visibleChildren.size();
182 for (int i = 0; i < childCount; i++) {
183 ExpandableView v = algorithmState.visibleChildren.get(i);
184 if (v instanceof ExpandableNotificationRow) {
185 ExpandableNotificationRow row = (ExpandableNotificationRow) v;
186 row.getChildrenStates(resultState);
187 }
188 }
Selim Cinek3d2b94bf2014-07-02 22:12:47 +0200189 }
190
191 private void updateSpeedBumpState(StackScrollState resultState,
192 StackScrollAlgorithmState algorithmState, int speedBumpIndex) {
193 int childCount = algorithmState.visibleChildren.size();
194 for (int i = 0; i < childCount; i++) {
195 View child = algorithmState.visibleChildren.get(i);
Selim Cinekb036ca42015-02-20 15:56:28 +0100196 StackViewState childViewState = resultState.getViewStateForView(child);
Selim Cinek3107cfa2014-07-22 15:24:29 +0200197
198 // The speed bump can also be gone, so equality needs to be taken when comparing
199 // indices.
200 childViewState.belowSpeedBump = speedBumpIndex != -1 && i >= speedBumpIndex;
Selim Cinek3d2b94bf2014-07-02 22:12:47 +0200201 }
Selim Cinekf54090e2014-06-17 17:24:51 -0700202 }
203
Selim Cinek708a6c12014-05-28 14:16:02 +0200204 private void updateClipping(StackScrollState resultState,
Selim Cineka59ecc32015-04-07 10:51:49 -0700205 StackScrollAlgorithmState algorithmState, AmbientState ambientState) {
Selim Cinek9c17b772015-07-07 20:37:09 -0700206 boolean dismissAllInProgress = ambientState.isDismissAllInProgress();
Selim Cinek708a6c12014-05-28 14:16:02 +0200207 float previousNotificationEnd = 0;
208 float previousNotificationStart = 0;
209 boolean previousNotificationIsSwiped = false;
210 int childCount = algorithmState.visibleChildren.size();
211 for (int i = 0; i < childCount; i++) {
212 ExpandableView child = algorithmState.visibleChildren.get(i);
Selim Cinekb036ca42015-02-20 15:56:28 +0100213 StackViewState state = resultState.getViewStateForView(child);
Jorim Jaggi2e34ec32014-07-01 03:17:05 +0200214 float newYTranslation = state.yTranslation + state.height * (1f - state.scale) / 2f;
215 float newHeight = state.height * state.scale;
Selim Cinek708a6c12014-05-28 14:16:02 +0200216 // apply clipping and shadow
217 float newNotificationEnd = newYTranslation + newHeight;
218
Selim Cinekc5baa3e2014-10-29 19:04:19 +0100219 float clipHeight;
220 if (previousNotificationIsSwiped) {
221 // When the previous notification is swiped, we don't clip the content to the
222 // bottom of it.
223 clipHeight = newHeight;
224 } else {
225 clipHeight = newNotificationEnd - previousNotificationEnd;
226 clipHeight = Math.max(0.0f, clipHeight);
227 if (clipHeight != 0.0f) {
Selim Cinek708a6c12014-05-28 14:16:02 +0200228
Selim Cinekc5baa3e2014-10-29 19:04:19 +0100229 // In the unlocked shade we have to clip a little bit higher because of the rounded
230 // corners of the notifications, but only if we are not fully overlapped by
231 // the top card.
232 float clippingCorrection = state.dimmed
233 ? 0
234 : mRoundedRectCornerRadius * state.scale;
235 clipHeight += clippingCorrection;
236 }
237 }
Selim Cinek708a6c12014-05-28 14:16:02 +0200238
239 updateChildClippingAndBackground(state, newHeight, clipHeight,
Jorim Jaggi2e34ec32014-07-01 03:17:05 +0200240 newHeight - (previousNotificationStart - newYTranslation));
Selim Cinek708a6c12014-05-28 14:16:02 +0200241
Selim Cinek9c17b772015-07-07 20:37:09 -0700242 if (dismissAllInProgress) {
243 state.clipTopAmount = Math.max(child.getMinClipTopAmount(), state.clipTopAmount);
244 }
245
Selim Cinek708a6c12014-05-28 14:16:02 +0200246 if (!child.isTransparent()) {
247 // Only update the previous values if we are not transparent,
248 // otherwise we would clip to a transparent view.
Selim Cinek9c17b772015-07-07 20:37:09 -0700249 if ((dismissAllInProgress && canChildBeDismissed(child))) {
250 previousNotificationIsSwiped = true;
251 } else {
252 previousNotificationIsSwiped = ambientState.getDraggedViews().contains(child);
253 previousNotificationEnd = newNotificationEnd;
254 previousNotificationStart = newYTranslation + state.clipTopAmount * state.scale;
255 }
Selim Cinek708a6c12014-05-28 14:16:02 +0200256 }
257 }
258 }
259
Selim Cinek9c17b772015-07-07 20:37:09 -0700260 public static boolean canChildBeDismissed(View v) {
261 final View veto = v.findViewById(R.id.veto);
262 return (veto != null && veto.getVisibility() != View.GONE);
263 }
264
Selim Cinek708a6c12014-05-28 14:16:02 +0200265 /**
266 * Updates the shadow outline and the clipping for a view.
267 *
268 * @param state the viewState to update
269 * @param realHeight the currently applied height of the view
270 * @param clipHeight the desired clip height, the rest of the view will be clipped from the top
271 * @param backgroundHeight the desired background height. The shadows of the view will be
272 * based on this height and the content will be clipped from the top
273 */
Selim Cinekb036ca42015-02-20 15:56:28 +0100274 private void updateChildClippingAndBackground(StackViewState state, float realHeight,
275 float clipHeight, float backgroundHeight) {
Selim Cinek708a6c12014-05-28 14:16:02 +0200276 if (realHeight > clipHeight) {
Jorim Jaggi2e34ec32014-07-01 03:17:05 +0200277 // Rather overlap than create a hole.
278 state.topOverLap = (int) Math.floor((realHeight - clipHeight) / state.scale);
Selim Cinek708a6c12014-05-28 14:16:02 +0200279 } else {
280 state.topOverLap = 0;
281 }
282 if (realHeight > backgroundHeight) {
Jorim Jaggi2e34ec32014-07-01 03:17:05 +0200283 // Rather overlap than create a hole.
284 state.clipTopAmount = (int) Math.floor((realHeight - backgroundHeight) / state.scale);
Selim Cinek708a6c12014-05-28 14:16:02 +0200285 } else {
286 state.clipTopAmount = 0;
287 }
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200288 }
289
290 /**
Jorim Jaggiae441282014-08-01 02:45:18 +0200291 * Updates the dimmed, activated and hiding sensitive states of the children.
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200292 */
Jorim Jaggiae441282014-08-01 02:45:18 +0200293 private void updateDimmedActivatedHideSensitive(AmbientState ambientState,
294 StackScrollState resultState, StackScrollAlgorithmState algorithmState) {
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200295 boolean dimmed = ambientState.isDimmed();
John Spurlockbf370992014-06-17 13:58:31 -0400296 boolean dark = ambientState.isDark();
Jorim Jaggiae441282014-08-01 02:45:18 +0200297 boolean hideSensitive = ambientState.isHideSensitive();
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200298 View activatedChild = ambientState.getActivatedChild();
299 int childCount = algorithmState.visibleChildren.size();
300 for (int i = 0; i < childCount; i++) {
301 View child = algorithmState.visibleChildren.get(i);
Selim Cinekb036ca42015-02-20 15:56:28 +0100302 StackViewState childViewState = resultState.getViewStateForView(child);
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200303 childViewState.dimmed = dimmed;
John Spurlockbf370992014-06-17 13:58:31 -0400304 childViewState.dark = dark;
Jorim Jaggiae441282014-08-01 02:45:18 +0200305 childViewState.hideSensitive = hideSensitive;
Selim Cinekb89de4e2014-06-10 10:47:05 +0200306 boolean isActivatedChild = activatedChild == child;
Jorim Jaggid7c1fae2014-08-13 18:27:47 +0200307 childViewState.scale = !mScaleDimmed || !dimmed || isActivatedChild
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200308 ? 1.0f
309 : DIMMED_SCALE;
Jorim Jaggi4538cee2014-09-09 15:21:38 +0200310 if (dimmed && isActivatedChild) {
311 childViewState.zTranslation += 2.0f * mZDistanceBetweenElements;
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200312 }
313 }
Selim Cinekeb973562014-05-02 17:07:49 +0200314 }
315
316 /**
317 * Handle the special state when views are being dragged
318 */
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200319 private void handleDraggedViews(AmbientState ambientState, StackScrollState resultState,
Selim Cinekeb973562014-05-02 17:07:49 +0200320 StackScrollAlgorithmState algorithmState) {
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200321 ArrayList<View> draggedViews = ambientState.getDraggedViews();
322 for (View draggedView : draggedViews) {
Selim Cinekeb973562014-05-02 17:07:49 +0200323 int childIndex = algorithmState.visibleChildren.indexOf(draggedView);
324 if (childIndex >= 0 && childIndex < algorithmState.visibleChildren.size() - 1) {
325 View nextChild = algorithmState.visibleChildren.get(childIndex + 1);
Jorim Jaggid552d9d2014-05-07 19:41:13 +0200326 if (!draggedViews.contains(nextChild)) {
Selim Cinekeb973562014-05-02 17:07:49 +0200327 // only if the view is not dragged itself we modify its state to be fully
328 // visible
Selim Cinekb036ca42015-02-20 15:56:28 +0100329 StackViewState viewState = resultState.getViewStateForView(
Selim Cinekeb973562014-05-02 17:07:49 +0200330 nextChild);
331 // The child below the dragged one must be fully visible
Selim Cinek131c1e22015-05-11 19:04:49 -0700332 if (ambientState.isShadeExpanded()) {
Selim Cineka59ecc32015-04-07 10:51:49 -0700333 viewState.alpha = 1;
334 }
Selim Cinekeb973562014-05-02 17:07:49 +0200335 }
336
337 // Lets set the alpha to the one it currently has, as its currently being dragged
Selim Cinekb036ca42015-02-20 15:56:28 +0100338 StackViewState viewState = resultState.getViewStateForView(draggedView);
Selim Cinekeb973562014-05-02 17:07:49 +0200339 // The dragged child should keep the set alpha
340 viewState.alpha = draggedView.getAlpha();
341 }
342 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200343 }
Selim Cinek67b22602014-03-10 15:40:16 +0100344
Selim Cinek343e6e22014-04-11 21:23:30 +0200345 /**
Jorim Jaggid4a57442014-04-10 02:45:55 +0200346 * Update the visible children on the state.
347 */
348 private void updateVisibleChildren(StackScrollState resultState,
Selim Cineka4baaa32015-04-20 14:27:54 -0700349 StackScrollAlgorithmState state) {
Jorim Jaggid4a57442014-04-10 02:45:55 +0200350 ViewGroup hostView = resultState.getHostView();
351 int childCount = hostView.getChildCount();
352 state.visibleChildren.clear();
353 state.visibleChildren.ensureCapacity(childCount);
Selim Cinekb036ca42015-02-20 15:56:28 +0100354 int notGoneIndex = 0;
Jorim Jaggid4a57442014-04-10 02:45:55 +0200355 for (int i = 0; i < childCount; i++) {
Jorim Jaggibe565df2014-04-28 17:51:23 +0200356 ExpandableView v = (ExpandableView) hostView.getChildAt(i);
Jorim Jaggid4a57442014-04-10 02:45:55 +0200357 if (v.getVisibility() != View.GONE) {
Selim Cineka4baaa32015-04-20 14:27:54 -0700358 notGoneIndex = updateNotGoneIndex(resultState, state, notGoneIndex, v);
Selim Cinekb5605e52015-02-20 18:21:41 +0100359 if (v instanceof ExpandableNotificationRow) {
360 ExpandableNotificationRow row = (ExpandableNotificationRow) v;
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700361
362 // handle the notgoneIndex for the children as well
Selim Cinekb5605e52015-02-20 18:21:41 +0100363 List<ExpandableNotificationRow> children =
364 row.getNotificationChildren();
Selim Cinek83bc7832015-10-22 13:26:54 -0700365 if (row.isSummaryWithChildren() && children != null) {
Selim Cinekb5605e52015-02-20 18:21:41 +0100366 for (ExpandableNotificationRow childRow : children) {
367 if (childRow.getVisibility() != View.GONE) {
368 StackViewState childState
369 = resultState.getViewStateForView(childRow);
370 childState.notGoneIndex = notGoneIndex;
371 notGoneIndex++;
372 }
373 }
374 }
375 }
Jorim Jaggid4a57442014-04-10 02:45:55 +0200376 }
377 }
378 }
379
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700380 private int updateNotGoneIndex(StackScrollState resultState,
381 StackScrollAlgorithmState state, int notGoneIndex,
382 ExpandableView v) {
383 StackViewState viewState = resultState.getViewStateForView(v);
384 viewState.notGoneIndex = notGoneIndex;
385 state.visibleChildren.add(v);
386 notGoneIndex++;
387 return notGoneIndex;
388 }
389
Jorim Jaggid4a57442014-04-10 02:45:55 +0200390 /**
Selim Cinek67b22602014-03-10 15:40:16 +0100391 * Determine the positions for the views. This is the main part of the algorithm.
392 *
Selim Cinek684a4422015-04-15 16:18:39 -0700393 * @param resultState The result state to update if a change to the properties of a child occurs
Selim Cinek67b22602014-03-10 15:40:16 +0100394 * @param algorithmState The state in which the current pass of the algorithm is currently in
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700395 * @param ambientState The current ambient state
Selim Cinek67b22602014-03-10 15:40:16 +0100396 */
397 private void updatePositionsForState(StackScrollState resultState,
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700398 StackScrollAlgorithmState algorithmState, AmbientState ambientState) {
Selim Cinek67b22602014-03-10 15:40:16 +0100399
Selim Cinek1685e632014-04-08 02:27:49 +0200400 // The starting position of the bottom stack peek
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700401 float bottomPeekStart = ambientState.getInnerHeight() - mBottomStackPeekSize;
Selim Cinek1685e632014-04-08 02:27:49 +0200402
Selim Cinek67b22602014-03-10 15:40:16 +0100403 // The position where the bottom stack starts.
Selim Cinek34c0a8d2014-05-12 00:01:43 +0200404 float bottomStackStart = bottomPeekStart - mBottomStackSlowDownLength;
Selim Cinek67b22602014-03-10 15:40:16 +0100405
406 // The y coordinate of the current child.
407 float currentYPosition = 0.0f;
408
409 // How far in is the element currently transitioning into the bottom stack.
410 float yPositionInScrollView = 0.0f;
411
Selim Cineka59ecc32015-04-07 10:51:49 -0700412 // If we have a heads-up higher than the collapsed height we need to add the difference to
413 // the padding of all other elements, i.e push in the top stack slightly.
414 ExpandableNotificationRow topHeadsUpEntry = ambientState.getTopHeadsUpEntry();
415
Jorim Jaggid4a57442014-04-10 02:45:55 +0200416 int childCount = algorithmState.visibleChildren.size();
Selim Cinekf92a1fd2015-07-31 16:10:32 -0700417 int numberOfElementsCompletelyIn = algorithmState.partialInTop == 1.0f
418 ? algorithmState.lastTopStackIndex
419 : (int) algorithmState.itemsInTopStack;
Selim Cinek67b22602014-03-10 15:40:16 +0100420 for (int i = 0; i < childCount; i++) {
Jorim Jaggibe565df2014-04-28 17:51:23 +0200421 ExpandableView child = algorithmState.visibleChildren.get(i);
Selim Cinekb036ca42015-02-20 15:56:28 +0100422 StackViewState childViewState = resultState.getViewStateForView(child);
423 childViewState.location = StackViewState.LOCATION_UNKNOWN;
Selim Cineka59ecc32015-04-07 10:51:49 -0700424 int childHeight = getMaxAllowedChildHeight(child, ambientState);
Selim Cinek3e881372015-12-10 15:13:42 -0800425 int minHeight = child.getMinHeight();
Selim Cinek67b22602014-03-10 15:40:16 +0100426 float yPositionInScrollViewAfterElement = yPositionInScrollView
427 + childHeight
428 + mPaddingBetweenElements;
Selim Cinek816c8e42015-11-19 12:00:45 -0800429 float scrollOffset = yPositionInScrollView - algorithmState.scrollY +
430 mFirstChildMinHeight;
Selim Cinek343e6e22014-04-11 21:23:30 +0200431
432 if (i == algorithmState.lastTopStackIndex + 1) {
433 // Normally the position of this child is the position in the regular scrollview,
434 // but if the two stacks are very close to each other,
435 // then have have to push it even more upwards to the position of the bottom
436 // stack start.
437 currentYPosition = Math.min(scrollOffset, bottomStackStart);
438 }
439 childViewState.yTranslation = currentYPosition;
440
441 // The y position after this element
442 float nextYPosition = currentYPosition + childHeight +
443 mPaddingBetweenElements;
444
445 if (i <= algorithmState.lastTopStackIndex) {
Selim Cinek67b22602014-03-10 15:40:16 +0100446 // Case 1:
447 // We are in the top Stack
Selim Cinek343e6e22014-04-11 21:23:30 +0200448 updateStateForTopStackChild(algorithmState,
449 numberOfElementsCompletelyIn, i, childHeight, childViewState, scrollOffset);
Selim Cinek3afd00e2014-08-11 22:32:57 +0200450 clampPositionToTopStackEnd(childViewState, childHeight);
451
Selim Cinek343e6e22014-04-11 21:23:30 +0200452 // check if we are overlapping with the bottom stack
453 if (childViewState.yTranslation + childHeight + mPaddingBetweenElements
Selim Cinek3e881372015-12-10 15:13:42 -0800454 >= bottomStackStart && !mIsExpansionChanging && i != 0) {
Selim Cinek3afd00e2014-08-11 22:32:57 +0200455 // we just collapse this element slightly
456 int newSize = (int) Math.max(bottomStackStart - mPaddingBetweenElements -
Selim Cinek3e881372015-12-10 15:13:42 -0800457 childViewState.yTranslation, minHeight);
Selim Cinek3afd00e2014-08-11 22:32:57 +0200458 childViewState.height = newSize;
Selim Cinek4581cf82014-08-12 12:40:32 +0200459 updateStateForChildTransitioningInBottom(algorithmState, bottomStackStart,
Selim Cinek816c8e42015-11-19 12:00:45 -0800460 child, childViewState.yTranslation, childViewState,
Selim Cinek4581cf82014-08-12 12:40:32 +0200461 childHeight);
Selim Cinek343e6e22014-04-11 21:23:30 +0200462 }
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700463 clampPositionToBottomStackStart(childViewState, childViewState.height,
Selim Cinek3e881372015-12-10 15:13:42 -0800464 minHeight, ambientState);
Selim Cinek343e6e22014-04-11 21:23:30 +0200465 } else if (nextYPosition >= bottomStackStart) {
Selim Cinek67b22602014-03-10 15:40:16 +0100466 // Case 2:
Selim Cinek343e6e22014-04-11 21:23:30 +0200467 // We are in the bottom stack.
468 if (currentYPosition >= bottomStackStart) {
Selim Cinek67b22602014-03-10 15:40:16 +0100469 // According to the regular scroll view we are fully translated out of the
470 // bottom of the screen so we are fully in the bottom stack
Selim Cinek343e6e22014-04-11 21:23:30 +0200471 updateStateForChildFullyInBottomStack(algorithmState,
Selim Cinek3e881372015-12-10 15:13:42 -0800472 bottomStackStart, childViewState, minHeight, ambientState);
Selim Cinek67b22602014-03-10 15:40:16 +0100473 } else {
Selim Cinek67b22602014-03-10 15:40:16 +0100474 // According to the regular scroll view we are currently translating out of /
475 // into the bottom of the screen
Selim Cinek343e6e22014-04-11 21:23:30 +0200476 updateStateForChildTransitioningInBottom(algorithmState,
Selim Cinek816c8e42015-11-19 12:00:45 -0800477 bottomStackStart, child, currentYPosition,
Selim Cinek343e6e22014-04-11 21:23:30 +0200478 childViewState, childHeight);
Selim Cinek67b22602014-03-10 15:40:16 +0100479 }
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200480 } else {
Selim Cinek343e6e22014-04-11 21:23:30 +0200481 // Case 3:
482 // We are in the regular scroll area.
Selim Cinekb036ca42015-02-20 15:56:28 +0100483 childViewState.location = StackViewState.LOCATION_MAIN_AREA;
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700484 clampYTranslation(childViewState, childHeight, ambientState);
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200485 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200486
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200487 // The first card is always rendered.
488 if (i == 0) {
489 childViewState.alpha = 1.0f;
Selim Cinek816c8e42015-11-19 12:00:45 -0800490 childViewState.yTranslation = Math.max(
491 mFirstChildMinHeight - algorithmState.scrollY, 0);
Selim Cinekd83771e2014-07-04 16:45:31 +0200492 if (childViewState.yTranslation + childViewState.height
493 > bottomPeekStart - mCollapseSecondCardPadding) {
Selim Cinek4fe3e472014-07-03 16:32:54 +0200494 childViewState.height = (int) Math.max(
Selim Cinekd83771e2014-07-04 16:45:31 +0200495 bottomPeekStart - mCollapseSecondCardPadding
Selim Cinek816c8e42015-11-19 12:00:45 -0800496 - childViewState.yTranslation, mFirstChildMinHeight);
Selim Cinek4fe3e472014-07-03 16:32:54 +0200497 }
Selim Cinekb036ca42015-02-20 15:56:28 +0100498 childViewState.location = StackViewState.LOCATION_FIRST_CARD;
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200499 }
Selim Cinekb036ca42015-02-20 15:56:28 +0100500 if (childViewState.location == StackViewState.LOCATION_UNKNOWN) {
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200501 Log.wtf(LOG_TAG, "Failed to assign location for child " + i);
Selim Cinek67b22602014-03-10 15:40:16 +0100502 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200503 currentYPosition = childViewState.yTranslation + childHeight + mPaddingBetweenElements;
Selim Cinek67b22602014-03-10 15:40:16 +0100504 yPositionInScrollView = yPositionInScrollViewAfterElement;
Jorim Jaggi8c1a44b2014-04-29 19:04:02 +0200505
Selim Cineka59ecc32015-04-07 10:51:49 -0700506 if (ambientState.isShadeExpanded() && topHeadsUpEntry != null
507 && child != topHeadsUpEntry) {
Selim Cinek816c8e42015-11-19 12:00:45 -0800508 childViewState.yTranslation += topHeadsUpEntry.getHeadsUpHeight() -
509 mFirstChildMinHeight;
Selim Cineka59ecc32015-04-07 10:51:49 -0700510 }
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700511 childViewState.yTranslation += ambientState.getTopPadding()
Selim Cineka59ecc32015-04-07 10:51:49 -0700512 + ambientState.getStackTranslation();
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700513 }
Selim Cineka4baaa32015-04-20 14:27:54 -0700514 updateHeadsUpStates(resultState, algorithmState, ambientState);
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700515 }
516
Selim Cineka4baaa32015-04-20 14:27:54 -0700517 private void updateHeadsUpStates(StackScrollState resultState,
518 StackScrollAlgorithmState algorithmState, AmbientState ambientState) {
519 int childCount = algorithmState.visibleChildren.size();
520 ExpandableNotificationRow topHeadsUpEntry = null;
521 for (int i = 0; i < childCount; i++) {
522 View child = algorithmState.visibleChildren.get(i);
523 if (!(child instanceof ExpandableNotificationRow)) {
524 break;
525 }
526 ExpandableNotificationRow row = (ExpandableNotificationRow) child;
527 if (!row.isHeadsUp()) {
528 break;
529 } else if (topHeadsUpEntry == null) {
530 topHeadsUpEntry = row;
531 }
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700532 StackViewState childState = resultState.getViewStateForView(row);
Selim Cinek1f3f5442015-04-10 17:54:46 -0700533 boolean isTopEntry = topHeadsUpEntry == row;
Selim Cinek131c1e22015-05-11 19:04:49 -0700534 if (mIsExpanded) {
535 if (isTopEntry) {
Selim Cinek816c8e42015-11-19 12:00:45 -0800536 childState.height += row.getHeadsUpHeight() - mFirstChildMinHeight;
Selim Cinek131c1e22015-05-11 19:04:49 -0700537 }
538 childState.height = Math.max(childState.height, row.getHeadsUpHeight());
539 // Ensure that the heads up is always visible even when scrolled off from the bottom
540 float bottomPosition = ambientState.getMaxHeadsUpTranslation() - childState.height;
541 childState.yTranslation = Math.min(childState.yTranslation,
542 bottomPosition);
543 }
Selim Cinek684a4422015-04-15 16:18:39 -0700544 if (row.isPinned()) {
Selim Cinek79d79c42015-05-21 16:14:45 -0700545 childState.yTranslation = Math.max(childState.yTranslation,
546 mNotificationsTopPadding);
Selim Cinek496126a2015-12-11 17:02:17 -0800547 childState.height = Math.max(row.getHeadsUpHeight(), childState.height);
Selim Cinek1f3f5442015-04-10 17:54:46 -0700548 if (!isTopEntry) {
Selim Cinek684a4422015-04-15 16:18:39 -0700549 // Ensure that a headsUp doesn't vertically extend further than the heads-up at
550 // the top most z-position
Selim Cinek1f3f5442015-04-10 17:54:46 -0700551 StackViewState topState = resultState.getViewStateForView(topHeadsUpEntry);
552 childState.height = row.getHeadsUpHeight();
Selim Cineke53e6bb2015-04-13 16:14:26 -0700553 childState.yTranslation = topState.yTranslation + topState.height
554 - childState.height;
Selim Cinek1f3f5442015-04-10 17:54:46 -0700555 }
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700556 }
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700557 }
Selim Cinek67b22602014-03-10 15:40:16 +0100558 }
559
Selim Cinek1685e632014-04-08 02:27:49 +0200560 /**
Selim Cinek343e6e22014-04-11 21:23:30 +0200561 * Clamp the yTranslation both up and down to valid positions.
Selim Cinek1685e632014-04-08 02:27:49 +0200562 *
Selim Cinek1685e632014-04-08 02:27:49 +0200563 * @param childViewState the view state of the child
Selim Cinek3e881372015-12-10 15:13:42 -0800564 * @param minHeight the minimum height of this child
Selim Cinek1685e632014-04-08 02:27:49 +0200565 */
Selim Cinek3e881372015-12-10 15:13:42 -0800566 private void clampYTranslation(StackViewState childViewState, int minHeight,
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700567 AmbientState ambientState) {
Selim Cinek3e881372015-12-10 15:13:42 -0800568 clampPositionToBottomStackStart(childViewState, childViewState.height, minHeight,
569 ambientState);
570 clampPositionToTopStackEnd(childViewState, childViewState.height);
Selim Cinek343e6e22014-04-11 21:23:30 +0200571 }
572
573 /**
574 * Clamp the yTranslation of the child down such that its end is at most on the beginning of
575 * the bottom stack.
576 *
577 * @param childViewState the view state of the child
578 * @param childHeight the height of this child
Selim Cinek3e881372015-12-10 15:13:42 -0800579 * @param minHeight the minumum Height of the View
Selim Cinek343e6e22014-04-11 21:23:30 +0200580 */
Selim Cinekb036ca42015-02-20 15:56:28 +0100581 private void clampPositionToBottomStackStart(StackViewState childViewState,
Selim Cinek3e881372015-12-10 15:13:42 -0800582 int childHeight, int minHeight, AmbientState ambientState) {
583
584 int bottomStackStart = ambientState.getInnerHeight()
585 - mBottomStackPeekSize - mCollapseSecondCardPadding;
586 int childStart = bottomStackStart - childHeight;
587 if (childStart < childViewState.yTranslation) {
588 float newHeight = bottomStackStart - childViewState.yTranslation;
589 if (newHeight < minHeight) {
590 newHeight = minHeight;
591 childViewState.yTranslation = bottomStackStart - minHeight;
592 }
593 childViewState.height = (int) newHeight;
594 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200595 }
596
597 /**
598 * 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 -0700599 * stack.
Selim Cinek343e6e22014-04-11 21:23:30 +0200600 *
601 * @param childViewState the view state of the child
602 * @param childHeight the height of this child
603 */
Selim Cinekb036ca42015-02-20 15:56:28 +0100604 private void clampPositionToTopStackEnd(StackViewState childViewState,
Selim Cinek343e6e22014-04-11 21:23:30 +0200605 int childHeight) {
606 childViewState.yTranslation = Math.max(childViewState.yTranslation,
Selim Cinek816c8e42015-11-19 12:00:45 -0800607 mFirstChildMinHeight - childHeight);
Selim Cinek1685e632014-04-08 02:27:49 +0200608 }
609
Selim Cineka59ecc32015-04-07 10:51:49 -0700610 private int getMaxAllowedChildHeight(View child, AmbientState ambientState) {
Selim Cinek1685e632014-04-08 02:27:49 +0200611 if (child instanceof ExpandableNotificationRow) {
612 ExpandableNotificationRow row = (ExpandableNotificationRow) child;
Selim Cinekd2281152015-04-10 14:37:46 -0700613 if (ambientState == null && row.isHeadsUp()
614 || ambientState != null && ambientState.getTopHeadsUpEntry() == child) {
Selim Cinek8d490d42015-04-10 00:05:50 -0700615 int extraSize = row.getIntrinsicHeight() - row.getHeadsUpHeight();
Selim Cinek816c8e42015-11-19 12:00:45 -0800616 return mFirstChildMinHeight + extraSize;
Selim Cineka59ecc32015-04-07 10:51:49 -0700617 }
Jorim Jaggi9cbadd32014-05-01 20:18:31 +0200618 return row.getIntrinsicHeight();
Jorim Jaggibe565df2014-04-28 17:51:23 +0200619 } else if (child instanceof ExpandableView) {
620 ExpandableView expandableView = (ExpandableView) child;
Selim Cinek8d5727f2015-04-28 19:17:32 -0700621 return expandableView.getIntrinsicHeight();
Selim Cinek1685e632014-04-08 02:27:49 +0200622 }
Jorim Jaggibe565df2014-04-28 17:51:23 +0200623 return child == null? mCollapsedSize : child.getHeight();
Selim Cinek1685e632014-04-08 02:27:49 +0200624 }
625
Selim Cinek343e6e22014-04-11 21:23:30 +0200626 private void updateStateForChildTransitioningInBottom(StackScrollAlgorithmState algorithmState,
Selim Cinek816c8e42015-11-19 12:00:45 -0800627 float transitioningPositionStart, ExpandableView child, float currentYPosition,
Selim Cinekb036ca42015-02-20 15:56:28 +0100628 StackViewState childViewState, int childHeight) {
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200629
Selim Cinek343e6e22014-04-11 21:23:30 +0200630 // This is the transitioning element on top of bottom stack, calculate how far we are in.
631 algorithmState.partialInBottom = 1.0f - (
632 (transitioningPositionStart - currentYPosition) / (childHeight +
633 mPaddingBetweenElements));
634
635 // the offset starting at the transitionPosition of the bottom stack
636 float offset = mBottomStackIndentationFunctor.getValue(algorithmState.partialInBottom);
637 algorithmState.itemsInBottomStack += algorithmState.partialInBottom;
Selim Cinek3afd00e2014-08-11 22:32:57 +0200638 int newHeight = childHeight;
Selim Cinek3e881372015-12-10 15:13:42 -0800639 if (childHeight > child.getMinHeight()) {
Selim Cinek3afd00e2014-08-11 22:32:57 +0200640 newHeight = (int) Math.max(Math.min(transitioningPositionStart + offset -
Selim Cinek816c8e42015-11-19 12:00:45 -0800641 mPaddingBetweenElements - currentYPosition, childHeight),
642 child.getMinHeight());
Selim Cinek3afd00e2014-08-11 22:32:57 +0200643 childViewState.height = newHeight;
644 }
645 childViewState.yTranslation = transitioningPositionStart + offset - newHeight
Jorim Jaggife40f7d2014-04-28 15:20:04 +0200646 - mPaddingBetweenElements;
Selim Cinek3afd00e2014-08-11 22:32:57 +0200647
Selim Cinek343e6e22014-04-11 21:23:30 +0200648 // We want at least to be at the end of the top stack when collapsing
Selim Cinek3afd00e2014-08-11 22:32:57 +0200649 clampPositionToTopStackEnd(childViewState, newHeight);
Selim Cinekb036ca42015-02-20 15:56:28 +0100650 childViewState.location = StackViewState.LOCATION_MAIN_AREA;
Selim Cinek67b22602014-03-10 15:40:16 +0100651 }
652
Selim Cinek343e6e22014-04-11 21:23:30 +0200653 private void updateStateForChildFullyInBottomStack(StackScrollAlgorithmState algorithmState,
Selim Cinekb036ca42015-02-20 15:56:28 +0100654 float transitioningPositionStart, StackViewState childViewState,
Selim Cinek3e881372015-12-10 15:13:42 -0800655 int minHeight, AmbientState ambientState) {
Selim Cinek343e6e22014-04-11 21:23:30 +0200656 float currentYPosition;
Selim Cinek67b22602014-03-10 15:40:16 +0100657 algorithmState.itemsInBottomStack += 1.0f;
658 if (algorithmState.itemsInBottomStack < MAX_ITEMS_IN_BOTTOM_STACK) {
659 // We are visually entering the bottom stack
Selim Cinek343e6e22014-04-11 21:23:30 +0200660 currentYPosition = transitioningPositionStart
Jorim Jaggife40f7d2014-04-28 15:20:04 +0200661 + mBottomStackIndentationFunctor.getValue(algorithmState.itemsInBottomStack)
662 - mPaddingBetweenElements;
Selim Cinekb036ca42015-02-20 15:56:28 +0100663 childViewState.location = StackViewState.LOCATION_BOTTOM_STACK_PEEKING;
Selim Cinek67b22602014-03-10 15:40:16 +0100664 } else {
665 // we are fully inside the stack
666 if (algorithmState.itemsInBottomStack > MAX_ITEMS_IN_BOTTOM_STACK + 2) {
667 childViewState.alpha = 0.0f;
668 } else if (algorithmState.itemsInBottomStack
669 > MAX_ITEMS_IN_BOTTOM_STACK + 1) {
670 childViewState.alpha = 1.0f - algorithmState.partialInBottom;
671 }
Selim Cinekb036ca42015-02-20 15:56:28 +0100672 childViewState.location = StackViewState.LOCATION_BOTTOM_STACK_HIDDEN;
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700673 currentYPosition = ambientState.getInnerHeight();
Selim Cinek67b22602014-03-10 15:40:16 +0100674 }
Selim Cinek3e881372015-12-10 15:13:42 -0800675 childViewState.height = minHeight;
676 childViewState.yTranslation = currentYPosition - minHeight;
677 clampPositionToTopStackEnd(childViewState, minHeight);
Selim Cinek67b22602014-03-10 15:40:16 +0100678 }
679
Selim Cinek343e6e22014-04-11 21:23:30 +0200680 private void updateStateForTopStackChild(StackScrollAlgorithmState algorithmState,
681 int numberOfElementsCompletelyIn, int i, int childHeight,
Selim Cinekb036ca42015-02-20 15:56:28 +0100682 StackViewState childViewState, float scrollOffset) {
Selim Cinek67b22602014-03-10 15:40:16 +0100683
Selim Cinek67b22602014-03-10 15:40:16 +0100684
685 // First we calculate the index relative to the current stack window of size at most
686 // {@link #MAX_ITEMS_IN_TOP_STACK}
Selim Cinek343e6e22014-04-11 21:23:30 +0200687 int paddedIndex = i - 1
Selim Cinek67b22602014-03-10 15:40:16 +0100688 - Math.max(numberOfElementsCompletelyIn - MAX_ITEMS_IN_TOP_STACK, 0);
689 if (paddedIndex >= 0) {
Selim Cinek343e6e22014-04-11 21:23:30 +0200690
Selim Cinek67b22602014-03-10 15:40:16 +0100691 // We are currently visually entering the top stack
Selim Cinekad3e5af2014-07-04 12:24:11 +0200692 float distanceToStack = (childHeight + mPaddingBetweenElements)
693 - algorithmState.scrolledPixelsTop;
694 if (i == algorithmState.lastTopStackIndex
695 && distanceToStack > (mTopStackTotalSize + mPaddingBetweenElements)) {
Selim Cinek343e6e22014-04-11 21:23:30 +0200696
697 // Child is currently translating into stack but not yet inside slow down zone.
698 // Handle it like the regular scrollview.
699 childViewState.yTranslation = scrollOffset;
Christoph Studer6e3eceb2014-04-01 18:40:27 +0200700 } else {
Selim Cinek343e6e22014-04-11 21:23:30 +0200701 // Apply stacking logic.
702 float numItemsBefore;
703 if (i == algorithmState.lastTopStackIndex) {
Selim Cinekad3e5af2014-07-04 12:24:11 +0200704 numItemsBefore = 1.0f
705 - (distanceToStack / (mTopStackTotalSize + mPaddingBetweenElements));
Selim Cinek343e6e22014-04-11 21:23:30 +0200706 } else {
707 numItemsBefore = algorithmState.itemsInTopStack - i;
708 }
709 // The end position of the current child
Selim Cinek816c8e42015-11-19 12:00:45 -0800710 float currentChildEndY = mFirstChildMinHeight + mTopStackTotalSize
Selim Cinekad3e5af2014-07-04 12:24:11 +0200711 - mTopStackIndentationFunctor.getValue(numItemsBefore);
Selim Cinek343e6e22014-04-11 21:23:30 +0200712 childViewState.yTranslation = currentChildEndY - childHeight;
Selim Cinek67b22602014-03-10 15:40:16 +0100713 }
Selim Cinekb036ca42015-02-20 15:56:28 +0100714 childViewState.location = StackViewState.LOCATION_TOP_STACK_PEEKING;
Selim Cinek67b22602014-03-10 15:40:16 +0100715 } else {
Selim Cinek343e6e22014-04-11 21:23:30 +0200716 if (paddedIndex == -1) {
717 childViewState.alpha = 1.0f - algorithmState.partialInTop;
718 } else {
719 // We are hidden behind the top card and faded out, so we can hide ourselves.
720 childViewState.alpha = 0.0f;
721 }
Selim Cinek816c8e42015-11-19 12:00:45 -0800722 childViewState.yTranslation = mFirstChildMinHeight - childHeight;
Selim Cinekb036ca42015-02-20 15:56:28 +0100723 childViewState.location = StackViewState.LOCATION_TOP_STACK_HIDDEN;
Selim Cinek67b22602014-03-10 15:40:16 +0100724 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200725
726
Selim Cinek67b22602014-03-10 15:40:16 +0100727 }
728
729 /**
730 * Find the number of items in the top stack and update the result state if needed.
731 *
732 * @param resultState The result state to update if a height change of an child occurs
733 * @param algorithmState The state in which the current pass of the algorithm is currently in
Selim Cinek67b22602014-03-10 15:40:16 +0100734 */
735 private void findNumberOfItemsInTopStackAndUpdateState(StackScrollState resultState,
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700736 StackScrollAlgorithmState algorithmState, AmbientState ambientState) {
Selim Cinek67b22602014-03-10 15:40:16 +0100737
738 // The y Position if the element would be in a regular scrollView
739 float yPositionInScrollView = 0.0f;
Jorim Jaggid4a57442014-04-10 02:45:55 +0200740 int childCount = algorithmState.visibleChildren.size();
Selim Cinek67b22602014-03-10 15:40:16 +0100741
742 // find the number of elements in the top stack.
743 for (int i = 0; i < childCount; i++) {
Jorim Jaggibe565df2014-04-28 17:51:23 +0200744 ExpandableView child = algorithmState.visibleChildren.get(i);
Selim Cinekb036ca42015-02-20 15:56:28 +0100745 StackViewState childViewState = resultState.getViewStateForView(child);
Selim Cineka59ecc32015-04-07 10:51:49 -0700746 int childHeight = getMaxAllowedChildHeight(child, ambientState);
Selim Cinek67b22602014-03-10 15:40:16 +0100747 float yPositionInScrollViewAfterElement = yPositionInScrollView
748 + childHeight
749 + mPaddingBetweenElements;
750 if (yPositionInScrollView < algorithmState.scrollY) {
Selim Cinek816c8e42015-11-19 12:00:45 -0800751 if (i == 0 && algorithmState.scrollY <= mFirstChildMinHeight) {
Selim Cinek343e6e22014-04-11 21:23:30 +0200752
753 // The starting position of the bottom stack peek
Selim Cinekb8f09cf2015-03-16 17:09:28 -0700754 int bottomPeekStart = ambientState.getInnerHeight() - mBottomStackPeekSize -
Selim Cinekd83771e2014-07-04 16:45:31 +0200755 mCollapseSecondCardPadding;
Selim Cinek343e6e22014-04-11 21:23:30 +0200756 // Collapse and expand the first child while the shade is being expanded
757 float maxHeight = mIsExpansionChanging && child == mFirstChildWhileExpanding
758 ? mFirstChildMaxHeight
759 : childHeight;
760 childViewState.height = (int) Math.max(Math.min(bottomPeekStart, maxHeight),
Selim Cinek816c8e42015-11-19 12:00:45 -0800761 mFirstChildMinHeight);
Selim Cinek343e6e22014-04-11 21:23:30 +0200762 algorithmState.itemsInTopStack = 1.0f;
763
764 } else if (yPositionInScrollViewAfterElement < algorithmState.scrollY) {
Selim Cinek67b22602014-03-10 15:40:16 +0100765 // According to the regular scroll view we are fully off screen
766 algorithmState.itemsInTopStack += 1.0f;
Selim Cinek343e6e22014-04-11 21:23:30 +0200767 if (i == 0) {
Selim Cinek816c8e42015-11-19 12:00:45 -0800768 childViewState.height = child.getMinHeight();
Selim Cinek67b22602014-03-10 15:40:16 +0100769 }
770 } else {
771 // According to the regular scroll view we are partially off screen
Selim Cinek343e6e22014-04-11 21:23:30 +0200772
Selim Cinek67b22602014-03-10 15:40:16 +0100773 // How much did we scroll into this child
Selim Cinekad3e5af2014-07-04 12:24:11 +0200774 algorithmState.scrolledPixelsTop = algorithmState.scrollY
775 - yPositionInScrollView;
Selim Cinek343e6e22014-04-11 21:23:30 +0200776 algorithmState.partialInTop = (algorithmState.scrolledPixelsTop) / (childHeight
Selim Cinek67b22602014-03-10 15:40:16 +0100777 + mPaddingBetweenElements);
778
779 // Our element can be expanded, so this can get negative
780 algorithmState.partialInTop = Math.max(0.0f, algorithmState.partialInTop);
781 algorithmState.itemsInTopStack += algorithmState.partialInTop;
Selim Cinekad3e5af2014-07-04 12:24:11 +0200782
Selim Cinek343e6e22014-04-11 21:23:30 +0200783 if (i == 0) {
Selim Cinekad3e5af2014-07-04 12:24:11 +0200784 // If it is expanded we have to collapse it to a new size
785 float newSize = yPositionInScrollViewAfterElement
786 - mPaddingBetweenElements
Selim Cinek816c8e42015-11-19 12:00:45 -0800787 - algorithmState.scrollY + mFirstChildMinHeight;
788 newSize = Math.max(mFirstChildMinHeight, newSize);
Selim Cinek4e456be2014-06-12 18:09:43 +0200789 algorithmState.itemsInTopStack = 1.0f;
Selim Cinek67b22602014-03-10 15:40:16 +0100790 childViewState.height = (int) newSize;
Selim Cinek67b22602014-03-10 15:40:16 +0100791 }
Selim Cinek343e6e22014-04-11 21:23:30 +0200792 algorithmState.lastTopStackIndex = i;
793 break;
Selim Cinek67b22602014-03-10 15:40:16 +0100794 }
795 } else {
Selim Cinek343e6e22014-04-11 21:23:30 +0200796 algorithmState.lastTopStackIndex = i - 1;
Selim Cinek67b22602014-03-10 15:40:16 +0100797 // We are already past the stack so we can end the loop
798 break;
799 }
800 yPositionInScrollView = yPositionInScrollViewAfterElement;
801 }
802 }
803
804 /**
805 * Calculate the Z positions for all children based on the number of items in both stacks and
806 * save it in the resultState
807 *
808 * @param resultState The result state to update the zTranslation values
809 * @param algorithmState The state in which the current pass of the algorithm is currently in
810 */
811 private void updateZValuesForState(StackScrollState resultState,
812 StackScrollAlgorithmState algorithmState) {
Jorim Jaggid4a57442014-04-10 02:45:55 +0200813 int childCount = algorithmState.visibleChildren.size();
Selim Cinek67b22602014-03-10 15:40:16 +0100814 for (int i = 0; i < childCount; i++) {
Jorim Jaggid4a57442014-04-10 02:45:55 +0200815 View child = algorithmState.visibleChildren.get(i);
Selim Cinekb036ca42015-02-20 15:56:28 +0100816 StackViewState childViewState = resultState.getViewStateForView(child);
Selim Cinek67b22602014-03-10 15:40:16 +0100817 if (i < algorithmState.itemsInTopStack) {
818 float stackIndex = algorithmState.itemsInTopStack - i;
Selim Cinekc5baa3e2014-10-29 19:04:19 +0100819
820 // Ensure that the topmost item is a little bit higher than the rest when fully
821 // scrolled, to avoid drawing errors when swiping it out
822 float max = MAX_ITEMS_IN_TOP_STACK + (i == 0 ? 2.5f : 2);
823 stackIndex = Math.min(stackIndex, max);
Selim Cinek4e456be2014-06-12 18:09:43 +0200824 if (i == 0 && algorithmState.itemsInTopStack < 2.0f) {
825
826 // We only have the top item and an additional item in the top stack,
827 // Interpolate the index from 0 to 2 while the second item is
828 // translating in.
829 stackIndex -= 1.0f;
Selim Cinek816c8e42015-11-19 12:00:45 -0800830 if (algorithmState.scrollY > mFirstChildMinHeight) {
Selim Cinek4e456be2014-06-12 18:09:43 +0200831
832 // Since there is a shadow treshhold, we cant just interpolate from 0 to
833 // 2 but we interpolate from 0.1f to 2.0f when scrolled in. The jump in
834 // height will not be noticable since we have padding in between.
835 stackIndex = 0.1f + stackIndex * 1.9f;
836 }
837 }
Selim Cinek67b22602014-03-10 15:40:16 +0100838 childViewState.zTranslation = mZBasicHeight
839 + stackIndex * mZDistanceBetweenElements;
840 } else if (i > (childCount - 1 - algorithmState.itemsInBottomStack)) {
841 float numItemsAbove = i - (childCount - 1 - algorithmState.itemsInBottomStack);
842 float translationZ = mZBasicHeight
843 - numItemsAbove * mZDistanceBetweenElements;
844 childViewState.zTranslation = translationZ;
845 } else {
846 childViewState.zTranslation = mZBasicHeight;
847 }
848 }
849 }
850
Selim Cinek1685e632014-04-08 02:27:49 +0200851 public void onExpansionStarted(StackScrollState currentState) {
852 mIsExpansionChanging = true;
853 mExpandedOnStart = mIsExpanded;
854 ViewGroup hostView = currentState.getHostView();
855 updateFirstChildHeightWhileExpanding(hostView);
856 }
857
858 private void updateFirstChildHeightWhileExpanding(ViewGroup hostView) {
Jorim Jaggibe565df2014-04-28 17:51:23 +0200859 mFirstChildWhileExpanding = (ExpandableView) findFirstVisibleChild(hostView);
Jorim Jaggi9f347ae2014-04-11 00:47:18 +0200860 if (mFirstChildWhileExpanding != null) {
Selim Cinek1685e632014-04-08 02:27:49 +0200861 if (mExpandedOnStart) {
862
863 // We are collapsing the shade, so the first child can get as most as high as the
Selim Cinek02af41e2014-10-14 15:46:43 +0200864 // current height or the end value of the animation.
865 mFirstChildMaxHeight = StackStateAnimator.getFinalActualHeight(
866 mFirstChildWhileExpanding);
Selim Cinekd2281152015-04-10 14:37:46 -0700867 if (mFirstChildWhileExpanding instanceof ExpandableNotificationRow) {
868 ExpandableNotificationRow row =
869 (ExpandableNotificationRow) mFirstChildWhileExpanding;
870 if (row.isHeadsUp()) {
Selim Cinek816c8e42015-11-19 12:00:45 -0800871 mFirstChildMaxHeight += mFirstChildMinHeight - row.getHeadsUpHeight();
Selim Cinekd2281152015-04-10 14:37:46 -0700872 }
873 }
Selim Cinek1685e632014-04-08 02:27:49 +0200874 } else {
Selim Cinek31094df2014-08-14 19:28:15 +0200875 updateFirstChildMaxSizeToMaxHeight();
Selim Cinek1685e632014-04-08 02:27:49 +0200876 }
877 } else {
Selim Cinek1685e632014-04-08 02:27:49 +0200878 mFirstChildMaxHeight = 0;
879 }
880 }
881
Selim Cinek31094df2014-08-14 19:28:15 +0200882 private void updateFirstChildMaxSizeToMaxHeight() {
883 // We are expanding the shade, expand it to its full height.
884 if (!isMaxSizeInitialized(mFirstChildWhileExpanding)) {
885
886 // This child was not layouted yet, wait for a layout pass
887 mFirstChildWhileExpanding
888 .addOnLayoutChangeListener(new View.OnLayoutChangeListener() {
889 @Override
890 public void onLayoutChange(View v, int left, int top, int right,
891 int bottom, int oldLeft, int oldTop, int oldRight,
892 int oldBottom) {
893 if (mFirstChildWhileExpanding != null) {
894 mFirstChildMaxHeight = getMaxAllowedChildHeight(
Selim Cineka59ecc32015-04-07 10:51:49 -0700895 mFirstChildWhileExpanding, null);
Selim Cinek31094df2014-08-14 19:28:15 +0200896 } else {
897 mFirstChildMaxHeight = 0;
898 }
899 v.removeOnLayoutChangeListener(this);
900 }
901 });
902 } else {
Selim Cineka59ecc32015-04-07 10:51:49 -0700903 mFirstChildMaxHeight = getMaxAllowedChildHeight(mFirstChildWhileExpanding, null);
Selim Cinek31094df2014-08-14 19:28:15 +0200904 }
905 }
906
Selim Cinek7d447722014-06-10 15:51:59 +0200907 private boolean isMaxSizeInitialized(ExpandableView child) {
908 if (child instanceof ExpandableNotificationRow) {
909 ExpandableNotificationRow row = (ExpandableNotificationRow) child;
Selim Cinek31094df2014-08-14 19:28:15 +0200910 return row.isMaxExpandHeightInitialized();
Selim Cinek7d447722014-06-10 15:51:59 +0200911 }
912 return child == null || child.getWidth() != 0;
913 }
914
Jorim Jaggi9f347ae2014-04-11 00:47:18 +0200915 private View findFirstVisibleChild(ViewGroup container) {
916 int childCount = container.getChildCount();
917 for (int i = 0; i < childCount; i++) {
918 View child = container.getChildAt(i);
919 if (child.getVisibility() != View.GONE) {
920 return child;
921 }
922 }
923 return null;
924 }
925
Selim Cinek1685e632014-04-08 02:27:49 +0200926 public void onExpansionStopped() {
927 mIsExpansionChanging = false;
928 mFirstChildWhileExpanding = null;
929 }
930
931 public void setIsExpanded(boolean isExpanded) {
932 this.mIsExpanded = isExpanded;
933 }
934
Selim Cinek816c8e42015-11-19 12:00:45 -0800935 public void notifyChildrenChanged(final NotificationStackScrollLayout hostView) {
936 int firstItemMinHeight = hostView.getFirstItemMinHeight();
937 if (firstItemMinHeight != mFirstChildMinHeight) {
938 mFirstChildMinHeight = firstItemMinHeight;
939 }
Selim Cinek1685e632014-04-08 02:27:49 +0200940 if (mIsExpansionChanging) {
Selim Cinek02af41e2014-10-14 15:46:43 +0200941 hostView.post(new Runnable() {
942 @Override
943 public void run() {
944 updateFirstChildHeightWhileExpanding(hostView);
945 }
946 });
Selim Cinek1685e632014-04-08 02:27:49 +0200947 }
948 }
949
Selim Cinek34c0a8d2014-05-12 00:01:43 +0200950 public void setDimmed(boolean dimmed) {
951 updatePadding(dimmed);
952 }
953
Selim Cinek31094df2014-08-14 19:28:15 +0200954 public void onReset(ExpandableView view) {
955 if (view.equals(mFirstChildWhileExpanding)) {
956 updateFirstChildMaxSizeToMaxHeight();
957 }
958 }
959
Selim Cinekd2281152015-04-10 14:37:46 -0700960 public void setHeadsUpManager(HeadsUpManager headsUpManager) {
961 mHeadsUpManager = headsUpManager;
962 }
963
Selim Cinek67b22602014-03-10 15:40:16 +0100964 class StackScrollAlgorithmState {
965
966 /**
967 * The scroll position of the algorithm
968 */
969 public int scrollY;
970
971 /**
972 * The quantity of items which are in the top stack.
973 */
974 public float itemsInTopStack;
975
976 /**
977 * how far in is the element currently transitioning into the top stack
978 */
979 public float partialInTop;
980
981 /**
Selim Cinek343e6e22014-04-11 21:23:30 +0200982 * The number of pixels the last child in the top stack has scrolled in to the stack
983 */
984 public float scrolledPixelsTop;
985
986 /**
Selim Cinek67b22602014-03-10 15:40:16 +0100987 * The last item index which is in the top stack.
Selim Cinek67b22602014-03-10 15:40:16 +0100988 */
989 public int lastTopStackIndex;
990
991 /**
992 * The quantity of items which are in the bottom stack.
993 */
994 public float itemsInBottomStack;
995
996 /**
997 * how far in is the element currently transitioning into the bottom stack
998 */
999 public float partialInBottom;
Jorim Jaggid4a57442014-04-10 02:45:55 +02001000
1001 /**
1002 * The children from the host view which are not gone.
1003 */
Jorim Jaggibe565df2014-04-28 17:51:23 +02001004 public final ArrayList<ExpandableView> visibleChildren = new ArrayList<ExpandableView>();
Selim Cinek67b22602014-03-10 15:40:16 +01001005 }
1006
1007}