我有一个图像,分辨率是960 * 800(宽度和高度)。手机的分辨率为480 * 800。
我把图像放在imageview中。它是scaleType的中心。我想使用动画形式来设置scaleType是fitcenter。
动画效果要求:图片本身不移动,它缩小到适合中心比例形式。
编辑:我只是编写动画XML文件,并实例化使用AnimationUtils。我的xml代码是:
<scale android:fromXScale="1.0" android:toXScale="0.5" android:fromYScale="1.0" android:toYScale="0.5" android:pivotX="50%" android:pivotY="50%" android:duration="1000" android:fillAfter="true" />
怎么做?提前谢谢。