TurboImageProject icon indicating copy to clipboard operation
TurboImageProject copied to clipboard

New objects are not added at the center of the screen

Open AliAkberAakash opened this issue 4 years ago • 1 comments

when I add a new object its getting added at the top left of the screen (0,0), how do I add it to the center?

Android SDK version : 29

AliAkberAakash avatar Nov 17 '20 13:11 AliAkberAakash

Add object with click event it will work fine

Like this : btnAddImage.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { turboImageView.addObject(this,R.drawable.transparent_image); } });

AmeerHamza112 avatar May 27 '22 16:05 AmeerHamza112