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

  /frameworks/base/core/java/android/widget/
RelativeLayout.java 393 int myHeight = -1;
409 myHeight = heightSize;
417 height = myHeight;
463 measureChildHorizontal(child, params, myWidth, myHeight);
480 applyVerticalSizeRules(params, myHeight);
481 measureChild(child, params, myWidth, myHeight);
482 if (positionChildVertical(child, params, myHeight, isWrapContentHeight)) {
684 * @param myHeight Height of the RelativeLayout
686 private void measureChild(View child, LayoutParams params, int myWidth, int myHeight) {
696 myHeight);
    [all...]
TabWidget.java 348 final int myHeight = getHeight();
350 myHeight - leftStrip.getIntrinsicHeight(), bounds.left, myHeight);
351 rightStrip.setBounds(bounds.right, myHeight - rightStrip.getIntrinsicHeight(),
352 Math.max(getWidth(), bounds.right + rightStrip.getIntrinsicWidth()), myHeight);
Gallery.java 937 int myHeight = duringLayout ? getMeasuredHeight() : getHeight();
947 int availableSpace = myHeight - mSpinnerPadding.bottom
952 childTop = myHeight - mSpinnerPadding.bottom - childHeight;
    [all...]
  /frameworks/base/core/java/android/view/
SurfaceView.java 441 int myHeight = mRequestedHeight;
442 if (myHeight <= 0) myHeight = getHeight();
447 final boolean sizeChanged = mWidth != myWidth || mHeight != myHeight;
465 mHeight = myHeight;
586 + " w=" + myWidth + " h=" + myHeight);
591 c.surfaceChanged(mSurfaceHolder, mFormat, myWidth, myHeight);
    [all...]
  /frameworks/base/core/java/android/service/wallpaper/
WallpaperService.java 589 int myHeight = mSurfaceHolder.getRequestedHeight();
590 if (myHeight <= 0) myHeight = ViewGroup.LayoutParams.MATCH_PARENT;
596 boolean sizeChanged = mWidth != myWidth || mHeight != myHeight;
610 mHeight = myHeight;
617 mLayout.height = myHeight;
    [all...]
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 300 milliseconds