Searched refs:childrenLeft (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | Spinner.java | 634 int childrenLeft = mSpinnerPadding.left; in layout() local 662 int selectedOffset = childrenLeft; in layout() 667 selectedOffset = childrenLeft + (childrenWidth / 2) - (width / 2); in layout() 670 selectedOffset = childrenLeft + childrenWidth - width; in layout()
|
D | GridView.java | 1424 private View makeAndAddView(int position, int y, boolean flow, int childrenLeft, in makeAndAddView() argument 1432 setupChild(activeView, position, y, flow, childrenLeft, selected, true, where); in makeAndAddView() 1442 setupChild(child, position, y, flow, childrenLeft, selected, mIsScrap[0], where); in makeAndAddView() 1465 private void setupChild(View child, int position, int y, boolean flowDown, int childrenLeft, in setupChild() argument 1546 childLeft = childrenLeft; in setupChild() 1549 childLeft = childrenLeft + ((mColumnWidth - w) / 2); in setupChild() 1552 childLeft = childrenLeft + mColumnWidth - w; in setupChild() 1555 childLeft = childrenLeft; in setupChild()
|
D | ListView.java | 2037 private View makeAndAddView(int position, int y, boolean flow, int childrenLeft, in makeAndAddView() argument 2045 setupChild(activeView, position, y, flow, childrenLeft, selected, true); in makeAndAddView() 2055 setupChild(child, position, y, flow, childrenLeft, selected, mIsScrap[0]); in makeAndAddView() 2076 private void setupChild(View child, int position, int y, boolean flowDown, int childrenLeft, in setupChild() argument 2160 final int childRight = childrenLeft + w; in setupChild() 2162 child.layout(childrenLeft, childTop, childRight, childBottom); in setupChild() 2164 child.offsetLeftAndRight(childrenLeft - child.getLeft()); in setupChild()
|
D | Gallery.java | 637 int childrenLeft = mSpinnerPadding.left; in layout() local 679 int selectedOffset = childrenLeft + (childrenWidth / 2) - (sel.getWidth() / 2) + in layout()
|