EasyFlipView Versions Save

💳 A quick and easy flip view through which you can create views with two sides like credit cards, poker cards etc.

3.0.3

2 years ago
  • Moved the library from jCenter to MavenCentral

3.0.0

4 years ago

2.1.2

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 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

5 years ago

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

5 years ago
  • 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

6 years ago
  • 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

6 years ago
  • 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

7 years ago
  • 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

7 years ago
  • 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

7 years ago
  • First stable release of EasyFlipView
  • Flip on Touch feature
  • APK for Demo attached with release.