StackScrollAlgorithm.java revision 496126aa813df9517e6ca0eec983849e5fc1bbaf
1/*
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;
20import android.util.DisplayMetrics;
21import android.util.Log;
22import android.view.View;
23import android.view.ViewGroup;
24
25import com.android.systemui.R;
26import com.android.systemui.statusbar.ExpandableNotificationRow;
27import com.android.systemui.statusbar.ExpandableView;
28import com.android.systemui.statusbar.policy.HeadsUpManager;
29
30import java.util.ArrayList;
31import java.util.List;
32
33/**
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
40    private static final String LOG_TAG = "StackScrollAlgorithm";
41
42    private static final int MAX_ITEMS_IN_BOTTOM_STACK = 3;
43    private static final int MAX_ITEMS_IN_TOP_STACK = 3;
44
45    public static final float DIMMED_SCALE = 0.98f;
46
47    private int mPaddingBetweenElements;
48    private int mCollapsedSize;
49    private int mTopStackPeekSize;
50    private int mBottomStackPeekSize;
51    private int mZDistanceBetweenElements;
52    private int mZBasicHeight;
53    private int mRoundedRectCornerRadius;
54
55    private StackIndentationFunctor mTopStackIndentationFunctor;
56    private StackIndentationFunctor mBottomStackIndentationFunctor;
57
58    private StackScrollAlgorithmState mTempAlgorithmState = new StackScrollAlgorithmState();
59    private boolean mIsExpansionChanging;
60    private int mFirstChildMaxHeight;
61    private boolean mIsExpanded;
62    private ExpandableView mFirstChildWhileExpanding;
63    private boolean mExpandedOnStart;
64    private int mTopStackTotalSize;
65    private int mPaddingBetweenElementsDimmed;
66    private int mPaddingBetweenElementsNormal;
67    private int mNotificationsTopPadding;
68    private int mBottomStackSlowDownLength;
69    private int mTopStackSlowDownLength;
70    private int mCollapseSecondCardPadding;
71    private boolean mIsSmallScreen;
72    private int mMaxNotificationHeight;
73    private boolean mScaleDimmed;
74    private HeadsUpManager mHeadsUpManager;
75    private int mFirstChildMinHeight;
76
77    public StackScrollAlgorithm(Context context) {
78        initConstants(context);
79        updatePadding(false);
80    }
81
82    private void updatePadding(boolean dimmed) {
83        mPaddingBetweenElements = dimmed && mScaleDimmed
84                ? mPaddingBetweenElementsDimmed
85                : mPaddingBetweenElementsNormal;
86        mTopStackTotalSize = mTopStackSlowDownLength + mPaddingBetweenElements
87                + mTopStackPeekSize;
88        mTopStackIndentationFunctor = new PiecewiseLinearIndentationFunctor(
89                MAX_ITEMS_IN_TOP_STACK,
90                mTopStackPeekSize,
91                mTopStackTotalSize - mTopStackPeekSize,
92                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;
102    }
103
104    private void initConstants(Context context) {
105        mPaddingBetweenElementsDimmed = context.getResources()
106                .getDimensionPixelSize(R.dimen.notification_padding_dimmed);
107        mPaddingBetweenElementsNormal = context.getResources()
108                .getDimensionPixelSize(R.dimen.notification_padding);
109        mNotificationsTopPadding = context.getResources()
110                .getDimensionPixelSize(R.dimen.notifications_top_padding);
111        mCollapsedSize = context.getResources()
112                .getDimensionPixelSize(R.dimen.notification_min_height);
113        mMaxNotificationHeight = context.getResources()
114                .getDimensionPixelSize(R.dimen.notification_max_height);
115        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;
122        mBottomStackSlowDownLength = context.getResources()
123                .getDimensionPixelSize(R.dimen.bottom_stack_slow_down_length);
124        mTopStackSlowDownLength = context.getResources()
125                .getDimensionPixelSize(R.dimen.top_stack_slow_down_length);
126        mRoundedRectCornerRadius = context.getResources().getDimensionPixelSize(
127                R.dimen.notification_material_rounded_rect_radius);
128        mCollapseSecondCardPadding = context.getResources().getDimensionPixelSize(
129                R.dimen.notification_collapse_second_card_padding);
130        mScaleDimmed = context.getResources().getDisplayMetrics().densityDpi
131                >= DisplayMetrics.DENSITY_420;
132    }
133
134    public boolean shouldScaleDimmed() {
135        return mScaleDimmed;
136    }
137
138    public void getStackScrollState(AmbientState ambientState, StackScrollState resultState) {
139        // 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
146        algorithmState.itemsInTopStack = 0.0f;
147        algorithmState.partialInTop = 0.0f;
148        algorithmState.lastTopStackIndex = 0;
149        algorithmState.scrolledPixelsTop = 0;
150        algorithmState.itemsInBottomStack = 0.0f;
151        algorithmState.partialInBottom = 0.0f;
152        float bottomOverScroll = ambientState.getOverScrollAmount(false /* onTop */);
153
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);
159        algorithmState.scrollY = (int) (scrollY + mFirstChildMinHeight + bottomOverScroll);
160
161        updateVisibleChildren(resultState, algorithmState);
162
163        // Phase 1:
164        findNumberOfItemsInTopStackAndUpdateState(resultState, algorithmState, ambientState);
165
166        // Phase 2:
167        updatePositionsForState(resultState, algorithmState, ambientState);
168
169        // Phase 3:
170        updateZValuesForState(resultState, algorithmState);
171
172        handleDraggedViews(ambientState, resultState, algorithmState);
173        updateDimmedActivatedHideSensitive(ambientState, resultState, algorithmState);
174        updateClipping(resultState, algorithmState, ambientState);
175        updateSpeedBumpState(resultState, algorithmState, ambientState.getSpeedBumpIndex());
176        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        }
189    }
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);
196            StackViewState childViewState = resultState.getViewStateForView(child);
197
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;
201        }
202    }
203
204    private void updateClipping(StackScrollState resultState,
205            StackScrollAlgorithmState algorithmState, AmbientState ambientState) {
206        boolean dismissAllInProgress = ambientState.isDismissAllInProgress();
207        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);
213            StackViewState state = resultState.getViewStateForView(child);
214            float newYTranslation = state.yTranslation + state.height * (1f - state.scale) / 2f;
215            float newHeight = state.height * state.scale;
216            // apply clipping and shadow
217            float newNotificationEnd = newYTranslation + newHeight;
218
219            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) {
228
229                    // 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            }
238
239            updateChildClippingAndBackground(state, newHeight, clipHeight,
240                    newHeight - (previousNotificationStart - newYTranslation));
241
242            if (dismissAllInProgress) {
243                state.clipTopAmount = Math.max(child.getMinClipTopAmount(), state.clipTopAmount);
244            }
245
246            if (!child.isTransparent()) {
247                // Only update the previous values if we are not transparent,
248                // otherwise we would clip to a transparent view.
249                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                }
256            }
257        }
258    }
259
260    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
265    /**
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     */
274    private void updateChildClippingAndBackground(StackViewState state, float realHeight,
275            float clipHeight, float backgroundHeight) {
276        if (realHeight > clipHeight) {
277            // Rather overlap than create a hole.
278            state.topOverLap = (int) Math.floor((realHeight - clipHeight) / state.scale);
279        } else {
280            state.topOverLap = 0;
281        }
282        if (realHeight > backgroundHeight) {
283            // Rather overlap than create a hole.
284            state.clipTopAmount = (int) Math.floor((realHeight - backgroundHeight) / state.scale);
285        } else {
286            state.clipTopAmount = 0;
287        }
288    }
289
290    /**
291     * Updates the dimmed, activated and hiding sensitive states of the children.
292     */
293    private void updateDimmedActivatedHideSensitive(AmbientState ambientState,
294            StackScrollState resultState, StackScrollAlgorithmState algorithmState) {
295        boolean dimmed = ambientState.isDimmed();
296        boolean dark = ambientState.isDark();
297        boolean hideSensitive = ambientState.isHideSensitive();
298        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);
302            StackViewState childViewState = resultState.getViewStateForView(child);
303            childViewState.dimmed = dimmed;
304            childViewState.dark = dark;
305            childViewState.hideSensitive = hideSensitive;
306            boolean isActivatedChild = activatedChild == child;
307            childViewState.scale = !mScaleDimmed || !dimmed || isActivatedChild
308                    ? 1.0f
309                    : DIMMED_SCALE;
310            if (dimmed && isActivatedChild) {
311                childViewState.zTranslation += 2.0f * mZDistanceBetweenElements;
312            }
313        }
314    }
315
316    /**
317     * Handle the special state when views are being dragged
318     */
319    private void handleDraggedViews(AmbientState ambientState, StackScrollState resultState,
320            StackScrollAlgorithmState algorithmState) {
321        ArrayList<View> draggedViews = ambientState.getDraggedViews();
322        for (View draggedView : draggedViews) {
323            int childIndex = algorithmState.visibleChildren.indexOf(draggedView);
324            if (childIndex >= 0 && childIndex < algorithmState.visibleChildren.size() - 1) {
325                View nextChild = algorithmState.visibleChildren.get(childIndex + 1);
326                if (!draggedViews.contains(nextChild)) {
327                    // only if the view is not dragged itself we modify its state to be fully
328                    // visible
329                    StackViewState viewState = resultState.getViewStateForView(
330                            nextChild);
331                    // The child below the dragged one must be fully visible
332                    if (ambientState.isShadeExpanded()) {
333                        viewState.alpha = 1;
334                    }
335                }
336
337                // Lets set the alpha to the one it currently has, as its currently being dragged
338                StackViewState viewState = resultState.getViewStateForView(draggedView);
339                // The dragged child should keep the set alpha
340                viewState.alpha = draggedView.getAlpha();
341            }
342        }
343    }
344
345    /**
346     * Update the visible children on the state.
347     */
348    private void updateVisibleChildren(StackScrollState resultState,
349            StackScrollAlgorithmState state) {
350        ViewGroup hostView = resultState.getHostView();
351        int childCount = hostView.getChildCount();
352        state.visibleChildren.clear();
353        state.visibleChildren.ensureCapacity(childCount);
354        int notGoneIndex = 0;
355        for (int i = 0; i < childCount; i++) {
356            ExpandableView v = (ExpandableView) hostView.getChildAt(i);
357            if (v.getVisibility() != View.GONE) {
358                notGoneIndex = updateNotGoneIndex(resultState, state, notGoneIndex, v);
359                if (v instanceof ExpandableNotificationRow) {
360                    ExpandableNotificationRow row = (ExpandableNotificationRow) v;
361
362                    // handle the notgoneIndex for the children as well
363                    List<ExpandableNotificationRow> children =
364                            row.getNotificationChildren();
365                    if (row.isSummaryWithChildren() && children != null) {
366                        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                }
376            }
377        }
378    }
379
380    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
390    /**
391     * Determine the positions for the views. This is the main part of the algorithm.
392     *
393     * @param resultState The result state to update if a change to the properties of a child occurs
394     * @param algorithmState The state in which the current pass of the algorithm is currently in
395     * @param ambientState The current ambient state
396     */
397    private void updatePositionsForState(StackScrollState resultState,
398            StackScrollAlgorithmState algorithmState, AmbientState ambientState) {
399
400        // The starting position of the bottom stack peek
401        float bottomPeekStart = ambientState.getInnerHeight() - mBottomStackPeekSize;
402
403        // The position where the bottom stack starts.
404        float bottomStackStart = bottomPeekStart - mBottomStackSlowDownLength;
405
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
412        // 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
416        int childCount = algorithmState.visibleChildren.size();
417        int numberOfElementsCompletelyIn = algorithmState.partialInTop == 1.0f
418                ? algorithmState.lastTopStackIndex
419                : (int) algorithmState.itemsInTopStack;
420        for (int i = 0; i < childCount; i++) {
421            ExpandableView child = algorithmState.visibleChildren.get(i);
422            StackViewState childViewState = resultState.getViewStateForView(child);
423            childViewState.location = StackViewState.LOCATION_UNKNOWN;
424            int childHeight = getMaxAllowedChildHeight(child, ambientState);
425            int minHeight = child.getMinHeight();
426            float yPositionInScrollViewAfterElement = yPositionInScrollView
427                    + childHeight
428                    + mPaddingBetweenElements;
429            float scrollOffset = yPositionInScrollView - algorithmState.scrollY +
430                    mFirstChildMinHeight;
431
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) {
446                // Case 1:
447                // We are in the top Stack
448                updateStateForTopStackChild(algorithmState,
449                        numberOfElementsCompletelyIn, i, childHeight, childViewState, scrollOffset);
450                clampPositionToTopStackEnd(childViewState, childHeight);
451
452                // check if we are overlapping with the bottom stack
453                if (childViewState.yTranslation + childHeight + mPaddingBetweenElements
454                        >= bottomStackStart && !mIsExpansionChanging && i != 0) {
455                    // we just collapse this element slightly
456                    int newSize = (int) Math.max(bottomStackStart - mPaddingBetweenElements -
457                            childViewState.yTranslation, minHeight);
458                    childViewState.height = newSize;
459                    updateStateForChildTransitioningInBottom(algorithmState, bottomStackStart,
460                            child, childViewState.yTranslation, childViewState,
461                            childHeight);
462                }
463                clampPositionToBottomStackStart(childViewState, childViewState.height,
464                        minHeight, ambientState);
465            } else if (nextYPosition >= bottomStackStart) {
466                // Case 2:
467                // We are in the bottom stack.
468                if (currentYPosition >= bottomStackStart) {
469                    // 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
471                    updateStateForChildFullyInBottomStack(algorithmState,
472                            bottomStackStart, childViewState, minHeight, ambientState);
473                } else {
474                    // According to the regular scroll view we are currently translating out of /
475                    // into the bottom of the screen
476                    updateStateForChildTransitioningInBottom(algorithmState,
477                            bottomStackStart, child, currentYPosition,
478                            childViewState, childHeight);
479                }
480            } else {
481                // Case 3:
482                // We are in the regular scroll area.
483                childViewState.location = StackViewState.LOCATION_MAIN_AREA;
484                clampYTranslation(childViewState, childHeight, ambientState);
485            }
486
487            // The first card is always rendered.
488            if (i == 0) {
489                childViewState.alpha = 1.0f;
490                childViewState.yTranslation = Math.max(
491                        mFirstChildMinHeight - algorithmState.scrollY, 0);
492                if (childViewState.yTranslation + childViewState.height
493                        > bottomPeekStart - mCollapseSecondCardPadding) {
494                    childViewState.height = (int) Math.max(
495                            bottomPeekStart - mCollapseSecondCardPadding
496                                    - childViewState.yTranslation, mFirstChildMinHeight);
497                }
498                childViewState.location = StackViewState.LOCATION_FIRST_CARD;
499            }
500            if (childViewState.location == StackViewState.LOCATION_UNKNOWN) {
501                Log.wtf(LOG_TAG, "Failed to assign location for child " + i);
502            }
503            currentYPosition = childViewState.yTranslation + childHeight + mPaddingBetweenElements;
504            yPositionInScrollView = yPositionInScrollViewAfterElement;
505
506            if (ambientState.isShadeExpanded() && topHeadsUpEntry != null
507                    && child != topHeadsUpEntry) {
508                childViewState.yTranslation += topHeadsUpEntry.getHeadsUpHeight() -
509                        mFirstChildMinHeight;
510            }
511            childViewState.yTranslation += ambientState.getTopPadding()
512                    + ambientState.getStackTranslation();
513        }
514        updateHeadsUpStates(resultState, algorithmState, ambientState);
515    }
516
517    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            }
532            StackViewState childState = resultState.getViewStateForView(row);
533            boolean isTopEntry = topHeadsUpEntry == row;
534            if (mIsExpanded) {
535                if (isTopEntry) {
536                    childState.height += row.getHeadsUpHeight() - mFirstChildMinHeight;
537                }
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            }
544            if (row.isPinned()) {
545                childState.yTranslation = Math.max(childState.yTranslation,
546                        mNotificationsTopPadding);
547                childState.height = Math.max(row.getHeadsUpHeight(), childState.height);
548                if (!isTopEntry) {
549                    // Ensure that a headsUp doesn't vertically extend further than the heads-up at
550                    // the top most z-position
551                    StackViewState topState = resultState.getViewStateForView(topHeadsUpEntry);
552                    childState.height = row.getHeadsUpHeight();
553                    childState.yTranslation = topState.yTranslation + topState.height
554                            - childState.height;
555                }
556            }
557        }
558    }
559
560    /**
561     * Clamp the yTranslation both up and down to valid positions.
562     *
563     * @param childViewState the view state of the child
564     * @param minHeight the minimum height of this child
565     */
566    private void clampYTranslation(StackViewState childViewState, int minHeight,
567            AmbientState ambientState) {
568        clampPositionToBottomStackStart(childViewState, childViewState.height, minHeight,
569                ambientState);
570        clampPositionToTopStackEnd(childViewState, childViewState.height);
571    }
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
579     * @param minHeight the minumum Height of the View
580     */
581    private void clampPositionToBottomStackStart(StackViewState childViewState,
582            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        }
595    }
596
597    /**
598     * Clamp the yTranslation of the child up such that its end is at lest on the end of the top
599     * stack.
600     *
601     * @param childViewState the view state of the child
602     * @param childHeight the height of this child
603     */
604    private void clampPositionToTopStackEnd(StackViewState childViewState,
605            int childHeight) {
606        childViewState.yTranslation = Math.max(childViewState.yTranslation,
607                mFirstChildMinHeight - childHeight);
608    }
609
610    private int getMaxAllowedChildHeight(View child, AmbientState ambientState) {
611        if (child instanceof ExpandableNotificationRow) {
612            ExpandableNotificationRow row = (ExpandableNotificationRow) child;
613            if (ambientState == null && row.isHeadsUp()
614                    || ambientState != null && ambientState.getTopHeadsUpEntry() == child) {
615                int extraSize = row.getIntrinsicHeight() - row.getHeadsUpHeight();
616                return mFirstChildMinHeight + extraSize;
617            }
618            return row.getIntrinsicHeight();
619        } else if (child instanceof ExpandableView) {
620            ExpandableView expandableView = (ExpandableView) child;
621            return expandableView.getIntrinsicHeight();
622        }
623        return child == null? mCollapsedSize : child.getHeight();
624    }
625
626    private void updateStateForChildTransitioningInBottom(StackScrollAlgorithmState algorithmState,
627            float transitioningPositionStart, ExpandableView child, float currentYPosition,
628            StackViewState childViewState, int childHeight) {
629
630        // 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;
638        int newHeight = childHeight;
639        if (childHeight > child.getMinHeight()) {
640            newHeight = (int) Math.max(Math.min(transitioningPositionStart + offset -
641                    mPaddingBetweenElements - currentYPosition, childHeight),
642                    child.getMinHeight());
643            childViewState.height = newHeight;
644        }
645        childViewState.yTranslation = transitioningPositionStart + offset - newHeight
646                - mPaddingBetweenElements;
647
648        // We want at least to be at the end of the top stack when collapsing
649        clampPositionToTopStackEnd(childViewState, newHeight);
650        childViewState.location = StackViewState.LOCATION_MAIN_AREA;
651    }
652
653    private void updateStateForChildFullyInBottomStack(StackScrollAlgorithmState algorithmState,
654            float transitioningPositionStart, StackViewState childViewState,
655            int minHeight, AmbientState ambientState) {
656        float currentYPosition;
657        algorithmState.itemsInBottomStack += 1.0f;
658        if (algorithmState.itemsInBottomStack < MAX_ITEMS_IN_BOTTOM_STACK) {
659            // We are visually entering the bottom stack
660            currentYPosition = transitioningPositionStart
661                    + mBottomStackIndentationFunctor.getValue(algorithmState.itemsInBottomStack)
662                    - mPaddingBetweenElements;
663            childViewState.location = StackViewState.LOCATION_BOTTOM_STACK_PEEKING;
664        } 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            }
672            childViewState.location = StackViewState.LOCATION_BOTTOM_STACK_HIDDEN;
673            currentYPosition = ambientState.getInnerHeight();
674        }
675        childViewState.height = minHeight;
676        childViewState.yTranslation = currentYPosition - minHeight;
677        clampPositionToTopStackEnd(childViewState, minHeight);
678    }
679
680    private void updateStateForTopStackChild(StackScrollAlgorithmState algorithmState,
681            int numberOfElementsCompletelyIn, int i, int childHeight,
682            StackViewState childViewState, float scrollOffset) {
683
684
685        // First we calculate the index relative to the current stack window of size at most
686        // {@link #MAX_ITEMS_IN_TOP_STACK}
687        int paddedIndex = i - 1
688                - Math.max(numberOfElementsCompletelyIn - MAX_ITEMS_IN_TOP_STACK, 0);
689        if (paddedIndex >= 0) {
690
691            // We are currently visually entering the top stack
692            float distanceToStack = (childHeight + mPaddingBetweenElements)
693                    - algorithmState.scrolledPixelsTop;
694            if (i == algorithmState.lastTopStackIndex
695                    && distanceToStack > (mTopStackTotalSize + mPaddingBetweenElements)) {
696
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;
700            } else {
701                // Apply stacking logic.
702                float numItemsBefore;
703                if (i == algorithmState.lastTopStackIndex) {
704                    numItemsBefore = 1.0f
705                            - (distanceToStack / (mTopStackTotalSize + mPaddingBetweenElements));
706                } else {
707                    numItemsBefore = algorithmState.itemsInTopStack - i;
708                }
709                // The end position of the current child
710                float currentChildEndY = mFirstChildMinHeight + mTopStackTotalSize
711                        - mTopStackIndentationFunctor.getValue(numItemsBefore);
712                childViewState.yTranslation = currentChildEndY - childHeight;
713            }
714            childViewState.location = StackViewState.LOCATION_TOP_STACK_PEEKING;
715        } else {
716            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            }
722            childViewState.yTranslation = mFirstChildMinHeight - childHeight;
723            childViewState.location = StackViewState.LOCATION_TOP_STACK_HIDDEN;
724        }
725
726
727    }
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
734     */
735    private void findNumberOfItemsInTopStackAndUpdateState(StackScrollState resultState,
736            StackScrollAlgorithmState algorithmState, AmbientState ambientState) {
737
738        // The y Position if the element would be in a regular scrollView
739        float yPositionInScrollView = 0.0f;
740        int childCount = algorithmState.visibleChildren.size();
741
742        // find the number of elements in the top stack.
743        for (int i = 0; i < childCount; i++) {
744            ExpandableView child = algorithmState.visibleChildren.get(i);
745            StackViewState childViewState = resultState.getViewStateForView(child);
746            int childHeight = getMaxAllowedChildHeight(child, ambientState);
747            float yPositionInScrollViewAfterElement = yPositionInScrollView
748                    + childHeight
749                    + mPaddingBetweenElements;
750            if (yPositionInScrollView < algorithmState.scrollY) {
751                if (i == 0 && algorithmState.scrollY <= mFirstChildMinHeight) {
752
753                    // The starting position of the bottom stack peek
754                    int bottomPeekStart = ambientState.getInnerHeight() - mBottomStackPeekSize -
755                            mCollapseSecondCardPadding;
756                    // 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),
761                            mFirstChildMinHeight);
762                    algorithmState.itemsInTopStack = 1.0f;
763
764                } else if (yPositionInScrollViewAfterElement < algorithmState.scrollY) {
765                    // According to the regular scroll view we are fully off screen
766                    algorithmState.itemsInTopStack += 1.0f;
767                    if (i == 0) {
768                        childViewState.height = child.getMinHeight();
769                    }
770                } else {
771                    // According to the regular scroll view we are partially off screen
772
773                    // How much did we scroll into this child
774                    algorithmState.scrolledPixelsTop = algorithmState.scrollY
775                            - yPositionInScrollView;
776                    algorithmState.partialInTop = (algorithmState.scrolledPixelsTop) / (childHeight
777                            + 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;
782
783                    if (i == 0) {
784                        // If it is expanded we have to collapse it to a new size
785                        float newSize = yPositionInScrollViewAfterElement
786                                - mPaddingBetweenElements
787                                - algorithmState.scrollY + mFirstChildMinHeight;
788                        newSize = Math.max(mFirstChildMinHeight, newSize);
789                        algorithmState.itemsInTopStack = 1.0f;
790                        childViewState.height = (int) newSize;
791                    }
792                    algorithmState.lastTopStackIndex = i;
793                    break;
794                }
795            } else {
796                algorithmState.lastTopStackIndex = i - 1;
797                // 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) {
813        int childCount = algorithmState.visibleChildren.size();
814        for (int i = 0; i < childCount; i++) {
815            View child = algorithmState.visibleChildren.get(i);
816            StackViewState childViewState = resultState.getViewStateForView(child);
817            if (i < algorithmState.itemsInTopStack) {
818                float stackIndex = algorithmState.itemsInTopStack - i;
819
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);
824                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;
830                    if (algorithmState.scrollY > mFirstChildMinHeight) {
831
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                }
838                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
851    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) {
859        mFirstChildWhileExpanding = (ExpandableView) findFirstVisibleChild(hostView);
860        if (mFirstChildWhileExpanding != null) {
861            if (mExpandedOnStart) {
862
863                // We are collapsing the shade, so the first child can get as most as high as the
864                // current height or the end value of the animation.
865                mFirstChildMaxHeight = StackStateAnimator.getFinalActualHeight(
866                        mFirstChildWhileExpanding);
867                if (mFirstChildWhileExpanding instanceof ExpandableNotificationRow) {
868                    ExpandableNotificationRow row =
869                            (ExpandableNotificationRow) mFirstChildWhileExpanding;
870                    if (row.isHeadsUp()) {
871                        mFirstChildMaxHeight += mFirstChildMinHeight - row.getHeadsUpHeight();
872                    }
873                }
874            } else {
875                updateFirstChildMaxSizeToMaxHeight();
876            }
877        } else {
878            mFirstChildMaxHeight = 0;
879        }
880    }
881
882    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(
895                                        mFirstChildWhileExpanding, null);
896                            } else {
897                                mFirstChildMaxHeight = 0;
898                            }
899                            v.removeOnLayoutChangeListener(this);
900                        }
901                    });
902        } else {
903            mFirstChildMaxHeight = getMaxAllowedChildHeight(mFirstChildWhileExpanding, null);
904        }
905    }
906
907    private boolean isMaxSizeInitialized(ExpandableView child) {
908        if (child instanceof ExpandableNotificationRow) {
909            ExpandableNotificationRow row = (ExpandableNotificationRow) child;
910            return row.isMaxExpandHeightInitialized();
911        }
912        return child == null || child.getWidth() != 0;
913    }
914
915    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
926    public void onExpansionStopped() {
927        mIsExpansionChanging = false;
928        mFirstChildWhileExpanding = null;
929    }
930
931    public void setIsExpanded(boolean isExpanded) {
932        this.mIsExpanded = isExpanded;
933    }
934
935    public void notifyChildrenChanged(final NotificationStackScrollLayout hostView) {
936        int firstItemMinHeight = hostView.getFirstItemMinHeight();
937        if (firstItemMinHeight != mFirstChildMinHeight) {
938            mFirstChildMinHeight = firstItemMinHeight;
939        }
940        if (mIsExpansionChanging) {
941            hostView.post(new Runnable() {
942                @Override
943                public void run() {
944                    updateFirstChildHeightWhileExpanding(hostView);
945                }
946            });
947        }
948    }
949
950    public void setDimmed(boolean dimmed) {
951        updatePadding(dimmed);
952    }
953
954    public void onReset(ExpandableView view) {
955        if (view.equals(mFirstChildWhileExpanding)) {
956            updateFirstChildMaxSizeToMaxHeight();
957        }
958    }
959
960    public void setHeadsUpManager(HeadsUpManager headsUpManager) {
961        mHeadsUpManager = headsUpManager;
962    }
963
964    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        /**
982         * The number of pixels the last child in the top stack has scrolled in to the stack
983         */
984        public float scrolledPixelsTop;
985
986        /**
987         * The last item index which is in the top stack.
988         */
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;
1000
1001        /**
1002         * The children from the host view which are not gone.
1003         */
1004        public final ArrayList<ExpandableView> visibleChildren = new ArrayList<ExpandableView>();
1005    }
1006
1007}
1008