android图形的旋转,缩放,平移都是用matrix实现的.可以用mapPoints来计算一个点旋转,缩放,平移后的坐标.看下面例子. Matrix matrix = new Matrix(); matrix.setTranslate(100f, 100f); float[] points1 = new float[]{0, 0}; matrix.mapPoints(points1); matrix表示沿x轴移动100个像素,沿y轴移动100个像素.points1的初始值是(0,0).matr…