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

/frameworks/base/core/java/android/widget/
H A DGridView.java1323 * @param childrenLeft Left edge where children should be positioned
1328 private View makeAndAddView(int position, int y, boolean flow, int childrenLeft, argument
1338 setupChild(child, position, y, flow, childrenLeft, selected, true, where);
1348 setupChild(child, position, y, flow, childrenLeft, selected, mIsScrap[0], where);
1362 * @param childrenLeft Left edge where children should be positioned
1369 private void setupChild(View child, int position, int y, boolean flow, int childrenLeft, argument
1438 childLeft = childrenLeft;
1441 childLeft = childrenLeft + ((mColumnWidth - w) / 2);
1444 childLeft = childrenLeft + mColumnWidth - w;
1447 childLeft = childrenLeft;
[all...]
H A DListView.java1768 * @param childrenLeft Left edge where children should be positioned
1772 private View makeAndAddView(int position, int y, boolean flow, int childrenLeft, argument
1783 setupChild(child, position, y, flow, childrenLeft, selected, true);
1793 setupChild(child, position, y, flow, childrenLeft, selected, mIsScrap[0]);
1807 * @param childrenLeft Left edge where children should be positioned
1812 private void setupChild(View child, int position, int y, boolean flowDown, int childrenLeft, argument
1880 final int childRight = childrenLeft + w;
1882 child.layout(childrenLeft, childTop, childRight, childBottom);
1884 child.offsetLeftAndRight(childrenLeft - child.getLeft());

Completed in 47 milliseconds