动画后如何重新开始活动?

时间:2016-05-24 17:16:54

标签: android android-activity xamarin.android android-animation

我对我的闪屏感到困扰。 我在imageview中旋转图像,我希望在一段时间后开始新的活动,但它不起作用。我试过跟随 -

protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            SetContentView(Resource.Layout.SplashScreen);
           ImageView ImageForRotation = FindViewById<ImageView>(Resource.Id.imageForRotation);

            var loadedImage = AnimationUtils.LoadAnimation(this,Resource.Animation.SplashScreenImageRotation);

            ImageForRotation.StartAnimation(loadedImage);

            Thread.Sleep(3000);
            StartActivity(LoginScreen);
         }

xml file android:repeatCount=3 我该怎么办?

1 个答案:

答案 0 :(得分:0)

使用此

    startActivity(this,DestinationActivity.class);