Skip to content

Instantly share code, notes, and snippets.

@monotocho
Created July 2, 2012 14:12
Show Gist options
  • Save monotocho/3033431 to your computer and use it in GitHub Desktop.
Save monotocho/3033431 to your computer and use it in GitHub Desktop.
ViewDissapear
public override void ViewWillDisappear (bool animated)
{
base.ViewWillDisappear (animated);
//use AtmHud ActivityView
MUI.MuestraCursor ("Cargando Articulos...");
ThreadPool.QueueUserWorkItem ((ee) => {
//That method is late 6 seconds
call database method
}
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment