HomeSort by relevance Sort by last modified time
    Searched defs:measuredHeight (Results 1 - 25 of 63) sorted by null

1 2 3

  /packages/apps/Messaging/src/com/android/messaging/ui/
ImeDetectFrameLayout.java 33 final int measuredHeight = getMeasuredHeight();
38 "measuredHeight: " + measuredHeight + " getMeasuredHeight(): " +
42 if (measuredHeight != getMeasuredHeight() && getContext() instanceof ImeUtil.ImeStateHost) {
AsyncImageView.java 307 final int measuredHeight = getMeasuredHeight();
308 if (measuredWidth >= getMinimumWidth() || measuredHeight >= getMinimumHeight()) {
330 int height = measuredHeight;
336 final float aspectRatio = measuredWidth / (float) measuredHeight;
  /packages/apps/Settings/src/com/android/settings/widget/
RingProgressBar.java 52 final int measuredHeight = getMeasuredHeight();
54 final int shortSide = Math.min(measuredHeight, measuredWidth);
  /external/webrtc/talk/app/webrtc/androidtests/src/org/webrtc/
SurfaceViewRendererOnMeasureTest.java 78 final int measuredHeight = surfaceViewRenderer.getMeasuredHeight();
79 if (measuredWidth != expectedWidth || measuredHeight != expectedHeight) {
85 + ", but was " + measuredWidth + "x" + measuredHeight);
  /frameworks/base/tests/UiBench/src/com/android/test/uibench/
NotificationShadeActivity.java 135 int measuredHeight = child.getMeasuredHeight();
136 child.setTag(measuredHeight);
137 mFullHeight += measuredHeight;
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
IndicatorControlWheelContainer.java 130 int measuredWidth, measuredHeight;
139 measuredHeight = desiredHeight;
141 measuredHeight = Math.min(desiredHeight, MeasureSpec.getSize(heightSpec));
143 measuredHeight = MeasureSpec.getSize(heightSpec);
145 setMeasuredDimension(measuredWidth, measuredHeight);
  /packages/apps/Car/Radio/src/com/android/car/radio/
CarouselView.java 328 int measuredHeight = childView.getMeasuredHeight();
331 top + measuredHeight);
333 top += mItemMargin + measuredHeight;
367 int measuredHeight = childView.getMeasuredHeight();
369 top -= measuredHeight + mItemMargin;
372 top + measuredHeight);
  /frameworks/base/core/java/android/app/
MediaRouteButton.java 304 int measuredHeight;
307 measuredHeight = heightSize;
310 measuredHeight = Math.min(heightSize, height);
314 measuredHeight = height;
318 setMeasuredDimension(measuredWidth, measuredHeight);
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarContextView.java 366 int measuredHeight = 0;
371 if (paddedViewHeight > measuredHeight) {
372 measuredHeight = paddedViewHeight;
375 setMeasuredDimension(contentWidth, measuredHeight);
ActionBarView.java     [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ActionBarContextView.java 305 int measuredHeight = 0;
310 if (paddedViewHeight > measuredHeight) {
311 measuredHeight = paddedViewHeight;
314 setMeasuredDimension(contentWidth, measuredHeight);
SwitchCompat.java 853 final int measuredHeight = getMeasuredHeight();
854 if (measuredHeight < switchHeight) {
    [all...]
  /frameworks/support/wear/src/android/support/wear/widget/
BoxInsetLayout.java 218 int measuredHeight = resolveSizeAndState(maxHeight, heightMeasureSpec,
220 setMeasuredDimension(measuredWidth, measuredHeight);
223 int boxInset = calculateInset(measuredWidth, measuredHeight);
400 private int calculateInset(int measuredWidth, int measuredHeight) {
402 int bottomEdge = Math.min(measuredHeight, mScreenHeight);
  /frameworks/support/v7/mediarouter/src/android/support/v7/app/
MediaRouteButton.java 449 int measuredHeight;
452 measuredHeight = heightSize;
455 measuredHeight = Math.min(heightSize, height);
459 measuredHeight = height;
463 setMeasuredDimension(measuredWidth, measuredHeight);
  /cts/tests/tests/widget/src/android/widget/cts/
PopupWindowTest.java     [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowView.java 87 private int measuredHeight = 0;
393 return measuredHeight;
397 public final void setMeasuredDimension(int measuredWidth, int measuredHeight) {
399 this.measuredHeight = measuredHeight;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationContentView.java 200 int measuredHeight = mContractedChild.getMeasuredHeight();
201 if (measuredHeight < mMinContractedHeight) {
205 maxChildHeight = Math.max(maxChildHeight, measuredHeight);
    [all...]
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
RenderSessionImpl.java 262 int measuredHeight = exactMeasure.getSecond();
264 if (neededHeight > measuredHeight) {
265 mMeasuredScreenHeight += neededHeight - measuredHeight;
267 if (mMeasuredScreenHeight < measuredHeight) {
270 mMeasuredScreenHeight = measuredHeight;
    [all...]
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
RadialPickerLayout.java 150 int measuredHeight = MeasureSpec.getSize(heightMeasureSpec);
152 int minDimension = Math.min(measuredWidth, measuredHeight);
    [all...]
  /frameworks/support/core-ui/java/android/support/v4/view/
PagerTitleStrip.java 446 final int measuredHeight = View.resolveSizeAndState(height, heightMeasureSpec,
448 setMeasuredDimension(widthSize, measuredHeight);
  /frameworks/base/core/java/android/widget/
ProgressBar.java     [all...]
Switch.java 873 final int measuredHeight = getMeasuredHeight();
874 if (measuredHeight < switchHeight) {
    [all...]
GridLayout.java     [all...]
Toolbar.java     [all...]
  /frameworks/support/core-ui/java/android/support/v4/widget/
SlidingPaneLayout.java 644 final int measuredHeight = layoutHeight + getPaddingTop() + getPaddingBottom();
646 setMeasuredDimension(measuredWidth, measuredHeight);
    [all...]

Completed in 810 milliseconds

1 2 3