Most visited

Recently visited

Added in API level 9

BassBoost.OnParameterChangeListener

public static interface BassBoost.OnParameterChangeListener

android.media.audiofx.BassBoost.OnParameterChangeListener


OnParameterChangeListener接口定义了一个参数值发生变化时由BassBoost调用的方法。

Summary

Public methods

abstract void onParameterChange(BassBoost effect, int status, int param, short value)

当参数值已更改时调用该方法。

Public methods

onParameterChange

Added in API level 9
void onParameterChange (BassBoost effect, 
                int status, 
                int param, 
                short value)

当参数值已更改时调用该方法。 仅当参数被具有相同BassBoost引擎控件的另一个应用程序更改时才会调用该方法。

Parameters
effect BassBoost: the BassBoost 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.

Hooray!