Home
last modified time | relevance | path

Searched refs:mLayoutState (Results 1 – 3 of 3) sorted by relevance

/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
DLinearLayoutManager.java74 private LayoutState mLayoutState; field in LinearLayoutManager
476 mLayoutState.mRecycle = false;
495 if (mLayoutState.mLastScrollDelta >= 0) {
533 mLayoutState.mIsPreLayout = state.isPreLayout();
537 mLayoutState.mExtra = extraForStart;
538 fill(recycler, mLayoutState, state, false);
539 startOffset = mLayoutState.mOffset;
540 final int firstElement = mLayoutState.mCurrentPosition;
541 if (mLayoutState.mAvailable > 0) {
542 extraForEnd += mLayoutState.mAvailable;
[all …]
DStaggeredGridLayoutManager.java115 private LayoutState mLayoutState; field in StaggeredGridLayoutManager
516 mLayoutState = new LayoutState();
602 fill(recycler, mLayoutState, state);
605 mLayoutState.mCurrentPosition = anchorInfo.mPosition + mLayoutState.mItemDirection;
606 fill(recycler, mLayoutState, state);
610 fill(recycler, mLayoutState, state);
613 mLayoutState.mCurrentPosition = anchorInfo.mPosition + mLayoutState.mItemDirection;
614 fill(recycler, mLayoutState, state);
1277 mLayoutState.mAvailable = 0;
1278 mLayoutState.mCurrentPosition = anchorPosition;
[all …]
DRecyclerView.java983 state.mLayoutState = mLayout.onSaveInstanceState(); in onSaveInstanceState()
985 state.mLayoutState = null; in onSaveInstanceState()
995 if (mLayout != null && mPendingSavedState.mLayoutState != null) { in onRestoreInstanceState()
996 mLayout.onRestoreInstanceState(mPendingSavedState.mLayoutState); in onRestoreInstanceState()
9325 Parcelable mLayoutState; field in RecyclerView.SavedState
9332 mLayoutState = in.readParcelable(LayoutManager.class.getClassLoader()); in SavedState()
9345 dest.writeParcelable(mLayoutState, 0); in writeToParcel()
9349 mLayoutState = other.mLayoutState; in copyFrom()