# Print output for @column tags ?> DialogInterface - Android SDK | Android Developers

Most visited

Recently visited

DialogInterface

public interface DialogInterface

android.content.DialogInterface


Interface that defines a dialog-type class that can be shown, dismissed, or canceled, and may have buttons that can be clicked.

Summary

Nested classes

interface DialogInterface.OnCancelListener

Interface used to allow the creator of a dialog to run some code when the dialog is canceled. 

interface DialogInterface.OnClickListener

Interface used to allow the creator of a dialog to run some code when an item on the dialog is clicked. 

interface DialogInterface.OnDismissListener

Interface used to allow the creator of a dialog to run some code when the dialog is dismissed. 

interface DialogInterface.OnKeyListener

Interface definition for a callback to be invoked when a key event is dispatched to this dialog. 

interface DialogInterface.OnMultiChoiceClickListener

Interface used to allow the creator of a dialog to run some code when an item in a multi-choice dialog is clicked. 

interface DialogInterface.OnShowListener

Interface used to allow the creator of a dialog to run some code when the dialog is shown. 

Constants

int BUTTON1

This constant is deprecated. Use BUTTON_POSITIVE

int BUTTON2

This constant is deprecated. Use BUTTON_NEGATIVE

int BUTTON3

This constant is deprecated. Use BUTTON_NEUTRAL

int BUTTON_NEGATIVE

The identifier for the negative button.

int BUTTON_NEUTRAL

The identifier for the neutral button.

int BUTTON_POSITIVE

The identifier for the positive button.

Public methods

abstract void cancel()

Cancels the dialog, invoking the OnCancelListener.

abstract void dismiss()

Dismisses the dialog, invoking the OnDismissListener.

Constants

BUTTON1

public static final int BUTTON1

This constant is deprecated.
Use BUTTON_POSITIVE

Constant Value: -1 (0xffffffff)

BUTTON2

public static final int BUTTON2

This constant is deprecated.
Use BUTTON_NEGATIVE

Constant Value: -2 (0xfffffffe)

BUTTON3

public static final int BUTTON3

This constant is deprecated.
Use BUTTON_NEUTRAL

Constant Value: -3 (0xfffffffd)

BUTTON_NEGATIVE

public static final int BUTTON_NEGATIVE

The identifier for the negative button.

Constant Value: -2 (0xfffffffe)

BUTTON_NEUTRAL

public static final int BUTTON_NEUTRAL

The identifier for the neutral button.

Constant Value: -3 (0xfffffffd)

BUTTON_POSITIVE

public static final int BUTTON_POSITIVE

The identifier for the positive button.

Constant Value: -1 (0xffffffff)

Public methods

cancel

public abstract void cancel ()

Cancels the dialog, invoking the OnCancelListener.

The OnDismissListener may also be called if cancellation dismisses the dialog.

dismiss

public abstract void dismiss ()

Dismisses the dialog, invoking the OnDismissListener.