-
Notifications
You must be signed in to change notification settings - Fork 444
Interfaces
Running man! edited this page Apr 24, 2016
·
2 revisions
-
OverView
-
Java code:
public interface SwipeTrigger {
void onPrepare();
void onMove(int y, boolean isComplete, boolean automatic);
void onRelease();
void onComplete();
void onReset();
}
-
OverView
-
Java code:
public interface SwipeRefreshTrigger {
void onRefresh();
}
-
OverView
-
Java code:
public interface SwipeLoadMoreTrigger {
void onLoadMore();
}