Searched defs:childrenLeft (Results 1 - 2 of 2) sorted by relevance
/frameworks/base/core/java/android/widget/ |
H A D | GridView.java | 1200 * @param childrenLeft Left edge where children should be positioned 1205 private View makeAndAddView(int position, int y, boolean flow, int childrenLeft, argument 1215 setupChild(child, position, y, flow, childrenLeft, selected, true, where); 1225 setupChild(child, position, y, flow, childrenLeft, selected, mIsScrap[0], where); 1239 * @param childrenLeft Left edge where children should be positioned 1246 private void setupChild(View child, int position, int y, boolean flow, int childrenLeft, argument 1303 childLeft = childrenLeft; 1306 childLeft = childrenLeft + ((mColumnWidth - w) / 2); 1309 childLeft = childrenLeft + mColumnWidth - w; 1312 childLeft = childrenLeft; [all...] |
H A D | ListView.java | 1718 * @param childrenLeft Left edge where children should be positioned 1722 private View makeAndAddView(int position, int y, boolean flow, int childrenLeft, argument 1738 setupChild(child, position, y, flow, childrenLeft, selected, true); 1748 setupChild(child, position, y, flow, childrenLeft, selected, mIsScrap[0]); 1762 * @param childrenLeft Left edge where children should be positioned 1767 private void setupChild(View child, int position, int y, boolean flowDown, int childrenLeft, argument 1831 final int childRight = childrenLeft + w; 1833 child.layout(childrenLeft, childTop, childRight, childBottom); 1835 child.offsetLeftAndRight(childrenLeft - child.getLeft());
|
Completed in 365 milliseconds