Stay organized with collections
Save and categorize content based on your preferences.
ValueCallback
interface ValueCallback<T : Any!>
A callback interface used to provide values asynchronously.
Summary
Public methods |
abstract Unit |
Invoked when the value is available.
|
Public methods
onReceiveValue
abstract fun onReceiveValue(value: T): Unit
Invoked when the value is available.
Parameters |
value |
T: The value. |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-10 UTC."],[],[],null,["# ValueCallback\n\nAdded in [API level 7](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nValueCallback\n=============\n\n*** ** * ** ***\n\nKotlin \\|[Java](/reference/android/webkit/ValueCallback \"View this page in Java\") \n\n```\ninterface ValueCallback\u003cT : Any!\u003e\n```\n\n|-----------------------------------|\n| [android.webkit.ValueCallback](#) |\n\nA callback interface used to provide values asynchronously.\n\nSummary\n-------\n\n| Public methods ||\n|---------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------|\n| abstract [Unit](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) | [onReceiveValue](#onReceiveValue(android.webkit.ValueCallback.T))`(`value:` `T`)` Invoked when the value is available. |\n\nPublic methods\n--------------\n\n### onReceiveValue\n\nAdded in [API level 7](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nabstract fun onReceiveValue(value: T): Unit\n```\n\nInvoked when the value is available.\n\n| Parameters ||\n|---------|---------------|\n| `value` | T: The value. |"]]