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

  /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/base/core/java/android/widget/
FrameLayout.java 294 int childTop = parentTop;
319 childTop = parentTop + lp.topMargin;
322 childTop = parentTop + (parentBottom - parentTop - height) / 2 +
326 childTop = parentBottom - height - lp.bottomMargin;
329 childTop = parentTop + lp.topMargin;
333 child.layout(childLeft, childTop, childLeft + width, childTop + height);
AbsoluteLayout.java 119 int childTop = mPaddingTop + lp.y;
120 child.layout(childLeft, childTop,
122 childTop + child.getMeasuredHeight());
LinearLayout.java 197 // We should add to childTop:
201 int childTop = mBaselineChildTop;
208 childTop = mBottom - mTop - mPaddingBottom - mTotalLength;
212 childTop += ((mBottom - mTop - mPaddingTop - mPaddingBottom) -
220 return childTop + lp.topMargin + childBaseline;
    [all...]
Spinner.java 231 int childTop = mSpinnerPadding.top
234 int childBottom = childTop + child.getMeasuredHeight();
240 child.layout(childLeft, childTop, childRight, childBottom);
Gallery.java 792 int childTop = calculateTop(child, true);
793 int childBottom = childTop + child.getMeasuredHeight();
804 child.layout(childLeft, childTop, childRight, childBottom);
817 int childTop = 0;
821 childTop = mSpinnerPadding.top;
826 childTop = mSpinnerPadding.top + (availableSpace / 2);
829 childTop = myHeight - mSpinnerPadding.bottom - childHeight;
832 return childTop;
    [all...]
SlidingDrawer.java 323 int childTop;
329 childTop = mExpanded ? mTopOffset : height - childHeight + mBottomOffset;
335 childTop = (height - childHeight) / 2;
342 handle.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight);
    [all...]
GridView.java     [all...]
ListView.java     [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PictureLayout.java 154 final int childTop = getPaddingTop();
155 child.layout(childLeft, childTop,
157 childTop + child.getMeasuredHeight());
  /packages/apps/Launcher2/src/com/android/launcher2/
CellLayout.java 564 int childTop = lp.y;
565 child.layout(childLeft, childTop, childLeft + lp.width, childTop + lp.height);
574 cellXY[1] + childTop + lp.height / 2, 0, null);
    [all...]

Completed in 292 milliseconds