Home | History | Annotate | Download | only in settings

Lines Matching full:state

60     protected void showDialog(Bundle state) {
61 super.showDialog(state);
150 // Save the dialog state
155 // Restore the old state when the activity or dialog is being paused
161 protected void onRestoreInstanceState(Parcelable state) {
162 if (state == null || !state.getClass().equals(SavedState.class)) {
163 // Didn't save state for us in onSaveInstanceState
164 super.onRestoreInstanceState(state);
168 SavedState myState = (SavedState) state;