Issue
I have an ImageView and I do a simple scale animation to it. Very standard code.
My scale_up.xml:
<set xmlns:android="http://schemas.android.com/apk/res/android">
<scale android:fromXScale="1"
android:fromYScale="1"
android:toXScale="1.2"
android:toYScale="1.2"
android:duration="175"/>
</set>
My animation code:
Animation a = AnimationUtils.loadAnimation(this, R.anim.scale_up);
((ImageView) findViewById(R.id.circle_image)).startAnimation(a);
The problem:
When the image scales it doesn't scale from the center, but from the top left corner. In other words, the scaled version of the image doesn't have the same point as the center, but it has the same top-left point. Here's an image that explains what I mean:
The first image is how the animation scales and the second image is how I want it to scale. It should keep the center point the same. I have tried setting up gravity on the image, on the container, aligning left or right, it always scales the same.
I'm using RelativeLayout for the main screen and ImageView is located into another RelativeLayout, but I tried other layouts, no change.
Solution
Forget the additional translation, set android:pivotX
, android:pivotY
to half the width and height and it will scale from the center of the image.
Answered By - Steven Veltema
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.