我想在图像视图中自动动画像android中的flipboard封面页面

时间:2014-08-28 11:39:26

标签: android android-layout animation android-activity uiviewanimation

在我的应用程序中,我想制作自动动画,就像android应用程序中的flipboard cover(第一页)动画一样。请帮我这个案例我正在分享flipboard动画图片的屏幕截图。

我正在使用TranslateAnimation。但看起来不像flipboard。

ImageView img_animation = (ImageView) findViewById(R.id.img_animation);

TranslateAnimation animation = new TranslateAnimation(0.0f, 400.0f,0.0f, 0.0f);          //  new TranslateAnimation(xFrom,xTo, yFrom,yTo)
animation.setDuration(5000);  // animation duration 
animation.setRepeatCount(5);  // animation repeat count
animation.setRepeatMode(2);   // repeat animation (left to right, right to left )
animation.setInterpolator(new AccelerateDecelerateInterpolator());
animation.setZAdjustment(100);
animation.setFillAfter(true);       

img_animation.startAnimation(animation); 

enter image description here

第二张图片在这里。 enter image description here

enter image description here 在这里我们可以看到。 ony一个图像是从左到右的平板电脑动画。

0 个答案:

没有答案