Language

AlertDialog.Builder Class

Definition

Builds AlertDialog instances.

[Android.Runtime.Register("android/app/AlertDialog$Builder", DoNotGenerateAcw=true)]
public class AlertDialog.Builder : Java.Lang.Object
[<Android.Runtime.Register("android/app/AlertDialog$Builder", DoNotGenerateAcw=true)>]
type AlertDialog.Builder = class
    inherit Object
Inheritance
AlertDialog.Builder
Attributes

Remarks

Android reference for android.app.AlertDialog.Builder.

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.

Constructors

Name Description
AlertDialog.Builder(Context, Int32)

Creates a builder for an alert dialog that uses an explicit theme resource.

AlertDialog.Builder(Context)

Creates a builder for an alert dialog that uses the default alert dialog theme.

AlertDialog.Builder(IntPtr, JniHandleOwnership)

Initializes a managed representation of an existing Java Native Interface object.

Properties

Name Description
Class

Returns the runtime class of this Object.

(Inherited from Object)
Context

Returns a Context with the appropriate theme for dialogs created by this Builder.

Handle

The handle to the underlying Android instance.

(Inherited from Object)
JniIdentityHashCode

Gets the identity hash code assigned to this Java peer by the interop runtime.

(Inherited from Object)
JniManagedPeerState (Inherited from JavaObject)
JniPeerMembers

Provides JNI binding infrastructure for Android.App.AlertDialog.Builder.

PeerReference

Gets the JNI object reference for this Java peer.

(Inherited from Object)
ThresholdClass

Provides JNI binding infrastructure for Android.App.AlertDialog.Builder.

ThresholdType

Provides JNI binding infrastructure for Android.App.AlertDialog.Builder.

Methods

Name Description
Clone()

Creates and returns a copy of this object.

(Inherited from Object)
Construct(JniObjectReference, JniObjectReferenceOptions) (Inherited from JavaObject)
Create()

Creates an AlertDialog with the arguments supplied to this builder.

Dispose()

Releases the resources held by this Java peer.

(Inherited from Object)
Dispose(Boolean)

Releases the resources held by this Java peer.

(Inherited from Object)
DisposeUnlessReferenced() (Inherited from JavaObject)
Equals(Object) (Inherited from JavaObject)
Equals(Object)

Indicates whether some other object is "equal to" this one.

(Inherited from Object)
GetHashCode()

Returns a hash code value for the object.

(Inherited from Object)
JavaFinalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

(Inherited from Object)
Notify()

Wakes up a single thread that is waiting on this object's monitor.

(Inherited from Object)
NotifyAll()

Wakes up all threads that are waiting on this object's monitor.

(Inherited from Object)
SetAdapter(IListAdapter, EventHandler<DialogClickEventArgs>)
SetAdapter(IListAdapter, IDialogInterfaceOnClickListener)

Set a list of items, which are supplied by the given ListAdapter, to be displayed in the dialog as the content, you will be notified of the selected item via the supplied listener.

SetCancelable(Boolean)

Sets whether the dialog is cancelable or not.

SetCursor(ICursor, EventHandler<DialogClickEventArgs>, String)
SetCursor(ICursor, IDialogInterfaceOnClickListener, String)

Set a list of items, which are supplied by the given Cursor, to be displayed in the dialog as the content, you will be notified of the selected item via the supplied listener.

SetCustomTitle(View)

Set the title using the custom view customTitleView.

SetHandle(IntPtr, JniHandleOwnership)

Sets the Handle property.

(Inherited from Object)
SetIcon(Drawable)

Set the Drawable to be used in the title.

SetIcon(Int32)

Set the resource id of the Drawable to be used in the title.

SetIconAttribute(Int32)

Set an icon as supplied by a theme attribute.

SetInverseBackgroundForced(Boolean)

This method was deprecated in API level 23.

SetItems(ICharSequence[], EventHandler<DialogClickEventArgs>)
SetItems(ICharSequence[], IDialogInterfaceOnClickListener)

Set a list of items to be displayed in the dialog as the content, you will be notified of the selected item via the supplied listener.

