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 226 float shelfStart = getTranslationY();
232 if (shelfStart >= interpolationStart) {
233 expandAmount = (shelfStart - interpolationStart) / getIntrinsicHeight();
268 notificationClipEnd = shelfStart + getIntrinsicHeight();
270 notificationClipEnd = shelfStart - mPaddingBetweenElements;
275 notificationClipEnd = Math.min(shelfStart,
284 if (rowTranslationY >= shelfStart && mNotGoneIndex == -1) {
445 float shelfStart = getTranslationY();
451 if (viewEnd >= shelfStart && (!mAmbientState.isUnlockHintRunning() || row.isInShelf())
454 if (viewStart < shelfStart) {
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
StackScrollAlgorithm.java 490 int shelfStart = ambientState.getInnerHeight()
492 childViewState.yTranslation = Math.min(childViewState.yTranslation, shelfStart);
493 if (childViewState.yTranslation >= shelfStart) {
550 float shelfStart = ambientState.getInnerHeight()
555 if (shelfStart > notificationEnd) {
558 float factor = (notificationEnd - shelfStart) / shelfHeight;

Completed in 83 milliseconds