AmbientMode.AmbientCallbackProvider
public interface 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.
return new AmbientMode.AmbientCallback() {
public void onEnterAmbient(Bundle ambientDetails) {...}
public void onExitAmbient(Bundle ambientDetails) {...}
}Summary
Public methods |
|
|---|---|
abstract AmbientMode.AmbientCallback |
Public methods
abstract AmbientMode.AmbientCallbackgetAmbientCallback()
| Returns | |
|---|---|
AmbientMode.AmbientCallback |
the |