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'm using android.hardware.Camera to take photos. And this is my settings:

Camera.Parameters p = mCamera.getParameters();

p.setPreviewSize(320, 240);

mCamera.setParameters(p);

And the resolution of my phone is just 320*240,so this is the max preview size.

This picture is what I see in the full screen preview. It's only the left-middle part of the full picture when I take the photo.

enter image description here

And I took a picture at the resolution of 1024*768:
params.setPictureSize(1024, 768);

enter image description here

Can you tell me how to preview the full picture that I'm going to take?

share|improve this question

1 Answer

up vote 1 down vote accepted

Finally I found the answer.
This is nothing about settings and nothing about Camera.
I just didn't set fill_parent in the layout of the SurfaceView!
Sorry for asking such a stupid question.

share|improve this answer

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.