Skip to content

Releases: wajahatkarim3/EasyFlipView

3.0.3

03 Feb 20:33
15dd4fa
Compare
Choose a tag to compare
  • Moved the library from jCenter to MavenCentral

3.0.0

28 Mar 17:57
Compare
Choose a tag to compare

2.1.2

07 Dec 08:12
Compare
Choose a tag to compare

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

09 Nov 08:38
3d80391
Compare
Choose a tag to compare

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

02 Jun 11:56
Compare
Choose a tag to compare
  • 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

18 Dec 19:56
Compare
Choose a tag to compare
  • 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

03 Dec 13:16
Compare
Choose a tag to compare
  • 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

1.0.2

14 Feb 07:43
Compare
Choose a tag to compare
  • 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()

1.0.1

10 Jan 20:04
Compare
Choose a tag to compare
  • 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.

1.0.0

07 Jan 19:44
Compare
Choose a tag to compare
  • First stable release of EasyFlipView
  • Flip on Touch feature
  • APK for Demo attached with release.