Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to use camera hardware to capture list of images. But while launching the Camera View the view doesn't looks like usual. The screen shot is attached below. I am testing this in HTC Sensation running android 4.0.3.

Image ScreenShot while in portrait enter image description here It doesn't looks like usual camera view.

What is the problem here?

Where i am doing wrong?

share|improve this question
Can you plz give your code.?? i badly need it. – Segi May 19 at 11:54

2 Answers

up vote 1 down vote accepted

This is the usual problem with making a custom camera with Android in portrait mode. You likely have a SurfaceView that is being used to display your camera preview. I add the following line of code to my surfaceCreated method:

camera.setDisplayOrientation(90);

For more info, check out some other answers on this topic (here is one, and another). Basically, the Android camera is set to display in Landscape mode, so you need to rotate the orientation if the Activity is in portrait mode to accomodate this.

share|improve this answer
You are a star.. Its working cheers +1 – Vino Feb 20 at 12:15
Android cameras have taken over my life :) happy to share. – Daniel Smith Feb 20 at 12:19
Thanks Daniel. Any idea about adding buttons to the view – Vino Feb 20 at 12:44
elaborate on "ideas" – Daniel Smith Feb 20 at 12:45
1  
I would probably (full disclosure I'm not too well versed in the lore of layout optimization) throw everything into a big relative layout, and as your first element you'll want an element for placing your camera preview (I usually add my surface view with the camera preview to a FrameLayout as the first element), and below that have another relative layout where you add Buttons or ImageButtons with backgrounds from your drawables. No golden bullet here.. you just have to get your hands dirty with some xml. – Daniel Smith Feb 20 at 12:54
show 2 more comments

By default the Hardware Camera is Landscape(almost many devices) , so at-once you capture , i automatically rotates to 90 degree - As if it is taken in the landscape .

Thats why you get the image right when you take in Landscape and 90degree rotated image while taking in Portrait mode .

  • detect the orientation of the device and if it is in portrait , rotate to 90 degree clockwise , so that it would tally when it rotates 90degree anti-clockwise .

Use the below code to detect the orientation ,

    @Override
    protected void onRestoreInstanceState(Bundle savedInstanceState) 
    {
        super.onRestoreInstanceState(savedInstanceState);
        if (savedInstanceState != null) 
        {
            if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT)
            {
                // code in portrait - rotate to 90 degree
            }
            else if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE)
            {
                    // code in landscape - do nothing
            }

        }
    }
share|improve this answer
Thanks for your answer +1 – Vino Feb 20 at 12:15
Hi i tried to detect the orientation but its not even called.. – Vino Feb 20 at 15:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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