我的活动中有图像视图,在该图像视图上,另一个图像按钮设置在特定的xy像素(120x,320y)上。当我缩放背景图像视图时,该图像按钮必须设置为120x,320y像素。我正面临这个问题,如何解决这个问题。请帮忙。
我试过这个
Matrix matrix = floorImageView.getImageMatrix();
float currentZoom = floorImageView.getCurrentZoom();
float[] pts = {0, 0};
matrix.mapPoints(pts);
float newTagX = (x * currentZoom) + pts[0];
float newTagY = (y * currentZoom) + pts[1];
userLocationIB.setX(newTagX);
userLocationIB.setY(newTagY);