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