Exemple #1
0
        protected override void OnSaveInstanceState(Bundle outState)
        {
            base.OnSaveInstanceState(outState);

            outState.PutBoolean(UpdateKey, askForUpdates);
            SupportFragmentManager.PutFragment(outState, ExhibitsOverviewFragString, exhibitsOverviewFragment);
        }
Exemple #2
0
        protected override void OnSaveInstanceState(Bundle outState)
        {
            base.OnSaveInstanceState(outState);
            Fragment registrationDialog = GetFragmentManager().FindFragmentByTag(RegistrationDialogFragmentTag);

            if (registrationDialog != null)
            {
                SupportFragmentManager.PutFragment(outState, RegistrationDialogFragmentTag, registrationDialog);
            }
        }
 protected override void OnSaveInstanceState(Bundle outState)
 {
     base.OnSaveInstanceState(outState);
     SupportFragmentManager.PutFragment(outState, "_content", _content);
 }