i tried the following method, it worked out for me..
Parameters params = mCamera.getParameters();
params.set("orientation", "portrait");
mCamera.setParameters(params);
u need to add this code before calling setPreviewDisplay() in the
public void surfaceCreated(SurfaceHolder holder)..
On Mar 30, 10:30 am, Prasanna Perera <[email protected]>
wrote:
> Hello,
>
> I tried several things to try to get the camera preview to show up in
> portrait on a SurfaceView. Nothing worked. I am testing on a Droid
> that has 2.0.1. I tried:
>
> 1) forcing the layout to be portrait by:
> this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
>
> 2) using
> Camera.Parameters parameters = camera.getParameters();
> parameters.set("orientation", "portrait");
> parameters.setRotation(90);
> camera.setParameters(parameters);
>
> Is there something else I can try? If this a bug in Android or the
> phone how can I make sure that this is the case so that I have proof
> to inform the client?
>
> Thanks,
> Prasanna
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
To unsubscribe from this group, send email to
android-developers+unsubscribegooglegroups.com or reply to this email with the
words "REMOVE ME" as the subject.