我这样做是为了扩展视图:
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()也永远不会改变。
答案 0 :(得分:0)
您是否尝试使用getX
,getY
,getWidth
&的组合? getHeight
?