Documented Android flash:"on" quirk after finding out that setting focus mode to CONTINUOUS_PICTURE or CONTINUOUS_VIDEO actually gave poorer results (flash only turned on during the first autofocus attempt, if at all - may be device dependent)

This commit is contained in:
Woon Tien Jing
2014-12-06 17:32:54 +08:00
parent 0b0699f7b4
commit 5ca1e07d9e
2 changed files with 11 additions and 2 deletions

View File

@@ -342,7 +342,11 @@ implements SurfaceHolder.Callback {
camera.setPreviewDisplay(holder);
camera.setPreviewCallback(previewCb);
camera.startPreview();
camera.autoFocus(autoFocusCb);
camera.autoFocus(autoFocusCb); // We are not using any of the
// continuous autofocus modes as that does not seem to work
// well with flash setting of "on"... At least with this
// simple and stupid focus method, we get to turn the flash
// on during autofocus.
} catch (IOException e) {
die("Could not start camera preview: " + e.getMessage());
}