Searched refs:nextBottom (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/java/android/widget/ |
D | GridView.java | 417 private View fillUp(int pos, int nextBottom) { in fillUp() argument 425 while (nextBottom > end && pos >= 0) { in fillUp() 427 View temp = makeRow(pos, nextBottom, false); in fillUp() 432 nextBottom = mReferenceView.getTop() - mVerticalSpacing; in fillUp() 465 private View fillFromBottom(int lastPosition, int nextBottom) { in fillFromBottom() argument 472 return fillUp(lastPosition, nextBottom); in fillFromBottom()
|
D | ListView.java | 815 private View fillUp(int pos, int nextBottom) { in fillUp() argument 823 while (nextBottom > end && pos >= 0) { in fillUp() 826 View child = makeAndAddView(pos, nextBottom, false, mListPadding.left, selected); in fillUp() 827 nextBottom = child.getTop() - mDividerHeight; in fillUp()
|