Android animation How to resize buttons on both sides (left and right) at the same time How is this image

I tried this, but it does not work the way I want
public void scaleView(View v, float startScale, float endScale) {
Animation anim = new ScaleAnimation(
startScale, endScale,
1f, 1f,
Animation.RELATIVE_TO_SELF, 0f,
Animation.RELATIVE_TO_SELF, 1f);
anim.setFillAfter(true);
anim.setDuration(3000);
v.startAnimation(anim);
}
source
share