Releases: wajahatkarim3/EasyFlipView
Releases · wajahatkarim3/EasyFlipView
3.0.3
3.0.0
- 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
2.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 this
app:autoFlipBack="true"
app:autoFlipBackTime="1000"
or from the Java like this:
// Get/Set if the auto flip back is enabled
boolean isAutoFlipBackEnabled = mYourFlipView.isAutoFlipBack();
mYourFlipView.setAutoFlipBack(true);
// Get/Set the time in milliseconds (ms) after the view is auto flip back to original front side
int autoflipBackTimeInMilliseconds = mYourFlipView.getAutoFlipBackTime();
mYourFlipView.setAutoFlipBackTime(2000);
2.1.1
Adds setter/getter for flipType
and flipDirection
and fixes issue #35
// Sets the animation type to horizontal
easyFlipView.setToHorizontalType();
// Sets the animation type to vertical
easyFlipView.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();
2.1.0
- 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
2.0.5
- 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
2.0.2
1.0.2
1.0.1
1.0.0
- First stable release of EasyFlipView
- Flip on Touch feature
- APK for Demo attached with release.