1

我这样做是为了缩放视图:

            child.setPivotX(200);
            child.setPivotY(150);
            child.setScaleX(2);
            child.setScaleY(2);

视图已缩放,但我试图在屏幕上获得它的新位置并且它永远不会改变。

我试过:

        int[] location = new int[2];
        child.getLocationOnScreen(location);

甚至 child.getLeft()、getTop()、getRight() 和 getBottom() 也永远不会改变。

4

1 回答 1

0

您是否尝试使用getX, getY, getWidth&的组合getHeight

于 2011-11-08T14:44:11.963 回答