public void OnActivityResumed(Activity activity)
 {
     if (isInBackground)
     {
         isInBackground = false;
         backgroundService.EnterForeground();
     }
 }
Exemplo n.º 2
0
 public override void WillEnterForeground(UIApplication application)
 {
     base.WillEnterForeground(application);
     backgroundService.EnterForeground();
 }