1 | initial version |
JavaCameraView
does not have its own setResolution
method. There is JavaCameraView
subclass in tutorial-3 that implements this method. If you want to implement the same behavior with Native Camera you need to subclass NativeCameraView
and add the same setResolution
method to it. Also you can override calculateCameraFrameSize
method to select proper frame resolution. See CameraBridgeViewBase
class for details. It is base class for NativeCameraView
and JavaCameraView
.