Added in API level 9
OnParameterChangeListener
interface OnParameterChangeListener
android.media.audiofx.PresetReverb.OnParameterChangeListener |
The OnParameterChangeListener interface defines a method called by the PresetReverb when a parameter value has changed.
Summary
Public methods | |
---|---|
abstract Unit |
onParameterChange(effect: PresetReverb!, status: Int, param: Int, value: Short) Method called when a parameter value has changed. |
Public methods
onParameterChange
Added in API level 9
abstract fun onParameterChange(
effect: PresetReverb!,
status: Int,
param: Int,
value: Short
): Unit
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 PresetReverb engine.
Parameters | |
---|---|
effect |
PresetReverb!: the PresetReverb on which the interface is registered. |
status |
Int: status of the set parameter operation. |
param |
Int: ID of the modified parameter. See PARAM_PRESET ... |
value |
Short: the new parameter value. |