1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| override fun onLayoutChildren(recycler: Recycler, state: RecyclerView.State) { detachAndScrapAttachedViews(recycler) fill(recycler, state, layoutState) recycleByLayoutState(recycler, layoutState) }
private int fill(RecyclerView.Recycler recycler, LayoutState layoutState, RecyclerView.State state) { while ((layoutState.mLayoutDirection == LayoutState.LAYOUT_START && layoutState.hasMore(state)) || layoutState.mLayoutDirection == LayoutState.LAYOUT_END) { View view = recycler.getViewForPosition(layoutState.mCurrentPosition); addView(view); measureChildWithMargins(view, 0, 0); layoutDecorated(view, left, top, right, bottom); layoutState.mCurrentPosition += layoutState.mItemDirection; } }
|