SetItems(Int32, EventHandler<DialogClickEventArgs>)
SetItems(Int32, IDialogInterfaceOnClickListener)

Set a list of items to be displayed in the dialog as the content, you will be notified of the selected item via the supplied listener.

SetItems(String[], EventHandler<DialogClickEventArgs>)
SetItems(String[], IDialogInterfaceOnClickListener)

Set a list of items to be displayed in the dialog as the content, you will be notified of the selected item via the supplied listener.

SetMessage(ICharSequence)

Set the message to display.

SetMessage(Int32)

Set the message to display using the given resource id.

SetMessage(String)

Set the message to display.

SetMultiChoiceItems(ICharSequence[], Boolean[], EventHandler<DialogMultiChoiceClickEventArgs>)
SetMultiChoiceItems(ICharSequence[], Boolean[], IDialogInterfaceOnMultiChoiceClickListener)

Set a list of items to be displayed in the dialog as the content, you will be notified of the selected item via the supplied listener.

SetMultiChoiceItems(ICursor, String, String, EventHandler<DialogMultiChoiceClickEventArgs>)
SetMultiChoiceItems(ICursor, String, String, IDialogInterfaceOnMultiChoiceClickListener)

Set a list of items to be displayed in the dialog as the content, you will be notified of the selected item via the supplied listener.

SetMultiChoiceItems(Int32, Boolean[], EventHandler<DialogMultiChoiceClickEventArgs>)
SetMultiChoiceItems(Int32, Boolean[], IDialogInterfaceOnMultiChoiceClickListener)

Set a list of items to be displayed in the dialog as the content, you will be notified of the selected item via the supplied listener.

SetMultiChoiceItems(String[], Boolean[], EventHandler<DialogMultiChoiceClickEventArgs>)
SetMultiChoiceItems(String[], Boolean[], IDialogInterfaceOnMultiChoiceClickListener)

Set a list of items to be displayed in the dialog as the content, you will be notified of the selected item via the supplied listener.

SetNegativeButton(ICharSequence, EventHandler<DialogClickEventArgs>)
SetNegativeButton(ICharSequence, IDialogInterfaceOnClickListener)

Set a listener to be invoked when the negative button of the dialog is pressed.

SetNegativeButton(Int32, EventHandler<DialogClickEventArgs>)
SetNegativeButton(Int32, IDialogInterfaceOnClickListener)

Set a listener to be invoked when the negative button of the dialog is pressed.

SetNegativeButton(String, EventHandler<DialogClickEventArgs>)
SetNegativeButton(String, IDialogInterfaceOnClickListener)

Set a listener to be invoked when the negative button of the dialog is pressed.

SetNeutralButton(ICharSequence, EventHandler<DialogClickEventArgs>)
SetNeutralButton(ICharSequence, IDialogInterfaceOnClickListener)

Set a listener to be invoked when the neutral button of the dialog is pressed.

SetNeutralButton(Int32, EventHandler<DialogClickEventArgs>)
SetNeutralButton(Int32, IDialogInterfaceOnClickListener)

Set a listener to be invoked when the neutral button of the dialog is pressed.

SetNeutralButton(String, EventHandler<DialogClickEventArgs>)
SetNeutralButton(String, IDialogInterfaceOnClickListener)

Set a listener to be invoked when the neutral button of the dialog is pressed.

SetOnCancelListener(IDialogInterfaceOnCancelListener)

Sets the callback that will be called if the dialog is canceled.

SetOnDismissListener(IDialogInterfaceOnDismissListener)

Sets the callback that will be called when the dialog is dismissed for any reason.

SetOnItemSelectedListener(AdapterView+IOnItemSelectedListener)

Sets a listener to be invoked when an item in the list is selected.

SetOnKeyListener(IDialogInterfaceOnKeyListener)

Sets the callback that will be called if a key is dispatched to the dialog.

SetPeerReference(JniObjectReference, JniObjectReferenceOptions) (Inherited from JavaObject)
SetPositiveButton(ICharSequence, EventHandler<DialogClickEventArgs>)
SetPositiveButton(ICharSequence, IDialogInterfaceOnClickListener)

