OnParameterChangeListener
interfaceOnParameterChangeListener
android.media.audiofx.Virtualizer.OnParameterChangeListener |
The OnParameterChangeListener interface defines a method called by the Virtualizer when a parameter value has changed.
Summary
Public methods | |
---|---|
abstract Unit |
onParameterChange(effect: Virtualizer!, status: Int, param: Int, value: Short) Method called when a parameter value has changed. |
Public methods
onParameterChange
Added in API level 9
abstract funonParameterChange(
effect: Virtualizer!,
status: Int,
param: Int,
value: Short
): Unit
Deprecated: Deprecated in Java.
Method called when a parameter value has changed. The method is called only if the parameter was changed by another application having the control of the same Virtualizer engine.
Parameters | |
---|---|
effect |
Virtualizer!: the Virtualizer on which the interface is registered. |
status |
Int: status of the set parameter operation. |
param |
Int: ID of the modified parameter. See PARAM_STRENGTH ... |
value |
Short: the new parameter value. |