IPhone のカバーフローのようなアニメーターをやろうとしていますが、もう少し単純です。今、回転させてから画像をフルスクリーンにしようとしていますが、何も起こりません。
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);
コードの何が問題になっていますか? なぜ何も起こらないのですか?