我试图做一个类似IPhone coverflow的动画师,但更简单一些。 现在我试图进行旋转,然后让图像全屏显示,但没有任何事情发生。
ImageView i = (ImageView) FindViewById(args.Position);
var disp = WindowManager.DefaultDisplay;
var height = disp.Height;
var width = disp.Width;
ObjectAnimator anim = ObjectAnimator.OfInt(i, "rotationY", 0, 180);
ObjectAnimator scaleX = ObjectAnimator.OfInt(i, "scaleX", width);
ObjectAnimator scaleY = ObjectAnimator.OfInt(i, "scaleY", height);
AnimatorSet set = new AnimatorSet();
set.Play(anim).With(scaleX).With(scaleY);
代码有什么问题?为什么没有发生什么?