You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Android system will throw error if yo try to take picture after stopPreview(). To decide take or don't take picture you are using mIsCapturing boolean which you change without synchronization with startPreview and stopPreview (see onShutter callback). This will throw error if you try to take picture multiple times one after another without short pause.
Android system will throw error if yo try to take picture after stopPreview(). To decide take or don't take picture you are using mIsCapturing boolean which you change without synchronization with
startPreview
andstopPreview
(seeonShutter
callback). This will throw error if you try to take picture multiple times one after another without short pause.theta-plugin-camera-api-sample/app/src/main/java/com/theta360/pluginsample/CameraFragment.java
Lines 117 to 146 in 5cf4b5f
The text was updated successfully, but these errors were encountered: