You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now you can define a LoadMoreView by inheriting BaseLoadMoreView and using onDrawLoadMore(Canvas c, RecyclerView parent), and replace the default LoadMoreView by using setLoadMoreFooter(BaseLoadMoreView loadMoreFooter).
25
+
How to make custom LoadMoreView, see 'DemoLoadMoreView.class' in demo project.
14
26
15
27
## Feature
16
28
* Encapsulation based on native RecyclerView
@@ -32,7 +44,7 @@ There has a Sample in project:[Sample](https://github.com/HomHomLin/Android-Pull
32
44
33
45
**Gradle dependency:**
34
46
```groovy
35
-
compile 'homhomlin.lib:ptrrv-library:1.0.1'
47
+
compile 'homhomlin.lib:ptrrv-library:1.1.0'
36
48
```
37
49
38
50
or
@@ -42,13 +54,14 @@ or
42
54
<dependency>
43
55
<groupId>homhomlin.lib</groupId>
44
56
<artifactId>ptrrv-library</artifactId>
45
-
<version>1.0.1</version>
57
+
<version>1.1.0</version>
46
58
</dependency>
47
59
```
48
60
49
61
##Usage
50
62
51
63
PullToRefreshRecyclerView is easy to use just like ListView and RecyclerView.
64
+
It is derived from native SwipeRefreshLayout, so all property of SwipeRefreshLayout can be used here.
0 commit comments