Annotation Type AutoResetMode


  • @Retention(SOURCE)
    public @interface AutoResetMode
    Describes how the ZoomageView will reset to its original size once interaction with it stops. UNDER will reset when the image is smaller than or equal to its starting size, OVER when it's larger than or equal to its starting size, ALWAYS in both situations, and NEVER causes no reset. Note that when using NEVER, the image will still animate to within the screen bounds in certain situations.
    • Field Summary

      Fields 
      Modifier and Type Fields Description
      static int ALWAYS  
      static int NEVER  
      static int OVER  
      static int UNDER  
    • Field Detail

      • UNDER

        static final int UNDER
      • OVER

        static final int OVER
      • ALWAYS

        static final int ALWAYS
      • NEVER

        static final int NEVER