c# – 以下方法或属性之间的调用不明确:`Android.App.AlertDialog.Builder.SetPositiveButton

c# – 以下方法或属性之间的调用不明确:`Android.App.AlertDialog.Builder.SetPositiveButton,第1张

概述我正在尝试使用C#在Android应用程序上创建警报对话框.不幸的是我收到此错误:Thecallisambiguousbetweenthefollowingmethodsorproperties:`Android.App.AlertDialog.Builder.SetPositiveButton(string,System.EventHandler<Android.Content.DialogClickEventArgs>)'an

我正在尝试使用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;

我究竟做错了什么?

解决方法:

你对.setPositivebutton(“OK”,null)的调用是不明确的,因为该方法有2个重载,你的第二个参数null可以解释为:

> System.EventHandler< AndroID.Content.DialogClickEventArgs>
>或作为AndroID.Content.IDialogInterfaceOnClickListener

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

.setPositivebutton("OK", (AndroID.Content.IDialogInterfaceOnClickListener)null)
总结

以上是内存溢出为你收集整理的c# – 以下方法或属性之间的调用不明确:`Android.App.AlertDialog.Builder.SetPositiveButton全部内容,希望文章能够帮你解决c# – 以下方法或属性之间的调用不明确:`Android.App.AlertDialog.Builder.SetPositiveButton所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1110107.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存