DrawView
DrawView copied to clipboard
Why DrawCameraView not show the camera ?
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 )
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); } }