如果是xmarin.forms,使用:
代码语言:javascript复制 try
{
Xamarin.Forms.Device.BeginInvokeOnMainThread(() => {
MessagingCenter.Send(App.Current, "log", e1.Message "rn" e1.Source); // 这里更新UI。
});
}
catch (Exception e2)
{
Console.WriteLine(e2.Message);
}
如果是android.
代码语言:javascript复制FusionField.currentActivity.runOnUiThread(new Runnable()
{
public void run()
{
Toast.makeText(getApplicationContext(), , "Update My UI",
Toast.LENGTH_LONG).show();
}
});