IDialogInterfaceOnMultiChoiceClickListener.OnClick Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This method will be invoked when an item in the dialog is clicked.
[Android.Runtime.Register("onClick", "(Landroid/content/DialogInterface;IZ)V", "GetOnClick_Landroid_content_DialogInterface_IZHandler:Android.Content.IDialogInterfaceOnMultiChoiceClickListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public void OnClick (Android.Content.IDialogInterface? dialog, int which, bool isChecked);
[<Android.Runtime.Register("onClick", "(Landroid/content/DialogInterface;IZ)V", "GetOnClick_Landroid_content_DialogInterface_IZHandler:Android.Content.IDialogInterfaceOnMultiChoiceClickListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member OnClick : Android.Content.IDialogInterface * int * bool -> unit
Parameters
- dialog
- IDialogInterface
the dialog where the selection was made
- which
- Int32
the position of the item in the list that was clicked
- isChecked
- Boolean
true
if the click checked the item, else
false
- Attributes
Remarks
This method will be invoked when an item in the dialog is clicked.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.