我有一个异步方法ExecuteWithRetryAsync
,该方法实现了一些重试逻辑,并且必须在调用后立即显示ProgressDialog。目前,对Show()
的首次呼叫从未真正起作用。仅在确认AlertDialog
(第二条注释)之后,才会显示进度对话框。如何使ExecuteWithRetryAsync开头的Show()
实际显示进度对话框?
public async Task<object> ExecuteWithRetryAsync(string methodName, object[] args)
{
MethodInfo methodInfo = typeof(Service1).GetMethod(methodName);
// below progress dialog not showing
mDialog = new ProgressDialog(context);
mDialog.SetMessage("Bitte warten...");
mDialog.SetCancelable(false);
mDialog.Show();
for (; ; )
{
try
{
object result = null;
try
{
// Call web service.
result = methodInfo?.Invoke(webservice, args);
}
catch (TargetInvocationException tie)
{
if (tie.InnerException != null) throw tie.InnerException;
}
mDialog?.Dismiss();
return result;
}
catch (Exception e)
{
Trace.TraceError("Operation Exception");
currentRetry++;
if (/*currentRetry > RetryCount || */!IsTransient(e))
{
// If this isn't a transient error or we shouldn't retry,
// rethrow the exception.
throw;
}
}
mDialog?.Dismiss();
await DisplayAlert(
context.GetString(Resource.String.timeout),
context.GetString(Resource.String.retry_operation),
context.GetString(Resource.String.Ok),
methodInfo);
// this progress dialog is showing
mDialog = new ProgressDialog(context);
mDialog.SetMessage("Bitte warten...");
mDialog.SetCancelable(false);
mDialog.Show();
await Task.Delay(MaxDelayMilliseconds);
}
}
更新:我观察到禁用设备连接后,ExecuteWithRetryAsync
大约需要10-15秒才能开始执行,与此同时,设备多次显示 app无响应对话框 ,而连接成功后立即执行。为什么呢?
更新2:当我在调用Show()之后放await Task.Delay (50)
时,它确实显示,但是进度对话框动画没有更新,它被冻结了。
更新3:我将result = methodInfo?.Invoke(Utility.WsHueckmann, args)
行放在等待Task.Run中,使其变为await Task.Run(() => { result = methodInfo?.Invoke(Utility.WsHueckmann, args); })
,现在它可以工作了,微调框正在更新。
答案 0 :(得分:1)
进度不旋转的原因是它不是不确定的,请添加以下代码,它应该可以工作
progress.Indeterminate = true;
progress.SetProgressStyle(Android.App.ProgressDialogStyle.Spinner);
更新
放入以下行
result = methodInfo?.Invoke(Utility.WsHueckmann, args)
在内部等待Task.Run,使其变为
await Task.Run(() => { result = methodInfo?.Invoke(Utility.WsHueckmann, args); })
现在可以正常使用了,微调器正在更新。