AmbientCallbackProvider
interface AmbientCallbackProvider
androidx.wear.ambient.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.
<code>return new AmbientModeSupport.AmbientCallback() { public void onEnterAmbient(Bundle ambientDetails) {...} public void onExitAmbient(Bundle ambientDetails) {...} } </code>
Summary
Public methods | |
---|---|
abstract AmbientModeSupport.AmbientCallback! |
Public methods
getAmbientCallback
abstract fun getAmbientCallback(): AmbientModeSupport.AmbientCallback!
Return | |
---|---|
AmbientModeSupport.AmbientCallback! |
the AmbientCallback to be used by this class to communicate with the entity interested in ambient events. |