3

目前我正在尝试使用 C# 在 Android 应用程序上创建一个警报对话框。不幸的是,我收到了这个错误:

The call is ambiguous between the following methods or properties: `Android.App.AlertDialog.Builder.SetPositiveButton(string, System.EventHandler<Android.Content.DialogClickEventArgs>)' and `Android.App.AlertDialog.Builder.SetPositiveButton(string, Android.Content.IDialogInterfaceOnClickListener)' (CS0121) (App)

这是我的代码:

var alert = new AlertDialog.Builder(this).SetTitle("Title").SetMessage("Message").setPositiveButton("OK", null);
alert.Show ();
return true;

我究竟做错了什么?

4

1 回答 1

6

您的调用.setPositiveButton("OK", null)不明确,因为该方法有 2 个重载,并且您的第二个参数 null 可以解释为:

  • System.EventHandler<Android.Content.DialogClickEventArgs>
  • 或作为Android.Content.IDialogInterfaceOnClickListener

如果你想调用第二个重载,试试这个:

.setPositiveButton("OK", (Android.Content.IDialogInterfaceOnClickListener)null)
于 2013-03-06T09:52:14.247 回答