I'm developing an application with camera and I use surfaceview to preview the camera, so when I start the preview the camera is rotated 90 degree or something like that it is in landscape but I hold my phone in portrait.
How can i make it start in regular position. The photos that I take are in landscape.
?????
parameters.set("orientation", "landscape");
parameters.set("rotation", 90);
?????
landscapein the manifest file, and overriding the configchanges method. also, add configChanges="orientation|keyboardHidden" in the manifest for your activity. this may fix the view you are experiencing – binnyb Apr 8 '11 at 15:26