All Versions
9
Latest Version
Avg Release Cycle
147 days
Latest Release
1491 days ago

Changelog History

  • v3.0.0 Changes

    March 28, 2020
  • v2.1.2 Changes

    December 07, 2018

    โž• Adds the capability to automatically flip the view back to front side after some fixed time.
    You can use it from XML like this

    app:autoFlipBack="true" app:autoFlipBackTime="1000"
    

    or from the Java like this:

    // Get/Set if the auto flip back is enabledboolean isAutoFlipBackEnabled = mYourFlipView.isAutoFlipBack(); mYourFlipView.setAutoFlipBack(true);// Get/Set the time in milliseconds (ms) after the view is auto flip back to original front sideint autoflipBackTimeInMilliseconds = mYourFlipView.getAutoFlipBackTime(); mYourFlipView.setAutoFlipBackTime(2000);
    
  • v2.1.1 Changes

    November 09, 2018

    โž• Adds setter/getter for flipType and flipDirection and fixes issue #35

    // Sets the animation type to horizontaleasyFlipView.setToHorizontalType();// Sets the animation type to verticaleasyFlipView.setToVerticalType();// Returns true if the Flip Type of animation is Horizontal?easyFlipView.isHorizontalType();// Returns true if the Flip Type of animation is Vertical?easyFlipView.isVerticalType();// Sets the animation direction from left (horizontal) and back (vertical)easyFlipView.setFlipTypeFromLeft();// Sets the animation direction from right (horizontal) and front (vertical)easyFlipView.setFlipTypeFromRight();// Sets the animation direction from front (vertical) and right (horizontal)easyFlipView.setFlipTypeFromFront();// Sets the animation direction from back (vertical) and left (horizontal)easyFlipView.setFlipTypeFromBack();// Returns the flip type from direction. For horizontal, it will be either right or left and for vertical, it will be front or back.easyFlipView.getFlipTypeFrom();
    
  • v2.1.0 Changes

    June 02, 2018
    • โž• Added multi-dimension animations support. Thanks to @sachinvarma for his pull request #23 and #24
    • โšก๏ธ Updated the dependencies and build tools. Thanks to @alancamargo92 for his pull request #20
  • v2.0.5 Changes

    December 18, 2017
    • โšก๏ธ Updated EasyFlipView.OnFlipAnimationListener. Now it also gives the current flip view object as well.
    • Added flip animation type (horizontal and vertical) with both XML and Java. Thanks to Sachin Varma
    • Published v2.0.5 on jCenter
  • v2.0.2 Changes

    December 03, 2017
    • ๐Ÿ›  Fixed issue #11 of Animation Complete Listener with EasyFlipView.OnFlipAnimationListener
    • Fixed issue #10 of adding dynamic views at runtime in Java with EasyFlipView.addView() method. Thanks to iGio90
    • Published v2.0.2 on jCenter
  • v1.0.2 Changes

    February 14, 2017
    • ๐Ÿ›  Fixed Issue #6 of front/back clicks. Now you can set your own listeners for front and back sides.
    • ๐Ÿ’… Polished animations and made them more smooth.
    • Published v1.0.2 on jcenter()
  • v1.0.1 Changes

    January 10, 2017
    • ๐Ÿ›  Fixed Issue #2 of quick clicks. Now, touch won't work until flip animation is finished.
    • โž• Added flipping of the view with or without animation.
    • Get whether flip view's visible side is front or not.
  • v1.0.0 Changes

    January 07, 2017
    • ๐Ÿš€ First stable release of EasyFlipView
    • Flip on Touch feature
    • ๐Ÿš€ APK for Demo attached with release.