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

/frameworks/base/core/java/android/widget/
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 DRelativeLayout.java385 int myHeight = -1;
401 myHeight = heightSize;
409 height = myHeight;
455 measureChildHorizontal(child, params, myWidth, myHeight);
472 applyVerticalSizeRules(params, myHeight);
473 measureChild(child, params, myWidth, myHeight);
474 if (positionChildVertical(child, params, myHeight, isWrapContentHeight)) {
676 * @param myHeight Height of the RelativeLayout
678 private void measureChild(View child, LayoutParams params, int myWidth, int myHeight) { argument
688 myHeight);
692 measureChildHorizontal(View child, LayoutParams params, int myWidth, int myHeight) argument
848 positionChildVertical(View child, LayoutParams params, int myHeight, boolean wrapContent) argument
932 applyVerticalSizeRules(LayoutParams childParams, int myHeight) argument
1036 centerVertical(View child, LayoutParams params, int myHeight) argument
[all...]
H A DGallery.java933 int myHeight = duringLayout ? getMeasuredHeight() : getHeight();
943 int availableSpace = myHeight - mSpinnerPadding.bottom
948 childTop = myHeight - mSpinnerPadding.bottom - childHeight;
/frameworks/base/core/java/android/view/
H A DSurfaceView.java434 int myHeight = mRequestedHeight;
435 if (myHeight <= 0) myHeight = getHeight();
440 final boolean sizeChanged = mWidth != myWidth || mHeight != myHeight;
458 mHeight = myHeight;
578 + " w=" + myWidth + " h=" + myHeight);
583 c.surfaceChanged(mSurfaceHolder, mFormat, myWidth, myHeight);
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java566 int myHeight = mSurfaceHolder.getRequestedHeight();
567 if (myHeight <= 0) myHeight = ViewGroup.LayoutParams.MATCH_PARENT;
572 boolean sizeChanged = mWidth != myWidth || mHeight != myHeight;
585 mHeight = myHeight;
592 mLayout.height = myHeight;

Completed in 82 milliseconds