HomeSort by relevance Sort by last modified time
    Searched refs:childTop (Results 1 - 25 of 49) sorted by null

1 2

  /development/samples/Home/src/com/example/android/home/
ApplicationsStackLayout.java 196 int childTop = getHeight();
201 childTop -= childHeight + mMarginBottom;
202 mButton.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight);
203 childTop -= mMarginTop;
204 mFavoritesEnd = childTop - mMarginBottom;
206 int oldChildTop = childTop;
207 childTop = stackApplications(mFavorites, childLeft, childTop);
208 if (childTop != oldChildTop)
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
AbsActionBarView.java 195 int childTop = y + (contentHeight - childHeight) / 2;
197 child.layout(x, childTop, x + childWidth, childTop + childHeight);
205 int childTop = y + (contentHeight - childHeight) / 2;
207 child.layout(x - childWidth, childTop, x, childTop + childHeight);
SpinnerICS.java 423 int childTop = mSpinnerPadding.top
426 int childBottom = childTop + child.getMeasuredHeight();
432 child.layout(childLeft, childTop, childRight, childBottom);
  /frameworks/base/core/java/com/android/internal/widget/
AbsActionBarView.java 232 int childTop = y + (contentHeight - childHeight) / 2;
235 child.layout(x - childWidth, childTop, x, childTop + childHeight);
237 child.layout(x, childTop, x + childWidth, childTop + childHeight);
ActionBarOverlayLayout.java 342 int childTop;
344 childTop = parentBottom - height - lp.bottomMargin;
346 childTop = parentTop + lp.topMargin;
349 child.layout(childLeft, childTop, childLeft + width, childTop + height);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PictureLayout.java 153 final int childTop = getPaddingTop();
154 child.layout(childLeft, childTop,
156 childTop + child.getMeasuredHeight());
  /frameworks/base/core/java/android/widget/
AbsoluteLayout.java 119 int childTop = mPaddingTop + lp.y;
120 child.layout(childLeft, childTop,
122 childTop + child.getMeasuredHeight());
LinearLayout.java 481 // We should add to childTop:
485 int childTop = mBaselineChildTop;
492 childTop = mBottom - mTop - mPaddingBottom - mTotalLength;
496 childTop += ((mBottom - mTop - mPaddingTop - mPaddingBottom) -
504 return childTop + lp.topMargin + childBaseline;
    [all...]
FrameLayout.java 407 int childTop;
435 childTop = parentTop + lp.topMargin;
438 childTop = parentTop + (parentBottom - parentTop - height) / 2 +
442 childTop = parentBottom - height - lp.bottomMargin;
445 childTop = parentTop + lp.topMargin;
448 child.layout(childLeft, childTop, childLeft + width, childTop + height);
Gallery.java 911 int childTop = calculateTop(child, true);
912 int childBottom = childTop + child.getMeasuredHeight();
923 child.layout(childLeft, childTop, childRight, childBottom);
936 int childTop = 0;
940 childTop = mSpinnerPadding.top;
945 childTop = mSpinnerPadding.top + (availableSpace / 2);
948 childTop = myHeight - mSpinnerPadding.bottom - childHeight;
951 return childTop;
    [all...]
SlidingDrawer.java 329 int childTop;
335 childTop = mExpanded ? mTopOffset : height - childHeight + mBottomOffset;
341 childTop = (height - childHeight) / 2;
348 handle.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight);
    [all...]
Spinner.java 594 int childTop = mSpinnerPadding.top
597 int childBottom = childTop + child.getMeasuredHeight();
603 child.layout(childLeft, childTop, childRight, childBottom);
    [all...]
ListView.java     [all...]
GridView.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
QuickSettingsContainerView.java 135 final int childTop = y;
136 final int childBottom = childTop + childHeight;
139 child.layout(childLeft, childTop, childRight, childBottom);
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewCellLayoutChildren.java 138 int childTop = lp.y;
139 child.layout(childLeft, childTop, childLeft + lp.width, childTop + lp.height);
ShortcutAndWidgetContainer.java 143 int childTop = lp.y;
144 child.layout(childLeft, childTop, childLeft + lp.width, childTop + lp.height);
154 cellXY[1] + childTop + lp.height / 2, 0, null);
PagedView.java 664 int childTop = getPaddingTop();
666 childTop += ((getMeasuredHeight() - verticalPadding) - childHeight) / 2;
669 if (DEBUG) Log.d(TAG, "\tlayout-child" + i + ": " + childLeft + ", " + childTop);
670 child.layout(childLeft, childTop,
671 childLeft + child.getMeasuredWidth(), childTop + childHeight);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
FloatingChildLayout.java 152 final int childTop = mFixedTopPosition;
153 layoutChild(child, childLeft, childTop);
158 final int childTop = target.centerY() - Math.round(childHeight * 0.35f);
162 final int clampedChildTop = clampDimension(childTop, childHeight, getHeight());
  /frameworks/ex/widget/java/com/android/ex/widget/
StaggeredGridView.java 790 int childTop = mItemBottoms[col] > Integer.MIN_VALUE ?
793 int lowest = childTop;
800 childTop = lowest;
803 final int childBottom = childTop + childHeight;
806 child.layout(childLeft, childTop, childRight, childBottom);
    [all...]
  /frameworks/base/core/java/android/app/
FragmentBreadCrumbs.java 185 final int childTop = mPaddingTop;
219 child.layout(childLeft, childTop, childRight, childBottom);
  /frameworks/support/v4/java/android/support/v4/widget/
DrawerLayout.java 713 int childTop = (height - childHeight) / 2;
717 if (childTop < lp.topMargin) {
718 childTop = lp.topMargin;
719 } else if (childTop + childHeight > height - lp.bottomMargin) {
720 childTop = height - lp.bottomMargin - childHeight;
722 child.layout(childLeft, childTop, childLeft + childWidth,
723 childTop + childHeight);
    [all...]
SlidingPaneLayout.java 675 final int childTop = paddingTop;
676 final int childBottom = childTop + child.getMeasuredHeight();
    [all...]
  /frameworks/support/v4/java/android/support/v4/view/
ViewPager.java     [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
PagedView.java 724 int childTop = offsetY + getPaddingTop();
729 if (DEBUG) Log.d(TAG, "\tlayout-child" + i + ": " + childLeft + ", " + childTop);
730 child.layout(childLeft, childTop,
731 childLeft + child.getMeasuredWidth(), childTop + childHeight);
    [all...]

Completed in 517 milliseconds

1 2