All Versions
9
Latest Version
Avg Release Cycle
147 days
Latest Release
1788 days ago
Changelog History
Changelog History
-
v3.0.0 Changes
March 28, 2020- 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
-
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 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);
-
v2.1.1 Changes
November 09, 2018โ Adds setter/getter for
flipType
andflipDirection
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
- โก๏ธ Updated
-
v2.0.2 Changes
December 03, 2017 -
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.