Home
last modified time | relevance | path

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

/packages/apps/Messaging/src/com/android/messaging/ui/conversationlist/
DConversationListFragment.java101 private Parcelable mListState; field in ConversationListFragment
218 mListState = savedInstanceState.getParcelable(SAVED_INSTANCE_STATE_LIST_VIEW_STATE_KEY); in onCreateView()
264 if (mListState != null) { in onSaveInstanceState()
265 outState.putParcelable(SAVED_INSTANCE_STATE_LIST_VIEW_STATE_KEY, mListState); in onSaveInstanceState()
272 mListState = mRecyclerView.getLayoutManager().onSaveInstanceState(); in onPause()
290 if (mListState != null && cursor != null && oldCursor == null) { in onConversationListCursorUpdated()
291 mRecyclerView.getLayoutManager().onRestoreInstanceState(mListState); in onConversationListCursorUpdated()
/packages/apps/Contacts/src/com/android/contacts/list/
DContactEntryListFragment.java134 private Parcelable mListState; field in ContactEntryListFragment
308 mListState = savedState.getParcelable(KEY_LIST_STATE); in restoreSavedState()
937 if (mListState != null) {
938 mListView.onRestoreInstanceState(mListState);
939 mListState = null;
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
DConversationFragment.java163 private Parcelable mListState; field in ConversationFragment
600 mListState = savedInstanceState.getParcelable(SAVED_INSTANCE_STATE_LIST_VIEW_STATE_KEY); in onCreateView()
693 if (mListState != null) { in onSaveInstanceState()
694 outState.putParcelable(SAVED_INSTANCE_STATE_LIST_VIEW_STATE_KEY, mListState); in onSaveInstanceState()
858 if (mListState != null) { in onConversationMessagesCursorUpdated()
859 mRecyclerView.getLayoutManager().onRestoreInstanceState(mListState); in onConversationMessagesCursorUpdated()
987 mListState = mRecyclerView.getLayoutManager().onSaveInstanceState(); in onPause()