HomeSort by relevance Sort by last modified time
    Searched full:myheight (Results 1 - 6 of 6) sorted by null

  /packages/apps/MusicFX/src/com/android/musicfx/
SeekBarRotator.java 79 int myheight = b - t; local
80 int childwidth = myheight;
83 child.layout(0, myheight, childwidth, myheight + childheight);
  /frameworks/base/core/java/android/widget/
RelativeLayout.java 393 int myHeight = -1;
409 myHeight = heightSize;
417 height = myHeight;
461 measureChildHorizontal(child, params, myWidth, myHeight);
478 applyVerticalSizeRules(params, myHeight, child.getBaseline());
479 measureChild(child, params, myWidth, myHeight);
480 if (positionChildVertical(child, params, myHeight, isWrapContentHeight)) {
663 * @param myHeight Height of the RelativeLayout
665 private void measureChild(View child, LayoutParams params, int myWidth, int myHeight) {
675 myHeight);
    [all...]
TabWidget.java 382 final int myHeight = getHeight();
384 myHeight - leftStrip.getIntrinsicHeight(), bounds.left, myHeight);
385 rightStrip.setBounds(bounds.right, myHeight - rightStrip.getIntrinsicHeight(),
386 Math.max(getWidth(), bounds.right + rightStrip.getIntrinsicWidth()), myHeight);
Gallery.java 944 int myHeight = duringLayout ? getMeasuredHeight() : getHeight();
954 int availableSpace = myHeight - mSpinnerPadding.bottom
959 childTop = myHeight - mSpinnerPadding.bottom - childHeight;
    [all...]
  /frameworks/base/core/java/android/view/
SurfaceView.java 454 int myHeight = mRequestedHeight;
455 if (myHeight <= 0) myHeight = getHeight();
459 final boolean sizeChanged = mWindowSpaceWidth != myWidth || mWindowSpaceHeight != myHeight;
480 mWindowSpaceHeight = myHeight;
615 + " w=" + myWidth + " h=" + myHeight);
620 c.surfaceChanged(mSurfaceHolder, mFormat, myWidth, myHeight);
    [all...]
  /frameworks/base/core/java/android/service/wallpaper/
WallpaperService.java 597 int myHeight = mSurfaceHolder.getRequestedHeight();
598 if (myHeight <= 0) myHeight = ViewGroup.LayoutParams.MATCH_PARENT;
604 boolean sizeChanged = mWidth != myWidth || mHeight != myHeight;
618 mHeight = myHeight;
625 mLayout.height = myHeight;
    [all...]

Completed in 151 milliseconds