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.

Possible Duplicate:
How to capture an image and store it with the native Android Camera

How To capture Photo from Default Camera and Use this Photo in My Application? My Main Problem is I was capture Photo & use this Photo in my Application completely but if i select the photo and get in my application screen that time the Orientation is changed.

My Code is Following :-

For Start Camera:-

Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(cameraIntent, CAMERA_PIC_REQUEST);

For Take Captured Image:-

Bitmap bitmap;
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (resultCode == RESULT_OK) {
        if(requestCode == CAMERA_PIC_REQUEST) {
            System.out.println("Dipak Keshariya");
            bitmap = (Bitmap) data.getExtras().get("data");
            drawable = new BitmapDrawable(bitmap);
            mRlayoutimage.setVisibility(View.VISIBLE);
            mRlayoutimage.setBackgroundDrawable(drawable);
        }
    }
}
share|improve this question
your question is not clear. What is the problem. To what extent does it work. Are you able to get photo bitmap in ur activity result? – userSeven7s Aug 16 '11 at 6:32
yes but problem is photo's orientation is changed. – Dipak Keshariya Aug 16 '11 at 6:56

marked as duplicate by Bill the Lizard Aug 16 '11 at 11:27

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 0 down vote accepted

You call

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);

Or

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT):

to lock the orientation change temporarily. You can change it back to ActivityInfo.SCREEN_ORIENTATION_SENSOR after u get the photo.

share|improve this answer

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