本文整理汇总了C#中ProgressHandler.SendEmptyMessage方法的典型用法代码示例。如果您正苦于以下问题:C# ProgressHandler.SendEmptyMessage方法的具体用法?C# ProgressHandler.SendEmptyMessage怎么用?C# ProgressHandler.SendEmptyMessage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ProgressHandler
的用法示例。
在下文中一共展示了ProgressHandler.SendEmptyMessage方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: OnCreate
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
SetContentView(Resource.Layout.LoginScreen);
var submitButton = FindViewById<Button>(Resource.Id.BtnLogin);
var urlInput = FindViewById<EditText>(Resource.Id.LoginScreenServerUrlInput);
var keyInput = FindViewById<EditText>(Resource.Id.LoginScreenUserKeyInput);
var login = new Login();
urlInput.Text = login.Url;
keyInput.Text = login.Key;
submitButton.Click += delegate
{
var dialog = ProgressDialog.Show(this, "", "Connecting to server and validating key...", true);
var handler = new ProgressHandler(dialog);
new Login().ValidateAndStore(urlInput.Text, keyInput.Text, (valid) => RunOnUiThread(() =>
{
if (valid == Login.ValidationSuccess)
{
dialog.SetMessage("Successfully connected to " + urlInput.Text);
var widgetContainer = new Intent(this, typeof(WidgetContainer));
StartActivity(widgetContainer);
Finish();
handler.SendEmptyMessage(0);
} else
{
dialog.SetMessage("Connection failed. Please try again");
handler.SendEmptyMessage(0);
NotifyInvalidInput();
}
}));
};
}
示例2: OnDialogClosed
protected override void OnDialogClosed(bool positiveResult)
{
if (!positiveResult) return;
var dialog = ProgressDialog.Show(_context, "", "Connecting to server and validating key...");
var handler = new ProgressHandler(dialog);
new Login().ValidateAndStore(_serverUrlBox.Text, _userKeyBox.Text, str
=> ((Activity)_context).RunOnUiThread(()
=>
{
if (str == Login.ValidationSuccess)
Toast.MakeText(_context, "Successfully connected to " + _serverUrlBox.Text, ToastLength.Long).Show();
else
{
Toast.MakeText(_context, "Connection failed. Please try again", ToastLength.Long).Show();
ShowDialog(null);
}
handler.SendEmptyMessage(0);
}));
}