Searched refs:nextBottom (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | GridView.java | 416 private View fillUp(int pos, int nextBottom) { in fillUp() argument 424 while (nextBottom > end && pos >= 0) { in fillUp() 426 View temp = makeRow(pos, nextBottom, false); in fillUp() 431 nextBottom = mReferenceView.getTop() - mVerticalSpacing; in fillUp() 464 private View fillFromBottom(int lastPosition, int nextBottom) { in fillFromBottom() argument 471 return fillUp(lastPosition, nextBottom); in fillFromBottom()
|
D | ListView.java | 821 private View fillUp(int pos, int nextBottom) { in fillUp() argument 829 while (nextBottom > end && pos >= 0) { in fillUp() 832 View child = makeAndAddView(pos, nextBottom, false, mListPadding.left, selected); in fillUp() 833 nextBottom = child.getTop() - mDividerHeight; in fillUp()
|