I would like to add 6 items in turboImageView using addObject(..., ....) but I would like to set them in specific Location. So I am using something like this:
PositionAndScale positionAndScale = new PositionAndScale();
positionAndScale.set(940, 740,
false, 0,
false, 0, 0,
false, 0);
PointInfo pointInfo = new PointInfo();
turboImageView.setPositionAndScale(multiTouchObj.get(i), positionAndScale, pointInfo);
turboImageView.addObject(getActivity().getApplicationContext(), R.drawable.weather_cloudy_day);
but unfortunately any of the 6 items is at the Center.
I would like to add 6 items in turboImageView using addObject(..., ....) but I would like to set them in specific Location. So I am using something like this:
but unfortunately any of the 6 items is at the Center.
Is there any solution?