added in version 27.1.0
belongs to Maven artifact com.android.support:wear:28.0.0-alpha1

AmbientModeSupport.AmbientCallbackProvider

public static interface AmbientModeSupport.AmbientCallbackProvider

android.support.wear.ambient.AmbientModeSupport.AmbientCallbackProvider


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

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

Summary

Public methods

abstract AmbientModeSupport.AmbientCallback getAmbientCallback()

Public methods

getAmbientCallback

added in version 27.1.0
AmbientModeSupport.AmbientCallback getAmbientCallback ()

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