在我的应用程序中,我想制作自动动画,就像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);
第二张图片在这里。
在这里我们可以看到。 ony一个图像是从左到右的平板电脑动画。