我正在搜索一个库或现有代码,它们可以重现可在 Foursquare Android 应用程序中找到的放大/缩小图像视图效果。
这是我想重现的效果:https ://drive.google.com/file/d/0B5uiJlSSk9dZclZENm1pZTVlaEk/edit?usp=sharing
这种效果产生两件事:
- 图像缓慢缩小;
- 同时,一个缓慢的翻译动画
请问你能帮帮我吗?
谢谢
我正在搜索一个库或现有代码,它们可以重现可在 Foursquare Android 应用程序中找到的放大/缩小图像视图效果。
这是我想重现的效果:https ://drive.google.com/file/d/0B5uiJlSSk9dZclZENm1pZTVlaEk/edit?usp=sharing
这种效果产生两件事:
请问你能帮帮我吗?
谢谢
您需要在 ImageView 上播放动画以获取动画教程,请访问 http://www.androidhive.info/2013/06/android-working-with-xml-animations/、http://developer.android.com/guide/主题/图形/view-animation.html
通过调用 ImageView 来实现这些动画
ImageView image1 = (ImageView)findViewById(R.id.imageView1);
Animation animation1 = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.youranimation);
image1.startAnimation(animation1);