Searched refs:getMeasuredHeight (Results 1 - 25 of 85) sorted by relevance

1234

/packages/apps/Gallery/src/com/android/camera/
H A DEvenlySpacedLayout.java59 height = Math.max(height, child.getMeasuredHeight());
61 height += child.getMeasuredHeight();
89 int h = child.getMeasuredHeight();
104 usedHeight += child.getMeasuredHeight();
116 int h = child.getMeasuredHeight();
/packages/apps/Calendar/src/com/android/calendar/recurrencepicker/
H A DWeekButton.java46 int h = getMeasuredHeight();
/packages/apps/Camera/src/com/android/camera/ui/
H A DRotateLayout.java82 final int h = getMeasuredHeight();
110 int h = getMeasuredHeight();
140 h = mChild.getMeasuredHeight();
145 w = mChild.getMeasuredHeight();
/packages/apps/LegacyCamera/src/com/android/camera/ui/
H A DStackLayout.java42 int height = child.getMeasuredHeight();
H A DRotateLayout.java72 h = mChild.getMeasuredHeight();
77 w = mChild.getMeasuredHeight();
H A DIndicatorControlWheelContainer.java105 int shutterButtonHeight = mShutterButton.getMeasuredHeight();
126 int desiredHeight = mShutterButton.getMeasuredHeight()
/packages/apps/Camera2/src/com/android/camera/ui/
H A DRotateLayout.java75 h = mChild.getMeasuredHeight();
80 w = mChild.getMeasuredHeight();
H A DCameraControls.java110 int th = lp.topMargin + v.getMeasuredHeight() + lp.bottomMargin;
147 int th = lp.topMargin + v.getMeasuredHeight() + lp.bottomMargin;
159 int th = lp.topMargin + v.getMeasuredHeight() + lp.bottomMargin;
199 int th = lp.topMargin + v.getMeasuredHeight() + lp.bottomMargin;
236 v.layout(r - v.getMeasuredWidth() - mr, t + mt, r - mr, t + mt + v.getMeasuredHeight());
H A DCameraRootView.java181 int height = v.getMeasuredHeight();
/packages/experimental/Bummer/src/com/android/dreams/bummer/
H A DBummerView.java48 final float frameh = parent.getMeasuredHeight();
50 final float texth = getMeasuredHeight();
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
H A DBummerView.java48 final float frameh = parent.getMeasuredHeight();
50 final float texth = getMeasuredHeight();
/packages/apps/Camera2/src/com/android/camera/tinyplanet/
H A DTinyPlanetPreview.java98 int size = Math.min(getMeasuredWidth(), getMeasuredHeight());
/packages/apps/Launcher2/src/com/android/launcher2/
H A DCling.java125 return new int[]{getMeasuredWidth() / 2, getMeasuredHeight() - (mButtonBarHeight / 2)};
127 return new int[]{getMeasuredWidth() - (mButtonBarHeight / 2), getMeasuredHeight() / 2};
201 Bitmap b = Bitmap.createBitmap(getMeasuredWidth(), getMeasuredHeight(),
225 mBackground.setBounds(0, 0, getMeasuredWidth(), getMeasuredHeight());
H A DDeleteDropTarget.java199 Rect to = getIconRect(d.dragView.getMeasuredWidth(), d.dragView.getMeasuredHeight(),
259 final Rect to = getIconRect(d.dragView.getMeasuredWidth(), d.dragView.getMeasuredHeight(),
293 float y1o = ((1f - scale) * dragView.getMeasuredHeight()) / 2f;
342 float yOffset = ((scale - 1f) * dragView.getMeasuredHeight()) / 2f;
H A DDragLayer.java355 r.set(left, top, left + v.getMeasuredWidth(), top + v.getMeasuredHeight());
487 coord[1] = lp.y + (int) (child.getMeasuredHeight() * (1 - childScale) / 2);
504 toY -= dragView.getMeasuredHeight() * (1 - scale) / 2;
509 toY -= (1 - scale) * dragView.getMeasuredHeight() / 2;
513 toY -= (Math.round(scale * (dragView.getHeight() - child.getMeasuredHeight()))) / 2;
538 view.getMeasuredWidth(), fromY + view.getMeasuredHeight());
539 Rect to = new Rect(toX, toY, toX + view.getMeasuredWidth(), toY + view.getMeasuredHeight());
600 final int height = view.getMeasuredHeight();
/packages/apps/Launcher3/src/com/android/launcher3/
H A DShortcutAndWidgetContainer.java129 return Math.min(getMeasuredHeight(), mIsHotseatLayout ?
136 return Math.min(getMeasuredHeight(), mIsHotseatLayout ?
163 lp.height = getMeasuredHeight();
H A DDragLayer.java342 (int) (mTmpXY[1] + scale * descendant.getMeasuredHeight()));
393 r.set(left, top, left + v.getMeasuredWidth(), top + v.getMeasuredHeight());
525 coord[1] = lp.y + (int) (child.getMeasuredHeight() * (1 - childScale) / 2);
546 toY -= dragView.getMeasuredHeight() * (1 - toScale) / 2;
552 toY -= (1 - scale) * dragView.getMeasuredHeight() / 2;
556 toY -= (Math.round(scale * (dragView.getHeight() - child.getMeasuredHeight()))) / 2;
581 view.getMeasuredWidth(), fromY + view.getMeasuredHeight());
582 Rect to = new Rect(toX, toY, toX + view.getMeasuredWidth(), toY + view.getMeasuredHeight());
643 final int height = view.getMeasuredHeight();
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
H A DCandidateView.java261 int mOldHeight = getMeasuredHeight();
267 if (mOldWidth != getMeasuredWidth() || mOldHeight != getMeasuredHeight()) {
365 mContentHeight = (int) ((getMeasuredHeight() - mPaddingTop - mPaddingBottom) * 0.95f);
413 mContentHeight = (int) ((getMeasuredHeight() - mPaddingTop - mPaddingBottom) * 0.95f);
501 int yPos = (getMeasuredHeight() -
586 + mSeparatorDrawable.getIntrinsicWidth(), getMeasuredHeight()
/packages/apps/Contacts/src/com/android/contacts/widget/
H A DInterpolatingLayout.java258 height = Math.max(child.getMeasuredHeight(), height);
271 height = Math.max(fillChild.getMeasuredHeight(), height);
311 Gravity.apply(gravity, child.getMeasuredWidth(), child.getMeasuredHeight(),
/packages/apps/ContactsCommon/src/com/android/contacts/common/widget/
H A DProportionalLayout.java100 final int childHeight = child.getMeasuredHeight();
/packages/apps/Calendar/src/com/android/calendar/
H A DStickyHeaderListView.java304 stickyHeaderHeight = mStickyHeader.getMeasuredHeight();
334 params.setMargins(0, mStickyHeader.getMeasuredHeight(), 0, 0);
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
H A DFloatingChildLayout.java147 final int childHeight = child.getMeasuredHeight();
179 child.layout(left, top, left + child.getMeasuredWidth(), top + child.getMeasuredHeight());
/packages/apps/Browser/src/com/android/browser/
H A DNavTabScroller.java144 int pad = (getMeasuredHeight() - v.getMeasuredHeight()) / 2 + 2;
557 setMeasuredDimension(total, getMeasuredHeight());
559 int total = v.getMeasuredHeight() + getMeasuredHeight();
/packages/apps/Browser/src/com/android/browser/view/
H A DBasePieView.java101 mChildHeight = Math.max(mChildHeight, view.getMeasuredHeight());
/packages/apps/DeskClock/src/com/android/deskclock/
H A DCircleButtonsLayout.java87 int frameHeight = mCtv.getMeasuredHeight();

Completed in 418 milliseconds

1234