Searched defs:childrenLeft (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DGridView.java1423 * @param childrenLeft left edge where children should be positioned
1429 private View makeAndAddView(int position, int y, boolean flow, int childrenLeft, argument
1437 setupChild(activeView, position, y, flow, childrenLeft, selected, true, where);
1447 setupChild(child, position, y, flow, childrenLeft, selected, mIsScrap[0], where);
1461 * @param childrenLeft left edge where children should be positioned
1470 private void setupChild(View child, int position, int y, boolean flowDown, int childrenLeft, argument
1551 childLeft = childrenLeft;
1554 childLeft = childrenLeft + ((mColumnWidth - w) / 2);
1557 childLeft = childrenLeft + mColumnWidth - w;
1560 childLeft = childrenLeft;
[all...]
H A DListView.java2032 * @param childrenLeft left edge where children should be positioned
2037 private View makeAndAddView(int position, int y, boolean flow, int childrenLeft, argument
2045 setupChild(activeView, position, y, flow, childrenLeft, selected, true);
2055 setupChild(child, position, y, flow, childrenLeft, selected, mIsScrap[0]);
2069 * @param childrenLeft left edge where children should be positioned
2076 private void setupChild(View child, int position, int y, boolean flowDown, int childrenLeft, argument
2160 final int childRight = childrenLeft + w;
2162 child.layout(childrenLeft, childTop, childRight, childBottom);
2164 child.offsetLeftAndRight(childrenLeft - child.getLeft());

Completed in 38 milliseconds