Class CameraController.Parameters
- java.lang.Object
-
- com.navmii.android.dashcamsdk.camera.CameraController.Parameters
-
- Enclosing interface:
- CameraController
public abstract static class CameraController.Parameters extends java.lang.ObjectThis class contains the parameters that can be used to configure the camera controller.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCameraController.Parameters.Builder
-
Constructor Summary
Constructors Constructor Description Parameters()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static CameraController.Parameters.Builderbuilder()abstract android.view.SurfacegetBackgroundRecordingSurface()abstract booleanisAutofocusEnabled()abstract booleanisCyclicRecordingEnabled()abstract booleanisMicrophoneMute()abstract CameraController.Parameters.BuildertoBuilder()
-
-
-
Method Detail
-
builder
public static CameraController.Parameters.Builder builder()
-
isAutofocusEnabled
public abstract boolean isAutofocusEnabled()
- Returns:
- True if autofocus should be enabled, false otherwise.
- See Also:
CameraController.Parameters.Builder.setAutofocusEnabled(boolean)
-
isMicrophoneMute
public abstract boolean isMicrophoneMute()
- Returns:
- True if microphone should be muted for recordings, false otherwise.
- See Also:
CameraController.Parameters.Builder.setMicrophoneMute(boolean)
-
getBackgroundRecordingSurface
@Nullable public abstract android.view.Surface getBackgroundRecordingSurface()
- Returns:
- The surface to use for background recording.
- See Also:
CameraController.Parameters.Builder.setBackgroundRecordingSurface(Surface)
-
isCyclicRecordingEnabled
public abstract boolean isCyclicRecordingEnabled()
- Returns:
- True if cyclic recording should be enabled, false otherwise.
- See Also:
CameraController.Parameters.Builder.setCyclicRecordingEnabled(boolean)
-
toBuilder
public abstract CameraController.Parameters.Builder toBuilder()
- Returns:
- A builder instance with the same parameters.
-
-