Set a listener to be invoked when the positive button of the dialog is pressed.

SetPositiveButton(Int32, EventHandler<DialogClickEventArgs>)
SetPositiveButton(Int32, IDialogInterfaceOnClickListener)

Set a listener to be invoked when the positive button of the dialog is pressed.

SetPositiveButton(String, EventHandler<DialogClickEventArgs>)
SetPositiveButton(String, IDialogInterfaceOnClickListener)

Set a listener to be invoked when the positive button of the dialog is pressed.

SetSingleChoiceItems(ICharSequence[], Int32, EventHandler<DialogClickEventArgs>)
SetSingleChoiceItems(ICharSequence[], Int32, IDialogInterfaceOnClickListener)

Set a list of items to be displayed in the dialog as the content, you will be notified of the selected item via the supplied listener.

SetSingleChoiceItems(ICursor, Int32, String, EventHandler<DialogClickEventArgs>)
SetSingleChoiceItems(ICursor, Int32, String, IDialogInterfaceOnClickListener)

Set a list of items to be displayed in the dialog as the content, you will be notified of the selected item via the supplied listener.

SetSingleChoiceItems(IListAdapter, Int32, EventHandler<DialogClickEventArgs>)
SetSingleChoiceItems(IListAdapter, Int32, IDialogInterfaceOnClickListener)

Set a list of items to be displayed in the dialog as the content, you will be notified of the selected item via the supplied listener.

SetSingleChoiceItems(Int32, Int32, EventHandler<DialogClickEventArgs>)
SetSingleChoiceItems(Int32, Int32, IDialogInterfaceOnClickListener)

Set a list of items to be displayed in the dialog as the content, you will be notified of the selected item via the supplied listener.

SetSingleChoiceItems(String[], Int32, EventHandler<DialogClickEventArgs>)
SetSingleChoiceItems(String[], Int32, IDialogInterfaceOnClickListener)

Set a list of items to be displayed in the dialog as the content, you will be notified of the selected item via the supplied listener.

SetTitle(ICharSequence)

Set the title displayed in the Dialog.

SetTitle(Int32)

Set the title using the given resource id.

SetTitle(String)

Set the title displayed in the Dialog.

SetView(Int32)

Set a custom view resource to be the contents of the Dialog.

SetView(View)

Sets a custom view to be the contents of the alert dialog.

Show()

Creates an AlertDialog with the arguments supplied to this builder and immediately displays the dialog.

ToArray<T>()

Creates a managed array from this Java array wrapper.

(Inherited from Object)
ToString()

Returns a string representation of the object.

(Inherited from Object)
UnregisterFromRuntime()

Unregisters this Java peer from the interop runtime.

(Inherited from Object)
Wait()

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>.

(Inherited from Object)
Wait(Int64, Int32)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)
Wait(Int64)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)

Events

Name Description
ItemSelected
ItemSelectionCleared
NothingSelected

Explicit Interface Implementations

Name Description
IJavaPeerable.Disposed() (Inherited from JavaObject)
IJavaPeerable.Finalized() (Inherited from JavaObject)
IJavaPeerable.JniObjectReferenceControlBlock (Inherited from JavaObject)
IJavaPeerable.SetJniIdentityHashCode(Int32) (Inherited from JavaObject)
IJavaPeerable.SetJniManagedPeerState(JniManagedPeerStates) (Inherited from JavaObject)
IJavaPeerable.SetPeerReference(JniObjectReference) (Inherited from JavaObject)

Extension Methods

Name Description
GetJniTypeName(IJavaPeerable)

Gets the JNI name of the type of the instance self.

JavaAs<TResult>(IJavaPeerable)

Try to coerce self to type TResult, checking that the coercion is valid on the Java side.

JavaCast<TResult>(IJavaObject)

Performs an Android runtime-checked type conversion.

JavaCast<TResult>(IJavaObject)
TryJavaCast<TResult>(IJavaPeerable, TResult)

Try to coerce self to type TResult, checking that the coercion is valid on the Java side.

Applies to