The first time I call for the camera using this code,
mCamera = getCameraInstance(); // Create an instance of Camera
// Create our Preview view and set it as the content of our activity.
mPreview = new CameraPreview(this, mCamera);// Create our Preview view and set it as the content of our activity.
FrameLayout preview = (FrameLayout) findViewById(R.id.quest_image);
preview.addView(mPreview);
the entire screen goes dark for a moment and then the preview screen shows the preview. All other calls have just the preview screen flash black and then shows preview. How I have just the preview screen flash black even on the first call? Thanks