Added in API level 7
    ValueCallback
interface ValueCallback<T : Any!>
| android.webkit.ValueCallback | 
A callback interface used to provide values asynchronously.
Summary
| Public methods | |
|---|---|
| abstract Unit | onReceiveValue(value: T)Invoked when the value is available. | 
Public methods
onReceiveValue
Added in API level 7
      abstract fun onReceiveValue(value: T): Unit
Invoked when the value is available.
| Parameters | |
|---|---|
| value | T: The value. | 
