Skip to content

Commit c1a8b3f

Browse files
committed
update readme
1 parent d923930 commit c1a8b3f

File tree

2 files changed

+28
-22
lines changed

2 files changed

+28
-22
lines changed

ChangeLog.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
## Update Log
2+
**1.3.0 What's New**
3+
4+
Fix bug
5+
6+
* setEmpty is work now.
7+
* add scroll ect method.
8+
9+
**1.2.0 What's New**
10+
11+
Fix bug
12+
13+
**1.1.0 What's New**
14+
15+
**Two new methods:**
16+
17+
* void removeHeader();
18+
19+
To remove the header of PTRRV.
20+
21+
* void setLoadMoreFooter(BaseLoadMoreView loadMoreFooter);
22+
23+
To add a custom LoadMoreView.
24+
25+
Now you can define a LoadMoreView by extends BaseLoadMoreView and implements it's onDrawLoadMore(Canvas c, RecyclerView parent), and replace the default LoadMoreView by using setLoadMoreFooter(BaseLoadMoreView loadMoreFooter).

README.md

Lines changed: 3 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -10,26 +10,7 @@ It can help you to implement ListView effect in RecyclerView, and not affect exs
1010
![Screenshot](https://github.com/HomHomLin/Android-PullToRefreshRecyclerView/blob/master/screenshot.gif)
1111

1212

13-
**Latest version:v1.2.0**
14-
15-
## Update Log
16-
**1.2.0 What's New**
17-
18-
Fix bug
19-
20-
**1.1.0 What's New**
21-
22-
**Two new methods:**
23-
24-
* void removeHeader();
25-
26-
To remove the header of PTRRV.
27-
28-
* void setLoadMoreFooter(BaseLoadMoreView loadMoreFooter);
29-
30-
To add a custom LoadMoreView.
31-
32-
Now you can define a LoadMoreView by extends BaseLoadMoreView and implements it's onDrawLoadMore(Canvas c, RecyclerView parent), and replace the default LoadMoreView by using setLoadMoreFooter(BaseLoadMoreView loadMoreFooter).
13+
**Latest version:v1.3.0**
3314

3415
How to make custom LoadMoreView, see 'DemoLoadMoreView.class' in demo project.
3516

@@ -53,7 +34,7 @@ There has a Sample in project:[Sample](https://github.com/HomHomLin/Android-Pull
5334

5435
**Gradle dependency:**
5536
``` groovy
56-
compile 'homhomlin.lib:ptrrv-library:1.2.0'
37+
compile 'homhomlin.lib:ptrrv-library:1.3.0'
5738
```
5839

5940
or
@@ -63,7 +44,7 @@ or
6344
<dependency>
6445
<groupId>homhomlin.lib</groupId>
6546
<artifactId>ptrrv-library</artifactId>
66-
<version>1.2.0</version>
47+
<version>1.3.0</version>
6748
</dependency>
6849
```
6950

0 commit comments

Comments
 (0)