In My Android Camera Application if i fix the Screen to the landscape then In landscape mode it seems as it have to be seen. but if i fix it to the portrait then the Camera preview is seen to the horizontal. Why it is Happening ? and Whats the Sollution for it ??

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted
 Camera.Parameters parameters = mCamera.getParameters();
 parameters.set("orientation", "portrait");
 mCamera.setParameters(parameters);

You can call startPreview() after this :)

link|improve this answer
ok. Let me try it. . – iDroid Explorer Oct 30 '11 at 5:46
I have Check it. But still problem is there. What should i have to do ? – iDroid Explorer Oct 31 '11 at 12:56
1  
If i have fix the My Application Manifest to portrait and if i face Android Device as Portrait then it display the preview in Landscape and if i put android device as Landscape then it will display preview in portrait. If i have set the Manifest to the Landscape then all works fine. But as per need i want camera to set in Portrait mode. – iDroid Explorer Oct 31 '11 at 13:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.