I\'m writing an Android application that uses the camera. I\'m setting camera display orientation to 90, my activity is in a portrait orientation:
camera.se
I had the same problem like you, but i've fix it. You should use the same code:
Camera.Parameters parameters = camera.getParameters(); parameters.setRotation(90); camera.setParameters(parameters);
I hope you can use this code too.