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

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationGuts.java 33 private int mActualHeight;
47 drawable.setBounds(0, mClipTopAmount, getWidth(), mActualHeight);
85 mActualHeight = actualHeight;
90 return mActualHeight;
NotificationBackgroundView.java 37 private int mActualHeight;
50 drawable.setBounds(0, mClipTopAmount, getWidth(), mActualHeight);
109 mActualHeight = actualHeight;
114 return mActualHeight;
ExpandableView.java 39 protected int mActualHeight;
98 if (!mActualHeightInitialized && mActualHeight == 0) {
120 || event.getY() > mClipTopAmount && event.getY() < mActualHeight;
132 mActualHeight = actualHeight;
148 return mActualHeight;
NotificationContentView.java 55 private int mActualHeight;
87 mActualHeight = mSmallHeight;
121 mActualHeight = actualHeight;
142 mClipBounds.set(0, mClipTopAmount, getWidth(), mActualHeight);
201 return mActualHeight <= mSmallHeight || mExpandedChild == null;
ExpandableOutlineView.java 44 Math.max(mActualHeight, mClipTopAmount));
ActivatableNotificationView.java 511 mAnimationTranslationY = translationDirection * mActualHeight;
605 bottom = mActualHeight - heightFraction * mAnimationTranslationY * 0.1f
609 top = heightFraction * (mActualHeight + mAnimationTranslationY) * 0.1f -
611 bottom = mActualHeight * (1 - heightFraction) + top * heightFraction;

Completed in 1163 milliseconds