Advertisement
Guest User

Untitled

a guest
Dec 8th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1.  
  2. private void showLoadingScreen()
  3. {
  4. loadingDialog = ProgressDialog.Show(this, "just a sec", "Loading please wait...", true);
  5. loadingDialog.SetCancelable(true);
  6. loadingDialog.SetProgressStyle(ProgressDialogStyle.Horizontal);
  7.  
  8. loadingDialog.SetMessage("Loading...");
  9. loadingDialog.Show();
  10. }
  11.  
  12.  
  13.  
  14. -------------------------------------------
  15.  
  16. loadingDialog.Hide();
  17. loadingDialog.Dismiss();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement