Searched refs:childrenLeft (Results 1 - 4 of 4) sorted by relevance
/frameworks/base/core/java/android/widget/ |
H A D | Spinner.java | 471 int childrenLeft = mSpinnerPadding.left; 497 int selectedOffset = childrenLeft; 502 selectedOffset = childrenLeft + (childrenWidth / 2) - (width / 2); 505 selectedOffset = childrenLeft + childrenWidth - width;
|
H A D | GridView.java | 1319 * @param childrenLeft Left edge where children should be positioned 1324 private View makeAndAddView(int position, int y, boolean flow, int childrenLeft, argument 1334 setupChild(child, position, y, flow, childrenLeft, selected, true, where); 1344 setupChild(child, position, y, flow, childrenLeft, selected, mIsScrap[0], where); 1358 * @param childrenLeft Left edge where children should be positioned 1365 private void setupChild(View child, int position, int y, boolean flow, int childrenLeft, argument 1432 childLeft = childrenLeft; 1435 childLeft = childrenLeft + ((mColumnWidth - w) / 2); 1438 childLeft = childrenLeft + mColumnWidth - w; 1441 childLeft = childrenLeft; [all...] |
H A D | ListView.java | 1809 * @param childrenLeft Left edge where children should be positioned 1813 private View makeAndAddView(int position, int y, boolean flow, int childrenLeft, argument 1824 setupChild(child, position, y, flow, childrenLeft, selected, true); 1834 setupChild(child, position, y, flow, childrenLeft, selected, mIsScrap[0]); 1848 * @param childrenLeft Left edge where children should be positioned 1853 private void setupChild(View child, int position, int y, boolean flowDown, int childrenLeft, argument 1919 final int childRight = childrenLeft + w; 1921 child.layout(childrenLeft, childTop, childRight, childBottom); 1923 child.offsetLeftAndRight(childrenLeft - child.getLeft());
|
H A D | Gallery.java | 626 int childrenLeft = mSpinnerPadding.left; 668 int selectedOffset = childrenLeft + (childrenWidth / 2) - (sel.getWidth() / 2) +
|
Completed in 80 milliseconds