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

Most visited

Recently visited

MockDialogInterface

public class MockDialogInterface
extends Object implements DialogInterface

java.lang.Object
   ↳ android.test.mock.MockDialogInterface


This class is deprecated.
Use a mocking framework like Mockito. New tests should be written using the Android Testing Support Library.

A mock DialogInterface class. All methods are non-functional and throw UnsupportedOperationException. Override it to provide the operations that you need.

Summary

Inherited constants

Public constructors

MockDialogInterface()

Public methods

void cancel()

Cancels the dialog, invoking the OnCancelListener.

void dismiss()

Dismisses the dialog, invoking the OnDismissListener.

Inherited methods

Public constructors

MockDialogInterface

public MockDialogInterface ()

Public methods

cancel

public void cancel ()

Cancels the dialog, invoking the OnCancelListener.

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

dismiss

public void dismiss ()

Dismisses the dialog, invoking the OnDismissListener.