我刚开始用 Xamarin 在 C# 中做 android 应用程序。我正在玩动画,但很难找到任何好的教程。我已经制作了下面的代码,它可以工作,但是我irisImageView
只是跳到了这个位置,而不是平滑的运动?
我将如何顺利移动图像?
protected override void OnCreate (Bundle bundle)
{
base.OnCreate (bundle);
// Set our view from the "main" layout resource
SetContentView (Resource.Layout.Main);
ImageView faceImageView = FindViewById<ImageView> (Resource.Id.faceImageView);
ImageView irisImageView = FindViewById<ImageView> (Resource.Id.irisImageView);
AnimateIris (irisImageView);
}
public void AnimateIris(ImageView iris)
{
Animation anim = new TranslateAnimation(10,10,150,150);
anim.Duration = 5000;
iris.StartAnimation (anim);
}