AmbientMode.AmbientCallbackProvider

Added in 1.1.0
Deprecated in 1.1.0

public interface AmbientMode.AmbientCallbackProvider


Interface for any Activity that wishes to implement Ambient Mode. Use the getAmbientCallback method to return and AmbientCallback which can be used to bind the AmbientMode to the instantiation of this interface.

return new AmbientMode.AmbientCallback() {
    public void onEnterAmbient(Bundle ambientDetails) {...}
    public void onExitAmbient(Bundle ambientDetails) {...}
 }

Summary

Public methods

getAmbientCallback

Added in 1.1.0
Deprecated in 1.1.0
abstract AmbientMode.AmbientCallback getAmbientCallback()
Returns
AmbientMode.AmbientCallback

the AmbientCallback to be used by this class to communicate with the entity interested in ambient events.