. , , , .
Ihad scrollview relativelayout relativelayout.When , ther , , java-, xml, RELATIVE_TO_PARENT RELATIVE_TO_SELF, , (scrollview). , .
, , :
ScaleAnimation animation = new ScaleAnimation(1.0f, 1.1f, 1.1f, 1.0f, Animation.RELATIVE_TO_PARENT, (float) (button1.getX()+ 45*ssu) / width, Animation.RELATIVE_TO_PARENT, (float) (button1.getY()+ 45*ssu) / (4 * height) );
animation.setDuration(1000);
animation.setRepeatMode(ValueAnimator.REVERSE);
animation.setRepeatCount(animation.INFINITE);
button1.startAnimation(animation);
, pivotX ( x ), (y ) ( 4 *), 45 * ssu , , .
PS: ssu , java- 90 * ssu
II :)