android dialog is not cancelable

This commit is contained in:
Kyle Spearrin 2018-03-16 10:42:07 -04:00
parent b26067e5da
commit 7041991d5a

View file

@ -455,7 +455,7 @@ namespace Bit.Android.Services
var activity = (MainActivity)CurrentContext;
_progressDialog = new ProgressDialog(activity);
_progressDialog.SetMessage(text);
_progressDialog.SetCancelable(true);
_progressDialog.SetCancelable(false);
_progressDialog.Show();
}