Example #1
0
 public static void Copy(CSIContext src, CSIContext tgt)
 {
     if ((tgt != null) && (src != null))
     {
         tgt.ParseBundle(src.BuildBundle());
     }
     if (tgt == null)
     {
         tgt = new CSIContext();
     }
 }
Example #2
0
 protected override void OnResume()
 {
     base.OnResume();
     SetMyTheme();
     CSISystemContext.ParseBundle(Intent.GetBundleExtra("CSISystemContext"));
 }