Searched refs:childTop (Results 1 – 8 of 8) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | LinearLayout.java | 206 int childTop = mBaselineChildTop; in getBaseline() local 213 childTop = mBottom - mTop - mPaddingBottom - mTotalLength; in getBaseline() 217 childTop += ((mBottom - mTop - mPaddingTop - mPaddingBottom) - in getBaseline() 225 return childTop + lp.topMargin + childBaseline; in getBaseline() 1064 int childTop = mPaddingTop; in layoutVertical() local 1084 childTop = mBottom - mTop + mPaddingTop - mTotalLength; in layoutVertical() 1088 childTop += ((mBottom - mTop) - mTotalLength) / 2; in layoutVertical() 1097 childTop += measureNullChild(i); in layoutVertical() 1129 childTop += lp.topMargin; in layoutVertical() 1130 setChildFrame(child, childLeft, childTop + getLocationOffset(child), in layoutVertical() [all …]
|
D | FrameLayout.java | 299 int childTop = parentTop; in onLayout() local 324 childTop = parentTop + lp.topMargin; in onLayout() 327 childTop = parentTop + (parentBottom - parentTop - height) / 2 + in onLayout() 331 childTop = parentBottom - height - lp.bottomMargin; in onLayout() 334 childTop = parentTop + lp.topMargin; in onLayout() 338 child.layout(childLeft, childTop, childLeft + width, childTop + height); in onLayout()
|
D | AbsoluteLayout.java | 119 int childTop = mPaddingTop + lp.y; in onLayout() local 120 child.layout(childLeft, childTop, in onLayout() 122 childTop + child.getMeasuredHeight()); in onLayout()
|
D | Gallery.java | 795 int childTop = calculateTop(child, true); in setUpChild() local 796 int childBottom = childTop + child.getMeasuredHeight(); in setUpChild() 807 child.layout(childLeft, childTop, childRight, childBottom); in setUpChild() 820 int childTop = 0; in calculateTop() local 824 childTop = mSpinnerPadding.top; in calculateTop() 829 childTop = mSpinnerPadding.top + (availableSpace / 2); in calculateTop() 832 childTop = myHeight - mSpinnerPadding.bottom - childHeight; in calculateTop() 835 return childTop; in calculateTop()
|
D | Spinner.java | 234 int childTop = mSpinnerPadding.top in setUpChild() local 237 int childBottom = childTop + child.getMeasuredHeight(); in setUpChild() 243 child.layout(childLeft, childTop, childRight, childBottom); in setUpChild()
|
D | SlidingDrawer.java | 323 int childTop; in onLayout() local 329 childTop = mExpanded ? mTopOffset : height - childHeight + mBottomOffset; in onLayout() 335 childTop = (height - childHeight) / 2; in onLayout() 342 handle.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight); in onLayout()
|
D | GridView.java | 1299 final int childTop = flow ? y : y - h; in setupChild() 1318 final int childBottom = childTop + h; in setupChild() 1319 child.layout(childLeft, childTop, childRight, childBottom); in setupChild() 1322 child.offsetTopAndBottom(childTop - child.getTop()); in setupChild()
|
D | ListView.java | 1828 final int childTop = flowDown ? y : y - h; in setupChild() field in ListView 1832 final int childBottom = childTop + h; in setupChild() 1833 child.layout(childrenLeft, childTop, childRight, childBottom); in setupChild() argument 1836 child.offsetTopAndBottom(childTop - child.getTop()); in setupChild() 2494 final int childTop = child.getTop(); in relayoutMeasuredItem() local 2495 final int childBottom = childTop + h; in relayoutMeasuredItem() 2496 child.layout(childLeft, childTop, childRight, childBottom); in relayoutMeasuredItem()
|