{% setvar book_path %}/reference/androidx/_book.yaml{% endsetvar %} {% include "_shared/_reference-head-tags.html" %}
interface InterceptingActivityFactory
Implement this interface to provide custom implementation of Activity under test. It is used by newActivity to create instance of the activity under test. Please see interceptActivityUsing for more details.
Public methods |
|
|---|---|
abstract Activity |
create(ClassLoader classLoader, String className, Intent intent)This method can be used to provide activity instance while intercepting activity creation for a particular activity in response to a given intent. |
abstract boolean |
shouldIntercept(This method can be used to know whether activity instance creation should be intercepted or not for a particular activity in response to a given intent. |
abstract Activity create(ClassLoader classLoader, String className, Intent intent)
This method can be used to provide activity instance while intercepting activity creation for a particular activity in response to a given intent.
| Parameters | |
|---|---|
ClassLoader classLoader |
The ClassLoader with which to instantiate the object |
String className |
The name of the class implementing the Activity object |
Intent intent |
The Intent object that specified the activity class being instantiated. |
| Returns | |
|---|---|
Activity |
The newly instantiated Activity object. |
abstract boolean shouldIntercept(
ClassLoader classLoader,
String className,
Intent intent
)
This method can be used to know whether activity instance creation should be intercepted or not for a particular activity in response to a given intent.
| Parameters | |
|---|---|
ClassLoader classLoader |
The ClassLoader with which to instantiate the object |
String className |
The name of the class implementing the Activity object |
Intent intent |
The Intent object that specified the activity class being instantiated. |
| Returns | |
|---|---|
boolean |
true if activity with className should be intercepted, otherwise false. |