public
static
final
class
Instrumentation.ActivityResult
extends Object
java.lang.Object | |
↳ | android.app.Instrumentation.ActivityResult |
Description of a Activity execution result to return to the original activity.
Public constructors | |
---|---|
Instrumentation.ActivityResult(int resultCode, Intent resultData)
Create a new activity result. |
Public methods | |
---|---|
int
|
getResultCode()
Retrieve the result code contained in this result. |
Intent
|
getResultData()
Retrieve the data contained in this result. |
Inherited methods | |
---|---|
From
class
java.lang.Object
|
Instrumentation.ActivityResult (int resultCode, Intent resultData)
Create a new activity result. See setResult(int)
for
more information.
Parameters | |
---|---|
resultCode |
int :
The result code to propagate back to the
originating activity, often RESULT_CANCELED or RESULT_OK |
resultData |
Intent :
The data to propagate back to the originating
activity.
|
int getResultCode ()
Retrieve the result code contained in this result.
Returns | |
---|---|
int |
Intent getResultData ()
Retrieve the data contained in this result.
Returns | |
---|---|
Intent |