備忘録

備忘録

Xamarin.AndroidでAlertDialogを出す


RunOnUiThread( () => 
    new AlertDialog.Builder(this)
        .SetTitle("alert")
        .SetMessage("helloworld")
        .Show()
);