With android.hardware.Camera
, in order to have the camera output appropriately track the device movement, we need to hook up an OrientationEventListener
to the setDisplayOrientation()
method on Camera
. That way, as the user twists the device around, we can keep what is "up" on the camera preview in sync with what is "up" in the real world. This is particularly true for rotating the device around the Y axis (i.e., flipping from landscape to reverse-landscape or back).
For most orientation changes, the android.hardware.camera2
API seems to "just work". However, for that Y-axis rotation (landscape -> reverse-landscape or vice versa), the camera preview winds up being inverted.
What is the equivalent of calling setDisplayOrientation()
on Camera
for the Camera2 API, so we can handle this scenario?
As you've noticed, this is supposed to "just work" for SurfaceView
on the camera2 API.
As such, there's no equivalent of setDisplayOrientation()
.
We haven't heard of this issue before now, so a few questions: