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