| Annotation Type | Description |
|---|---|
| SwipeCancelState |
Created by janisharali on 18/08/16.
|
| SwipeHead |
This annotation should be used on method without any members variables
Example : @SwipeHead private void onSwipeHead(){//something here}
It is called when the card comes on top of the stack
|
| SwipeIn |
This annotation should be used on method without any members variables
Example : @SwipeIn private void onSwipedIn(){//something here}
It is called when the card is either right swiped or bottom swiped
|
| SwipeInDirectional |
This annotation is used with SwipeDirectionalView and
has to be used on method with SwipeDirection members variables.
|
| SwipeInState |
Created by janisharali on 18/08/16.
|
| SwipeOut |
This annotation should be used on method without any members variables.
|
| SwipeOutDirectional |
This annotation is used with SwipeDirectionalView and
has to be used on method with SwipeDirection members variables
Example : @SwipeOutDirectional private void onSwipedOut(
SwipeDirection direction) {//something here}
It is called when the card is either left swiped or top swiped
|
| SwipeOutState |
Created by janisharali on 18/08/16.
|
| SwipeTouch |
This has to be used on method with four float members variables.
|
| SwipeView |
Created by janisharali on 07/10/16.
|
| SwipingDirection |
This has to be used on method with SwipeDirection members variables
: Example : @SwipingDirection private void onSwipingDirection(SwipeDirection direction)
{//something here}
It is called when the card is swiping with direction
|