diff --git a/ApiDemo/App/Animation.cs b/ApiDemo/App/Animation.cs index e7effd3af..df47a906d 100644 --- a/ApiDemo/App/Animation.cs +++ b/ApiDemo/App/Animation.cs @@ -28,13 +28,13 @@ protected override void OnCreate (Bundle bundle) button.Click += OnZoomClicked; } - void OnZoomClicked (object sender, EventArgs e) + void OnFadeClicked (object sender, EventArgs e) { StartActivity (new Intent (this, typeof (Controls1))); OverridePendingTransition(Resource.Animation.fade, Resource.Animation.hold); } - void OnFadeClicked (object sender, EventArgs e) + void OnZoomClicked (object sender, EventArgs e) { StartActivity (new Intent (this, typeof (Controls1))); OverridePendingTransition(Resource.Animation.zoom_enter, Resource.Animation.zoom_exit);