protected override void OnCreate(Bundle savedInstanceState)
 {
     base.OnCreate(savedInstanceState);
     if (savedInstanceState != null)
     {
         // Restore the Fragments instance
         mContent = (RunLocationListFragment)FragmentManager.GetFragment(savedInstanceState, "mContent");
     }
 }
Esempio n. 2
0
 public RunLocationListReceiver(RunLocationListFragment runFrag) : base()
 {
     mRunLocationListFragment = runFrag;
 }
 protected override Fragment CreateFragment()
 {
     mContent = new RunLocationListFragment();
     return(mContent);
 }