public interface

AmbientMode.AmbientCallbackProvider

 androidx.wear.ambient.AmbientMode.AmbientCallbackProvider

Overview

Interface for any that wishes to implement Ambient Mode. Use the AmbientMode.AmbientCallbackProvider.getAmbientCallback() method to return and AmbientMode.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

Methods
public AmbientMode.AmbientCallbackgetAmbientCallback()

Methods

public AmbientMode.AmbientCallback getAmbientCallback()

Returns:

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