PhotoViewerTest.Droid.PhotoViewDroidAttacher.GetMediumScale C# (CSharp) 메소드

GetMediumScale() 공개 메소드

public GetMediumScale ( ) : float
리턴 float
        public float GetMediumScale()
        {
            return mMidScale;
        }

Usage Example

예제 #1
0
        public bool OnDoubleTap(Android.Views.MotionEvent ev)
        {
            if (photoViewAttacher == null)
            {
                return(false);
            }
            try {
                float scale = photoViewAttacher.GetScale();
                float x     = ev.GetX();
                float y     = ev.GetY();

                if (scale > photoViewAttacher.GetMinimumScale())
                {
                    photoViewAttacher.SetScale(photoViewAttacher.GetMinimumScale(), x, y, true);
                }
                else
                {
                    photoViewAttacher.SetScale(photoViewAttacher.GetMediumScale(), x, y, true);
                }

                /*
                 *              if (scale < photoViewAttacher.GetMediumScale()) {
                 *                      photoViewAttacher.SetScale(photoViewAttacher.GetMediumScale(), x, y, true);
                 *              } else if (scale >= photoViewAttacher.GetMediumScale() && scale < photoViewAttacher.GetMaximumScale()) {
                 *                      photoViewAttacher.SetScale(photoViewAttacher.GetMaximumScale(), x, y, true);
                 *              } else {
                 *                      photoViewAttacher.SetScale(photoViewAttacher.GetMinimumScale(), x, y, true);
                 *              }*/
            } catch (Java.Lang.ArrayIndexOutOfBoundsException e) {
                // Can sometimes happen when getX() and getY() is called
            }

            return(true);
        }
All Usage Examples Of PhotoViewerTest.Droid.PhotoViewDroidAttacher::GetMediumScale