When the camera is loaded that time i want to open camera only specific area.Don’t need to open with full screen.

In here that black area only show camera view.How can i do this?
I wrote code like this..
public class CameraActivity extends Activity{
private static final int CAMERA_PIC_REQUEST = 15;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
getParent().getParent().setTitle("Image Capture");
startActivityForResult(cameraIntent, CAMERA_PIC_REQUEST);
onActivityResult(15, 0, cameraIntent);
}
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (resultCode == CAMERA_PIC_REQUEST) {
}
}
Please anybody help me out from this issue.
Thanks in advance..
Try this camera Activity code in your application
i hope this can help u