我有一个 ImageView,我有一个 ScaleAnimation。
ScaleAnimation scaleAnimation =
new ScaleAnimation(1.0f, 5f, 1.0f, 5f,
ScaleAnimation.RELATIVE_TO_SELF, 0.5f,
ScaleAnimation.RELATIVE_TO_SELF, 0.30f);
scaleAnimation.setDuration(9000);
ImageView lol = (ImageView) findViewById(R.id.imageView1);
lol.setImageResource(R.drawable.img1);
lol.setAnimation(scaleAnimation);
效果很好,一切都很好,但我真的希望用户能够决定放大图像的哪一部分。有没有办法将触摸坐标转换为枢轴值?
谢谢!