Advertisement
minafaw3

animation xamarin

Mar 8th, 2017
435
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.62 KB | None | 0 0
  1. /**
  2. * Hold a reference to the current animator, so that it can be canceled mid-way.
  3. */
  4. private Animator mCurrentAnimator;
  5.  
  6. /**
  7. * The system "short" animation time duration, in milliseconds. This duration is ideal for
  8. * subtle animations or animations that occur very frequently.
  9. */
  10. private int mShortAnimationDuration;
  11.  
  12.  
  13. /**
  14. * "Zooms" in a thumbnail view by assigning the high resolution image to a hidden "zoomed-in"
  15. * image view and animating its bounds to fit the entire activity content area. More
  16. * specifically:
  17. *
  18. * <ol>
  19. * <li>Assign the high-res image to the hidden "zoomed-in" (expanded) image view.</li>
  20. * <li>Calculate the starting and ending bounds for the expanded view.</li>
  21. * <li>Animate each of four positioning/sizing properties (X, Y, SCALE_X, SCALE_Y)
  22. * simultaneously, from the starting bounds to the ending bounds.</li>
  23. * <li>Zoom back out by running the reverse animation on click.</li>
  24. * </ol>
  25. *
  26. * @param thumbView The thumbnail view to zoom in.
  27. * @param imageResId The high-resolution version of the image represented by the thumbnail.
  28. */
  29. private void zoomImageFromThumb( View thumbView, int imageResId)
  30. {
  31. // If there's an animation in progress, cancel it immediately and proceed with this one.
  32. if (mCurrentAnimator != null)
  33. {
  34. mCurrentAnimator.Cancel();
  35. }
  36.  
  37. // Load the high-resolution "zoomed-in" image.
  38.  
  39. expandedImageView.SetImageResource(imageResId);
  40.  
  41. // Calculate the starting and ending bounds for the zoomed-in image. This step
  42. // involves lots of math. Yay, math.
  43. Rect startBounds = new Rect();
  44. Rect finalBounds = new Rect();
  45. Point globalOffset = new Point();
  46.  
  47. // The start bounds are the global visible rectangle of the thumbnail, and the
  48. // final bounds are the global visible rectangle of the container view. Also
  49. // set the container view's offset as the origin for the bounds, since that's
  50. // the origin for the positioning animation properties (X, Y).
  51. thumbView.GetGlobalVisibleRect(startBounds);
  52. layout.GetGlobalVisibleRect(finalBounds, globalOffset);
  53. startBounds.Offset(-globalOffset.X, -globalOffset.Y);
  54. finalBounds.Offset(-globalOffset.X, -globalOffset.Y);
  55.  
  56. // Adjust the start bounds to be the same aspect ratio as the final bounds using the
  57. // "center crop" technique. This prevents undesirable stretching during the animation.
  58. // Also calculate the start scaling factor (the end scaling factor is always 1.0).
  59. float startScale;
  60. if ((float)finalBounds.Width() / finalBounds.Height()
  61. > (float)startBounds.Width() / startBounds.Height())
  62. {
  63. // Extend start bounds horizontally
  64. startScale = (float)startBounds.Height() / finalBounds.Height();
  65. float startWidth = startScale * finalBounds.Width();
  66. float deltaWidth = (startWidth - startBounds.Width()) / 2;
  67. startBounds.Left -= (int)deltaWidth;
  68. startBounds.Right += (int)deltaWidth;
  69. }
  70. else
  71. {
  72. // Extend start bounds vertically
  73. startScale = (float)startBounds.Width() / finalBounds.Width();
  74. float startHeight = startScale * finalBounds.Height();
  75. float deltaHeight = (startHeight - startBounds.Height()) / 2;
  76. startBounds.Top -= (int)deltaHeight;
  77. startBounds.Bottom += (int)deltaHeight;
  78. }
  79.  
  80. // Hide the thumbnail and show the zoomed-in view. When the animation begins,
  81. // it will position the zoomed-in view in the place of the thumbnail.
  82. thumbView.Alpha = 0;
  83. expandedImageView.Visibility = ViewStates.Visible;
  84.  
  85. // Set the pivot point for SCALE_X and SCALE_Y transformations to the top-left corner of
  86. // the zoomed-in view (the default is the center of the view).
  87. expandedImageView.PivotX = 0;
  88. expandedImageView.PivotY = 0;
  89.  
  90. // Construct and run the parallel animation of the four translation and scale properties
  91. // (X, Y, SCALE_X, and SCALE_Y).
  92. AnimatorSet animatorSet1 = new AnimatorSet();
  93. animatorSet1.Play(ObjectAnimator.OfFloat(expandedImageView, View.X, startBounds.Left,
  94. finalBounds.Left))
  95. .With(ObjectAnimator.OfFloat(expandedImageView, View.Y, startBounds.Top,
  96. finalBounds.Top))
  97. .With(ObjectAnimator.OfFloat(expandedImageView, View.ScaleXs, startScale, 1f))
  98. .With(ObjectAnimator.OfFloat(expandedImageView, View.ScaleYs, startScale, 1f));
  99. animatorSet1.SetDuration(mShortAnimationDuration);
  100. animatorSet1.SetInterpolator(new DecelerateInterpolator());
  101. animatorSet1.AddListener((Android.Animation.Animator.IAnimatorListener)new MyAnimationListener());
  102.  
  103. animatorSet1.Start();
  104. mCurrentAnimator = animatorSet1;
  105.  
  106. // Upon clicking the zoomed-in image, it should zoom back down to the original bounds
  107. // and show the thumbnail instead of the expanded image.
  108. float startScaleFinal = startScale;
  109. expandedImageView.Click += (sender, e) =>
  110. {
  111. if (mCurrentAnimator != null)
  112. {
  113. mCurrentAnimator.Cancel();
  114. }
  115. };
  116.  
  117. // Animate the four positioning/sizing properties in parallel, back to their
  118. // original values.
  119. AnimatorSet animatorSet2 = new AnimatorSet();
  120. animatorSet2.Play(ObjectAnimator.OfFloat(expandedImageView, View.X, startBounds.Left))
  121. .With(ObjectAnimator.OfFloat(expandedImageView, View.Y, startBounds.Top))
  122. .With(ObjectAnimator
  123. .OfFloat(expandedImageView, View.ScaleXs, startScaleFinal))
  124. .With(ObjectAnimator
  125. .OfFloat(expandedImageView, View.ScaleYs, startScaleFinal));
  126. animatorSet2.SetDuration(mShortAnimationDuration);
  127. animatorSet2.SetInterpolator(new DecelerateInterpolator());
  128. // animatorSet2.AddListener(new AnimatorListenerAdapter() {
  129. // @Override
  130.  
  131. // public void onAnimationEnd(Animator animation)
  132. // {
  133. // thumbView.setAlpha(1f);
  134. // expandedImageView.setVisibility(View.GONE);
  135. // mCurrentAnimator = null;
  136. // }
  137.  
  138. // @Override
  139. // public void onAnimationCancel(Animator animation)
  140. // {
  141. // thumbView.setAlpha(1f);
  142. // expandedImageView.setVisibility(View.GONE);
  143. // mCurrentAnimator = null;
  144. // }
  145. //});
  146. // animatorSet2.Start();
  147. // mCurrentAnimator = set;
  148. // }
  149. // });
  150. }
  151.  
  152. }
  153.  
  154. class MyAnimationListener : Java.Lang.Object,
  155. Animation.IAnimationListener
  156. {
  157.  
  158.  
  159. public MyAnimationListener()
  160. {
  161.  
  162. }
  163.  
  164. public void OnAnimationEnd(Animation animation)
  165. {
  166.  
  167. }
  168.  
  169. public void OnAnimationRepeat(Animation animation)
  170. {
  171. }
  172.  
  173. public void OnAnimationStart(Animation animation)
  174. {
  175. }
  176. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement