Android ImageView Scaling and translating issue

this is a working example of two fingers move/scale/rotate (note: the code is quite short due to smart detector used – see MatrixGestureDetector): class ViewPort extends View { List<Layer> layers = new LinkedList<Layer>(); int[] ids = {R.drawable.layer0, R.drawable.layer1, R.drawable.layer2}; public ViewPort(Context context) { super(context); Resources res = getResources(); for (int i = 0; i < … Read more