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