Generally, you would use the setPreviewSize() method of the Camera.Parameters class.
Something like this:
...
Camera.Parameters mParams = camera.getParameters();
List<Camera.Size> previewSizes = mParams.getSupportedPreviewSizes();
Camera.Size previewSize = previewSizes.get(previewSizes.size()-1);
mParams.setPreviewSize(previewSize.width, previewSize.height);
mParams.setPreviewFrameRate(15); // get 15 preview frames per second
camera.setParameters(mParams);
...
Where camera is the Camera object displaying the image.
I have this in the surfaceChanged method of the SurfaceView. This will change the preview size that you get in the Camera.PreviewCallback implementation that captures the camera's YUV image (or bitmap image if you're lucky enough to have a phone that uses it). It doesn't affect the image that is shown on screen.