Home
last modified time | relevance | path

Searched refs:inState (Results 1 – 4 of 4) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/ui/
DOnePaneController.java104 public void onRestoreInstanceState(Bundle inState) { in onRestoreInstanceState() argument
105 super.onRestoreInstanceState(inState); in onRestoreInstanceState()
106 if (inState == null) { in onRestoreInstanceState()
110 inState.getInt(CONVERSATION_LIST_TRANSACTION_KEY, INVALID_ID); in onRestoreInstanceState()
111 mLastConversationTransactionId = inState.getInt(CONVERSATION_TRANSACTION_KEY, INVALID_ID); in onRestoreInstanceState()
112 mConversationListVisible = inState.getBoolean(CONVERSATION_LIST_VISIBLE_KEY); in onRestoreInstanceState()
113 mConversationListNeverShown = inState.getBoolean(CONVERSATION_LIST_NEVER_SHOWN_KEY); in onRestoreInstanceState()
DViewMode.java235 public void handleRestore(Bundle inState) { in handleRestore() argument
236 if (inState == null) { in handleRestore()
240 final int newMode = inState.getInt(VIEW_MODE_KEY, UNKNOWN); in handleRestore()
/packages/apps/Dialer/src/com/android/dialer/widget/
DActionBarController.java209 public void restoreInstanceState(Bundle inState) { in restoreInstanceState() argument
210 mIsActionBarSlidUp = inState.getBoolean(KEY_IS_SLID_UP); in restoreInstanceState()
212 final boolean isSearchBoxFadedOut = inState.getBoolean(KEY_IS_FADED_OUT); in restoreInstanceState()
221 final boolean isSearchBoxExpanded = inState.getBoolean(KEY_IS_EXPANDED); in restoreInstanceState()
/packages/apps/Gallery2/src/com/android/gallery3d/app/
DStateManager.java267 public void restoreFromState(Bundle inState) { in restoreFromState() argument
269 Parcelable list[] = inState.getParcelableArray(KEY_MAIN); in restoreFromState()