public interface

IntentMonitor

android.support.test.runner.intent.IntentMonitor

Class Overview

Interface for tests to use when they need to monitor intents used to start activities from the current Instrumentation.

Retrieve instances of the monitor through {@link IntentMonitorRegistry).

Monitoring intents requires support from Instrumentation, therefore do not expect an instance to be present under any arbitrary instrumentation.

Summary

Public Methods
abstract void addIntentCallback(IntentCallback callback)
Adds an IntentCallback, which will be notified when intents are sent from the current instrumentation process.
abstract void removeIntentCallback(IntentCallback callback)
Removes a previously registered IntentCallback.

Public Methods

public abstract void addIntentCallback (IntentCallback callback)

Adds an IntentCallback, which will be notified when intents are sent from the current instrumentation process.

public abstract void removeIntentCallback (IntentCallback callback)

Removes a previously registered IntentCallback.