我有LinearLayout,我缩放LinearLayout

ll.setScaleX(0.8f);
ll.setScaleY(0.8f);

我想在缩放后左下对齐。我怎么做这个?
当我做出:
Display mdisp = getWindowManager().getDefaultDisplay();
Point mdispSize = new Point();
mdisp.getSize(mdispSize);
maxX = mdispSize.x;
maxY = mdispSize.y;
commonCardContainer.setX(0);
commonCardContainer.setY(maxY - commonCardContainer.getHeight());

我有“后秤”的结果(见图)

最佳答案

在缩放前尝试设置轴点:

yourLayout.setPivotX(0); // Left
yourLayout.setPivotY(yourLayout.getHeight()); // Bottom

10-05 20:18