Ibrahim Susic
Ibrahim Susic
@daihase I'm crate TextTool, when you tap on screen text "Hello" draw and you can move left/right and top/bottom ``` class TextTool: SketchTool { var lineWidth: CGFloat var lineColor: UIColor...
This line ` mDrawView.setBackgroundImage(bitmap,BackgroundType.BITMAP,BackgroundScale.FIT_START);` Change to : ``` Drawable drawable = new BitmapDrawable(getResources(), bitmap); mDrawView.setBackground(drawable); ``` But problem is , when click save, background not save :( any help @ByoxCode...
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); } }