Home
last modified time | relevance | path

Searched refs:getActualHeight (Results 1 – 12 of 12) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DExpandableView.java185 public int getActualHeight() { in getActualHeight() method in ExpandableView
350 outRect.bottom = (int) (outRect.top + getTranslationY() + getActualHeight()); in getDrawingRect()
357 outRect.bottom = outRect.top + getActualHeight(); in getBoundsOnScreen()
378 if (top >= getActualHeight()) { in updateClipping()
379 top = getActualHeight() - 1; in updateClipping()
381 mClipRect.set(0, top, getWidth(), getActualHeight()); in updateClipping()
DActivatableNotificationView.java206 if (mDownY > getActualHeight()) { in handleTouchEventDimmed()
253 int heightHalf = mBackgroundNormal.getActualHeight()/2; in startActivateAnimation()
397 background.setPivotY(getActualHeight() / 2f); in fadeInFromDark()
531 mAnimationTranslationY = translationDirection * getActualHeight(); in startAppearAnimation()
635 final int actualHeight = getActualHeight(); in updateAppearRect()
DNotificationGuts.java89 public int getActualHeight() { in getActualHeight() method in NotificationGuts
DExpandableOutlineView.java49 Math.max(getActualHeight(), mClipTopAmount)); in ExpandableOutlineView()
DNotificationBackgroundView.java111 public int getActualHeight() { in getActualHeight() method in NotificationBackgroundView
DExpandableNotificationRow.java362 mGuts.setActualHeight(getActualHeight()); in onFinishInflate()
574 return getActualHeight(); in getIntrinsicHeight()
762 int translationY = getActualHeight() - expandActionHeight; in updateExpandButtonAppearance()
DBaseStatusBar.java998 final double vert = Math.max(guts.getActualHeight() - y, y); in getNotificationLongClicker()
1021 final int y = (v.getTop() + v.getActualHeight() / 2);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
DStackStateAnimator.java219 boolean heightChanging = viewState.height != child.getActualHeight(); in startStackAnimations()
235 if (heightChanging && child.getActualHeight() != 0) { in startStackAnimations()
416 ValueAnimator animator = ValueAnimator.ofInt(child.getActualHeight(), newEndValue); in startHeightAnimation()
442 child.setTag(TAG_START_HEIGHT, child.getActualHeight()); in startHeightAnimation()
850 int actualHeight = changingView.getActualHeight(); in processAnimationEvents()
899 mTmpState.yTranslation = -changingView.getActualHeight(); in processAnimationEvents()
967 return view.getActualHeight(); in getFinalActualHeight()
DStackScrollState.java141 int height = view.getActualHeight();
DNotificationStackScrollLayout.java681 float bottom = childTop + slidingChild.getActualHeight(); in getClosestChildAtRawPosition()
709 float bottom = childTop + slidingChild.getActualHeight(); in getChildAtPosition()
2317 float endPosition = row.getTranslationY() + row.getActualHeight(); in updateScrollPositionOnExpandInBottom()
2696 float bottom = child.getTranslationY() + child.getActualHeight(); in getBottomMostNotificationBottom()
2742 boolean belowChild = touchY > childTop + child.getActualHeight(); in isBelowLastNotification()
DNotificationChildrenContainer.java395 float bottom = childTop + slidingChild.getActualHeight();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DHeadsUpTouchHelper.java112 int expandedHeight = mPickedChild.getActualHeight(); in onInterceptTouchEvent()