Searched refs:mListState (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Messaging/src/com/android/messaging/ui/conversationlist/
H A DConversationListFragment.java101 private Parcelable mListState; field in class:ConversationListFragment
218 mListState = savedInstanceState.getParcelable(SAVED_INSTANCE_STATE_LIST_VIEW_STATE_KEY);
264 if (mListState != null) {
265 outState.putParcelable(SAVED_INSTANCE_STATE_LIST_VIEW_STATE_KEY, mListState);
272 mListState = mRecyclerView.getLayoutManager().onSaveInstanceState();
290 if (mListState != null && cursor != null && oldCursor == null) {
291 mRecyclerView.getLayoutManager().onRestoreInstanceState(mListState);
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DContactEntryListFragment.java119 private Parcelable mListState; field in class:ContactEntryListFragment
288 mListState = savedState.getParcelable(KEY_LIST_STATE);
884 if (mListState != null) {
885 mListView.onRestoreInstanceState(mListState);
886 mListState = null;
/packages/apps/Music/src/com/android/music/
H A DMusicPicker.java118 Parcelable mListState = null; field in class:MusicPicker
390 if (mListState != null) {
391 getListView().onRestoreInstanceState(mListState);
396 mListState = null;
420 mListState = icicle.getParcelable(LIST_STATE_KEY);
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
H A DConversationFragment.java163 private Parcelable mListState; field in class:ConversationFragment
600 mListState = savedInstanceState.getParcelable(SAVED_INSTANCE_STATE_LIST_VIEW_STATE_KEY);
693 if (mListState != null) {
694 outState.putParcelable(SAVED_INSTANCE_STATE_LIST_VIEW_STATE_KEY, mListState);
858 if (mListState != null) {
859 mRecyclerView.getLayoutManager().onRestoreInstanceState(mListState);
987 mListState = mRecyclerView.getLayoutManager().onSaveInstanceState();

Completed in 290 milliseconds