Page Summary
-
IVerifyAppsDataCallback.Stub.Proxyis a class that extendsBaseProxyand implementsIVerifyAppsDataCallback. -
It has one public method,
onGetVerifyAppsDataResult, which is called with the results of thegetVerifyAppsDataAPI. -
The
onGetVerifyAppsDataResultmethod indicates success or failure with a boolean and provides the result data in a Bundle.
public static class IVerifyAppsDataCallback.Stub.Proxy extends BaseProxy
implements IVerifyAppsDataCallback
implements IVerifyAppsDataCallback
Public Method Summary
| void |
onGetVerifyAppsDataResult(boolean success, Bundle result)
This will be called with the results of the getVerifyAppsData API.
|
Inherited Method Summary
Public Methods
public void onGetVerifyAppsDataResult (boolean success, Bundle result)
This will be called with the results of the getVerifyAppsData API.
Parameters
| success | false if there was an error while getting the list of harmful apps, otherwise true. |
|---|---|
| result | A Bundle containing the requested data. Can be null if success is false |
Throws
| RemoteException |
|---|