Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Force portrait mode in camera

I am invoking a camera using an intent and clicking a picture. Presently I am on emulator and would like to force camera to click the pictures in portrait mode(need to capture a video of app working,so orientation change would look bad) but the camera screen appears landscape and all the further activities which I invoke in onActivityResult().

Camera Screen

After clicking the picture the Activity layout comes out in landscape mode like this: enter image description here

while all my previous activity have displayed correctly in portrait orientation. I tried adding

android:screenOrientation="portrait" 
android:configChanges="orientation|keyboardHidden"

to the activity shown above but to no avail.Though when i hit home and upon resume it displays correctly in portrait.

So how do I force portrait mode??

like image 640
Sankalp Avatar asked Mar 28 '12 13:03

Sankalp


1 Answers

None of the solutions work.There is nothing wrong with the layouts either.I got it to work by running on a higher version(API10 to API15). Weird!!

like image 122
Sankalp Avatar answered Jan 03 '23 15:01

Sankalp