Searched refs:childrenLeft (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | Spinner.java | 646 int childrenLeft = mSpinnerPadding.left; in layout() local 674 int selectedOffset = childrenLeft; in layout() 679 selectedOffset = childrenLeft + (childrenWidth / 2) - (width / 2); in layout() 682 selectedOffset = childrenLeft + childrenWidth - width; in layout()
|
D | GridView.java | 1444 private View makeAndAddView(int position, int y, boolean flow, int childrenLeft, in makeAndAddView() argument 1452 setupChild(activeView, position, y, flow, childrenLeft, selected, true, where); in makeAndAddView() 1462 setupChild(child, position, y, flow, childrenLeft, selected, mIsScrap[0], where); in makeAndAddView() 1485 private void setupChild(View child, int position, int y, boolean flowDown, int childrenLeft, in setupChild() argument 1566 childLeft = childrenLeft; in setupChild() 1569 childLeft = childrenLeft + ((mColumnWidth - w) / 2); in setupChild() 1572 childLeft = childrenLeft + mColumnWidth - w; in setupChild() 1575 childLeft = childrenLeft; in setupChild()
|
D | ListView.java | 2052 private View makeAndAddView(int position, int y, boolean flow, int childrenLeft, in makeAndAddView() argument 2060 setupChild(activeView, position, y, flow, childrenLeft, selected, true); in makeAndAddView() 2070 setupChild(child, position, y, flow, childrenLeft, selected, mIsScrap[0]); in makeAndAddView() 2091 private void setupChild(View child, int position, int y, boolean flowDown, int childrenLeft, in setupChild() argument 2175 final int childRight = childrenLeft + w; in setupChild() 2177 child.layout(childrenLeft, childTop, childRight, childBottom); in setupChild() 2179 child.offsetLeftAndRight(childrenLeft - child.getLeft()); in setupChild()
|
D | Gallery.java | 650 int childrenLeft = mSpinnerPadding.left; in layout() local 692 int selectedOffset = childrenLeft + (childrenWidth / 2) - (sel.getWidth() / 2) + in layout()
|