HomeSort by relevance Sort by last modified time
    Searched refs:shelfStart (Results 1 - 2 of 2) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationShelf.java 192 float shelfStart = getTranslationY();
198 if (shelfStart >= interpolationStart) {
199 expandAmount = (shelfStart - interpolationStart) / getIntrinsicHeight();
234 notificationClipEnd = shelfStart + getIntrinsicHeight();
236 notificationClipEnd = shelfStart - mPaddingBetweenElements;
241 notificationClipEnd = Math.min(shelfStart,
250 if (rowTranslationY >= shelfStart && mNotGoneIndex == -1) {
320 float shelfStart = getTranslationY();
321 if (viewEnd >= shelfStart && (!mAmbientState.isUnlockHintRunning() || row.isInShelf())
324 if (viewStart < shelfStart) {
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
StackScrollAlgorithm.java 471 int shelfStart = ambientState.getInnerHeight()
473 childViewState.yTranslation = Math.min(childViewState.yTranslation, shelfStart);
474 if (childViewState.yTranslation >= shelfStart) {
531 float shelfStart = ambientState.getInnerHeight()
536 if (shelfStart > notificationEnd) {
539 float factor = (notificationEnd - shelfStart) / shelfHeight;

Completed in 82 milliseconds