如何为NetworkImageView的默认图像设置动画并进行缩放,并在响应后再次对其进行重新缩放

时间:2014-12-11 11:17:39

标签: android imageview android-volley networkimageview

我想将动画应用到networkImageView中的默认图像并将其缩放到中心,然后在图像加载后再将其缩放回fit_XY。 请建议我如何实现它。 感谢

1 个答案:

答案 0 :(得分:0)

在res文件夹中创建anim文件夹。将以下xml文件放在anim文件夹中。

 <?xml version="1.0" encoding="utf-8"?>
    <set xmlns:android="http://schemas.android.com/apk/res/android">
   <scale 
    android:fromXScale="1"
    android:toXScale="0"
    android:fromYScale="1"
    android:toYScale="0"
    android:duration="200"
    android:pivotX="50%"
    android:pivotY="50%"/>

    </set>

然后在java代码中。写下以下几行。

Animation animation = AnimationUtils.loadAnimation(this, R.anim.test_animations);


            sampleImageView.startAnimation(animation);