I want a relative layout to scale up and the bottom of the view should be fixed.
I have a relative layout -
private RelativeLayout rlOutdoorSection;
Initialized it -
rlOutdoorSection = (RelativeLayout) findViewById(R.id.rlOutdoorSection);
Created an ObjectAnimator -
scaleUpOutdoor = ObjectAnimator.ofFloat(rlOutdoorSection, "scaleY", 1f,
2.6f);
scaleUpOutdoor.setDuration(3000);
start the Animation -
scaleDownOutdoor.start();
At present the view is getting scaled with pivot values at the center of the view.
How can i ensure the view is scaled with the bottom of the view fixed?
Thanks in Advance.