Example #1
0
		protected override void OnCreate(Bundle bundle)
		{
			base.OnCreate (bundle);


			if (bundle != null) {
			mKiipFragment = (KiipFragment) FragmentManager.FindFragmentByTag(KIIP_TAG);
			} else {
			mKiipFragment = new KiipFragment();
			FragmentManager.BeginTransaction ().Add (mKiipFragment, KIIP_TAG).Commit();
			}

		}
Example #2
0
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);


            if (bundle != null)
            {
                mKiipFragment = (KiipFragment)FragmentManager.FindFragmentByTag(KIIP_TAG);
            }
            else
            {
                mKiipFragment = new KiipFragment();
                FragmentManager.BeginTransaction().Add(mKiipFragment, KIIP_TAG).Commit();
            }
        }