web-dev-qa-db-ja.com

MonodroidでMessageBoxを表示する方法

Xamarin.Androidでメッセージボックスを表示するにはどうすればよいですか?メッセージボックスから「はい」または「いいえ」の応答を取得するにはどうすればよいですか。

- - 更新しました :

myBtn.Click += (sender, e) => 
{
   new AlertDialog.Builder(this)
   .SetMessage("hi")
   .Show();
};
10
MilkBottle

Activity内からAlertDialog.Buiderクラスを使用できます。

new AlertDialog.Builder(this)
    .SetPositiveButton("Yes", (sender, args) =>
    {
        // User pressed yes
    })
    .SetNegativeButton("No", (sender, args) =>
    {
        // User pressed no 
    })
    .SetMessage("An error happened!")
    .SetTitle("Error")
    .Show();
20
Alex Wiese

これを試して:

public void ShowAlert (string str)
        {
            AlertDialog.Builder alert = new AlertDialog.Builder (this);
            alert.SetTitle (str);
            alert.SetPositiveButton ("OK", (senderAlert, args) => {
                // write your own set of instructions
                });

            //run the alert in UI thread to display in the screen
            RunOnUiThread (() => {
                alert.Show ();
            });
        }
2