Most visited

Recently visited

Added in API level 14

EffectUpdateListener

public interface EffectUpdateListener

android.media.effect.EffectUpdateListener


一些效果可能会发出回调来通知主机效果状态的变化。 这是用于接收这些回调的监听器接口。

Summary

Public methods

abstract void onEffectUpdated(Effect effect, Object info)

效果状态更新时调用。

Public methods

onEffectUpdated

Added in API level 14
void onEffectUpdated (Effect effect, 
                Object info)

效果状态更新时调用。

Parameters
effect Effect: The effect that has been updated.
info Object: A value that gives more information about the update. See the effect's documentation for more details on what this object is.

Hooray!