private void SetupAnimators()
        {
            Ring      ring      = mRing;
            Animation animation = new DefaultAnimation(this);

            animation.RepeatCount  = Animation.Infinite;
            animation.RepeatMode   = RepeatMode.Restart;
            animation.Interpolator = LINEAR_INTERPOLATOR;
            animation.SetAnimationListener(this);
            mAnimation = animation;
        }
 private void SetupAnimators()
 {
     Ring ring = mRing;
     Animation animation = new DefaultAnimation(this);
     animation.RepeatCount = Animation.Infinite;
     animation.RepeatMode = RepeatMode.Restart;
     animation.Interpolator = LINEAR_INTERPOLATOR;
     animation.SetAnimationListener(this);
     mAnimation = animation;
 }