DrawView icon indicating copy to clipboard operation
DrawView copied to clipboard

Why DrawCameraView not show the camera ?

Open AskMeCode opened this issue 7 years ago • 1 comments

Hello i have add this class on my app but the drawing camera not showing i can draw but camera in background not showing ( show just black screen but i can drow on it )

AskMeCode avatar Oct 16 '18 09:10 AskMeCode

Override DrawCameraView class and in method You must set Camera type :)

public void attachCameraView() { if (getChildCount() == 0) { mCameraView.changeCamera(CameraView.CAMERA_TYPE.BACK_CAMERA); addView(mCameraView); } }

ibrahimsu avatar Apr 17 '19 13:04 ibrahimsu