Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/widget/
DMessagingImageMessage.java164 int width = (int) Math.max((Math.min(getHeight(), getActualHeight()) * mAspectRatio), in onDraw()
167 getActualHeight()); in onDraw()
170 int top = (int) ((getActualHeight() - height) / 2.0f); in onDraw()
180 int bottom = getActualHeight(); in getRoundedRectPath()
294 public int getActualHeight() {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DExpandableViewState.java148 final int height = expandableView.getActualHeight(); in applyToView()
194 if (this.height != expandableView.getActualHeight()) { in animateTo()
267 ValueAnimator animator = ValueAnimator.ofInt(child.getActualHeight(), newEndValue); in startHeightAnimation()
315 child.setTag(TAG_START_HEIGHT, child.getActualHeight()); in startHeightAnimation()
404 return view.getActualHeight(); in getFinalActualHeight()
DStackStateAnimator.java198 || viewState.height != child.getActualHeight() in initAnimationProperties()
428 int actualHeight = changingView.getActualHeight(); in processAnimationEvents()
DNotificationChildrenContainer.java969 int layoutEnd = mContainingNotification.getActualHeight() - mClipBottomAmount;
976 float childBottom = childTop + child.getActualHeight();
1111 float bottom = childTop + slidingChild.getActualHeight();
DNotificationStackScrollLayout.java362 float endY = view.getTranslationY() + view.getActualHeight();
363 float otherEndY = otherView.getTranslationY() + otherView.getActualHeight();
1858 float bottom = childTop + slidingChild.getActualHeight()
4250 float endPosition = row.getTranslationY() + row.getActualHeight(); in updateScrollPositionOnExpandInBottom()
4417 float yLocation = previous.getTranslationY() + previous.getActualHeight() - in updateViewShadows()
4689 float bottom = child.getTranslationY() + child.getActualHeight() in getBottomMostNotificationBottom()
4724 boolean belowChild = touchY > childTop + child.getActualHeight() in isBelowLastNotification()
5545 + view.getActualHeight() - mShelf.getIntrinsicHeight(); in wakeUpFromPulse()
DNotificationSwipeHelper.java504 ? ((ExpandableView) view).getActualHeight() in isTouchInView()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationBackgroundView.java84 if (mClipTopAmount + mClipBottomAmount < getActualHeight() || mExpandAnimationRunning) { in onDraw()
88 getActualHeight() - mClipBottomAmount); in onDraw()
98 int bottom = getActualHeight(); in draw()
203 private int getActualHeight() { in getActualHeight() method in NotificationBackgroundView
DExpandableView.java235 public int getActualHeight() { in getActualHeight() method in ExpandableView
444 outRect.bottom = (int) (outRect.top + getTranslationY() + getActualHeight()); in getDrawingRect()
455 outRect.bottom = outRect.top + getActualHeight(); in getBoundsOnScreen()
470 int bottom = Math.max(Math.max(getActualHeight() in updateClipping()
520 return super.hasOverlappingRendering() && getActualHeight() <= getHeight(); in hasOverlappingRendering()
DExpandableOutlineView.java69 int bottom = Math.max(getActualHeight() - mClipBottomAmount, top);
114 Math.max(getActualHeight() - mClipBottomAmount, (int) (top + topRadius))); in getClipPath()
252 int previousHeight = getActualHeight(); in setActualHeight()
DNotificationGuts.java99 public int getActualHeight(); in getActualHeight() method
361 public int getActualHeight() { in getActualHeight() method in NotificationGuts
366 return mGutsContent != null && mExposed ? mGutsContent.getActualHeight() : getHeight(); in getIntrinsicHeight()
DPartialConversationInfo.java279 public int getActualHeight() {
DActivatableNotificationView.java392 mAnimationTranslationY = translationDirection * getActualHeight(); in startAppearAnimation()
541 final int fullHeight = getActualHeight(); in updateAppearRect()
DFeedbackInfo.java221 public int getActualHeight() { in getActualHeight() method in FeedbackInfo
DExpandableNotificationRow.java2070 mGuts.setActualHeight(getActualHeight());
2490 parentTranslationY + mNotificationParent.getActualHeight()
2636 && getActualHeight() != getIntrinsicHeight()) {
2726 return getActualHeight();
2856 && (intrinsicBefore != 0 || getActualHeight() > 0)) {
3246 boolean changed = height != getActualHeight();
3492 && getActualHeight() == getIntrinsicHeight()) {
3842 pw.print("actual", getActualHeight());
DNotificationSnooze.java445 public int getActualHeight() { in getActualHeight() method in NotificationSnooze
DNotificationMenuRow.java467 int parentHeight = mParent.getActualHeight(); in onParentHeightUpdate()
DNotificationConversationInfo.java592 public int getActualHeight() { in getActualHeight() method
DNotificationInfo.java617 public int getActualHeight() {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DMessagingImageTransformState.java80 setStartActualHeight(otherMessage.getActualHeight()); in transformViewFrom()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationShelf.java363 final float bottom = getActualHeight(); in pointInView()
554 final float viewEnd = viewStart + anv.getActualHeight();
677 float viewEnd = view.getTranslationY() + view.getActualHeight();
733 int fullHeight = view.getActualHeight() + mPaddingBetweenElements;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DHeadsUpTouchHelper.java121 int startHeight = (int) (mPickedChild.getActualHeight() in onInterceptTouchEvent()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DExpandHelper.java174 return mView.getActualHeight(); in getHeight()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DNotificationSwipeHelperTest.java646 doReturn(FAKE_ROW_HEIGHT).when(mNotificationRow).getActualHeight(); in testIsTouchInView_expandable()