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

your call to .setPositiveButton("OK", null) is ambiguous because the method has 2 overloads and your second parameter null can be interpreted as :

  • System.EventHandler<Android.Content.DialogClickEventArgs>
  • or as a Android.Content.IDialogInterfaceOnClickListener

if you want to invoke the second overload, try this:

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