EasyFlipView v3.0.0 Release Notes
Release Date: 2020-03-28 // about 3 years ago-
- Daniel Luque for updating the
targetSdk
to 28 Pull Request # 30 - Aditya Zope for adding the feature to flip card only once. Pull Request # 33
- Bruno Correia for removing
<application>
tag fromAndroidManifest.xml
. Pull Request # 38 and fixing the card animation glitch issue Pull Request # 39
- Daniel Luque for updating the
Previous changes from v2.1.2
-
➕ Adds the capability to automatically flip the view back to front side after some fixed time.
You can use it from XML like thisapp: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);