Home
last modified time | relevance | path

Searched refs:childTop (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
DShortcutAndWidgetContainer.java127 int childTop = lp.y; in onLayout() local
128 child.layout(childLeft, childTop, childLeft + lp.width, childTop + lp.height); in onLayout()
138 cellXY[1] + childTop + lp.height / 2, 0, null); in onLayout()
DPagedViewCellLayoutChildren.java138 int childTop = lp.y; in onLayout() local
139 child.layout(childLeft, childTop, childLeft + lp.width, childTop + lp.height); in onLayout()
DPagedView.java618 int childTop = getPaddingTop(); in onLayout() local
620 childTop += ((getMeasuredHeight() - verticalPadding) - childHeight) / 2; in onLayout()
623 if (DEBUG) Log.d(TAG, "\tlayout-child" + i + ": " + childLeft + ", " + childTop); in onLayout()
624 child.layout(childLeft, childTop, in onLayout()
625 childLeft + child.getMeasuredWidth(), childTop + childHeight); in onLayout()
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
DFloatingChildLayout.java152 final int childTop = mFixedTopPosition; in onLayout() local
153 layoutChild(child, childLeft, childTop); in onLayout()
158 final int childTop = target.centerY() - Math.round(childHeight * 0.35f); in onLayout() local
162 final int clampedChildTop = clampDimension(childTop, childHeight, getHeight()); in onLayout()