我正在尝试使用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;
我做错了什么?
答案 0 :(得分:6)
您对.setPositiveButton("OK", null)
的调用不明确,因为该方法有2个重载,第二个参数null可以解释为:
System.EventHandler<Android.Content.DialogClickEventArgs>
Android.Content.IDialogInterfaceOnClickListener
如果你想调用第二个重载,试试这个:
.setPositiveButton("OK", (Android.Content.IDialogInterfaceOnClickListener)null)