我有一张大图像放在父母的左中心。这是直截了当的,看起来像这样:
Large picture with layout_alignParentRight & layout_centerVertical true
它太大了,所以我应用了它,使其变小:
rightButton = (ImageView) findViewById(R.id.buttonnext);
rightButton.setScaleX(0.5f);
rightButton.setScaleY(0.5f);
但现在看来是这样的:
Scaled image, but not properly aligned to parents right
问题:
是setSaceX&你是一个调整图像大小的正确方法吗?
我知道原始图像仍在那里,填补了剩余的空间。有没有办法将缩放图像向右移动?尝试过setPivotX& setPivotY但没有运气