AmbientModeSupport.AmbientCallbackProvider

Added in 1.1.0
Deprecated in 1.3.0

public interface AmbientModeSupport.AmbientCallbackProvider


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

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

Summary

Public methods

getAmbientCallback

Added in 1.1.0
Deprecated in 1.3.0
abstract AmbientModeSupport.AmbientCallback getAmbientCallback()
Returns
AmbientModeSupport.AmbientCallback

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