From dc95da7249194ebc6435c6e189efa58a5d8b08b9 Mon Sep 17 00:00:00 2001 From: Dylan McIntyre Date: Mon, 23 Jan 2017 15:13:00 -0500 Subject: [PATCH] fix mixed up extra attrs section --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1b65d4b0..e9a331ae 100644 --- a/README.md +++ b/README.md @@ -153,17 +153,17 @@ camera.setCameraListener(new CameraListener() { | Value | Description | | --------------| -------------| -| `on` | Tap to focus is enabled and a visible focus circle appears when tapped, similar to the Android built-in camera. | -| `invisible` | Tap to focus is enabled, but no focus circle appears. | -| `off` | Tap to focus is off. | +| `quality` | Use normal Android Camera API image capturing. | +| `speed` | Freeze the `CameraView` preview and grab a `Bitmap` of the frame. | +| `auto` | Default picture mode to `quality`, but fallback to `speed` if capturing is determined to be too slow. | #### `ckTapToFocus` | Value | Description | | --------------| -------------| -| `quality` | Use normal Android Camera API image capturing. | -| `speed` | Freeze the `CameraView` preview and grab a `Bitmap` of the frame. | -| `auto` | Default picture mode to `quality`, but fallback to `speed` if capturing is determined to be too slow. | +| `on` | Tap to focus is enabled and a visible focus circle appears when tapped, similar to the Android built-in camera. | +| `invisible` | Tap to focus is enabled, but no focus circle appears. | +| `off` | Tap to focus is off. | ### Capturing Images