TrustedWebActivityCallback
public
abstract
class
TrustedWebActivityCallback
extends Object
| java.lang.Object | |
| ↳ | androidx.browser.trusted.TrustedWebActivityCallback |
A callback class for browser to get messages from client app. The callbacks should be called via
TrustedWebActivityCallbackRemote on client app.
Summary
Public constructors | |
|---|---|
TrustedWebActivityCallback()
|
|
Public methods | |
|---|---|
abstract
void
|
onExtraCallback(String callbackName, Bundle args)
Free-form callback that may be provided by the implementation. |
Inherited methods | |
|---|---|
Public constructors
TrustedWebActivityCallback
public TrustedWebActivityCallback ()
Public methods
onExtraCallback
public abstract void onExtraCallback (String callbackName,
Bundle args)
Free-form callback that may be provided by the implementation.
Note:Clients should never rely on this callback to be called and/or to have a defined behavior, as it is entirely implementation-defined and not supported.
This can be used by implementations to add extra callbacks, for testing or experimental purposes.
| Parameters | |
|---|---|
callbackName |
String: Name of the extra callback. |
args |
Bundle: Arguments for the callback
|