AI-generated Key Takeaways
-
DeviceOrientationListener
receives device orientation data from theFusedOrientationProviderClient
. -
To receive updates, register the listener using
FusedOrientationProviderClient.requestOrientationUpdates()
. -
The
onDeviceOrientationChanged()
method is called when a new device orientation is available.
A listener for receiving device orientation from the FusedOrientationProviderClient
.
The listener can be registered by calling
FusedOrientationProviderClient.requestOrientationUpdates(DeviceOrientationRequest, Executor,
DeviceOrientationListener)
.
Public Method Summary
abstract void |
onDeviceOrientationChanged(DeviceOrientation
deviceOrientation)
Invoked when a new
DeviceOrientation
is available.
|
Public Methods
public abstract void onDeviceOrientationChanged (DeviceOrientation deviceOrientation)
Invoked when a new DeviceOrientation
is available.