如何在Monodroid中显示MessageBox

本文关键字:显示 MessageBox Monodroid | 更新日期: 2023-09-27 18:14:46

如何在Xamarin.Android中显示消息框?如何从消息框获得"是"或"否"响应?

——更新:

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

如何在Monodroid中显示MessageBox

您可以在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();

试试这个:

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 ();
            });
        }