问题代码:
Matrix matrix = new Matrix();
matrix.postTranslate(x, y);
matrix.postScale(leftOrRight, 1, x + bmpW/2, y + bmpH/2);
canvas.drawBitmap(bmp, matrix, paint);为什么在android模拟器(api2.1)上运行的时候正反向的位置都是一样的;
而在我的手机上G11(2.3)上运行却不一样,就是两个图像位置有偏差,不会重合??这是什么原因?如何解决?