protected override void AttachBaseContext(Context @base)
 {
     if (this is IMvxAndroidSplashScreenActivity)
     {
         // Do not attach our inflater to splash screens.
         base.AttachBaseContext(@base);
         return;
     }
     base.AttachBaseContext(MvxContextWrapper.Wrap(@base, this));
 }
Example #2
0
 protected override void AttachBaseContext(Context @base)
 {
     if (this is IMvxSetupMonitor)
     {
         // Do not attach our inflater to splash screens.
         base.AttachBaseContext(@base);
         return;
     }
     base.AttachBaseContext(MvxContextWrapper.Wrap(@base, this));
 }
Example #3
0
 protected override void AttachBaseContext(Context @base)
 {
     base.AttachBaseContext(MvxContextWrapper.Wrap(@base, this));
 }