in my application i many onSaveInstanceState
in each activity and file, now after reading this link to create Parcelable
class i can not use that and save into this class
default onSaveInstanceState
is:
@Override
public void onSaveInstanceState(Bundle savedInstanceState) {
super.onSaveInstanceState(savedInstanceState);
savedInstanceState.putBoolean("IsShowingExitDialogs", mIsShowingExitDialogs);
savedInstanceState.getInt("LastMenuItemSelected", mLastMenuItemSelected);
}
now i can not use this below line to save IsShowingExitDialogs
or LastMenuItemSelected
to Parcable class:
savedInstanceState.putParcelable("IsShowingExitDialogs", mIsShowingExitDialogs);
savedInstanceState.putParcelable("IsShowingExitDialogs", mLastMenuItemSelected);