EasyFlipView v2.1.2 Release Notes

Release Date: 2018-12-07 // over 5 years ago
  • ➕ 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);