Searched refs:myHeight (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DRelativeLayout.java341 int myHeight = -1;
357 myHeight = heightSize;
365 height = myHeight;
399 measureChildHorizontal(child, params, myWidth, myHeight);
414 applyVerticalSizeRules(params, myHeight);
415 measureChild(child, params, myWidth, myHeight);
416 if (positionChildVertical(child, params, myHeight, isWrapContentHeight)) {
589 * @param myHeight Height of the RelativeLayout
591 private void measureChild(View child, LayoutParams params, int myWidth, int myHeight) { argument
601 myHeight);
605 measureChildHorizontal(View child, LayoutParams params, int myWidth, int myHeight) argument
728 positionChildVertical(View child, LayoutParams params, int myHeight, boolean wrapContent) argument
819 applyVerticalSizeRules(LayoutParams childParams, int myHeight) argument
929 centerVertical(View child, LayoutParams params, int myHeight) argument
[all...]
H A DTabWidget.java345 final int myHeight = getHeight();
347 myHeight - leftStrip.getIntrinsicHeight(), bounds.left, myHeight);
348 rightStrip.setBounds(bounds.right, myHeight - rightStrip.getIntrinsicHeight(),
349 Math.max(getWidth(), bounds.right + rightStrip.getIntrinsicWidth()), myHeight);
H A DGallery.java917 int myHeight = duringLayout ? getMeasuredHeight() : getHeight();
927 int availableSpace = myHeight - mSpinnerPadding.bottom
932 childTop = myHeight - mSpinnerPadding.bottom - childHeight;
/frameworks/base/core/java/android/view/
H A DSurfaceView.java408 int myHeight = mRequestedHeight;
409 if (myHeight <= 0) myHeight = getHeight();
414 final boolean sizeChanged = mWidth != myWidth || mHeight != myHeight;
432 mHeight = myHeight;
549 + " w=" + myWidth + " h=" + myHeight);
554 c.surfaceChanged(mSurfaceHolder, mFormat, myWidth, myHeight);
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java559 int myHeight = mSurfaceHolder.getRequestedHeight();
560 if (myHeight <= 0) myHeight = ViewGroup.LayoutParams.MATCH_PARENT;
565 boolean sizeChanged = mWidth != myWidth || mHeight != myHeight;
577 mHeight = myHeight;
584 mLayout.height = myHeight;

Completed in 91 milliseconds