Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
baoyongzhang committed Sep 5, 2014
1 parent 40c8b8e commit 4d66e1c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,23 @@ listView.setOnMenuItemClickListener(new OnMenuItemClickListener() {

### Other

* OnSwipeListener

```java
listView.setOnSwipeListener(new OnSwipeListener() {

@Override
public void onSwipeStart(int position) {
// swipe start
}

@Override
public void onSwipeEnd(int position) {
// swipe end
}
});
```

* Open/Close Animation Interpolator

```java
Expand Down

0 comments on commit 4d66e1c

Please sign in to comment.