我有异步方法ExecuteWithRetryAsync
,它实现了一些重试逻辑,并且必须在调用时立即显示 ProgressDialog。目前,第一个电话Show()
从来没有真正奏效。进度对话框仅在AlertDialog
确认后显示(第二条评论)。如何Show()
在 ExecuteWithRetryAsync 开始时实际显示进度对话框?
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);
}
}
更新:我观察到,当设备连接被禁用时,大约需要 10-15 秒ExecuteWithRetryAsync
才能开始执行,同时设备多次显示应用程序没有响应对话框,而连接上它会立即执行。为什么?
更新 2:当我await Task.Delay (50)
调用 Show() 后,它确实显示了,但进度对话框动画没有更新,它被冻结了。
更新 3:我result = methodInfo?.Invoke(Utility.WsHueckmann, args)
在 await Task.Run 中放入以下行,这样它就变成await Task.Run(() => { result = methodInfo?.Invoke(Utility.WsHueckmann, args); })
了,现在它正在工作并且微调器正在更新。