Skip to content
This repository has been archived by the owner on Oct 15, 2018. It is now read-only.

test #254

Open
wants to merge 37 commits into
base: master
Choose a base branch
from
Open

test #254

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
9d55fef
扩展RecyclerView支持提交
Sep 23, 2015
8eca356
README描述更新
Sep 23, 2015
592940b
扩充支持SwipeListView提交
Sep 25, 2015
37ead82
说明文档修改提交
Sep 25, 2015
998de18
由Eclipse开发环境迁移到Android Sudio提交
Sep 28, 2015
5ad2edb
RecyclerView Demo优化编写以及说明文档编写提交
WenkaiZhou Oct 23, 2015
c2c3633
带头部刷新加载RecyclerView初步完成提交
Nov 19, 2015
d8b6335
PullToRefreshHeaderRecyclerView完成提交
WenkaiZhou Nov 19, 2015
2bfa6cb
更改结构、去除SwipListView提交
Dec 16, 2015
2e24d9c
配置刷新头部、加载尾部初步完成提交
WenkaiZhou Dec 20, 2015
10a7d4f
修改京东刷新demo
WenkaiZhou Dec 20, 2015
4425ff7
解决PullToRefreshListView设置刷新布局问题提交
WenkaiZhou Dec 20, 2015
3c02189
update README
WenkaiZhou Dec 20, 2015
7605bde
update README
WenkaiZhou Dec 20, 2015
7691f73
更新描述
WenkaiZhou Dec 20, 2015
0a2396c
版本号更改提交
Dec 21, 2015
2b2348c
LoadingLayoutBase add abstract method setPullLabel
Dec 21, 2015
e3cb761
update version
Dec 21, 2015
610db0a
修复项目应用时app_name冲突问题
Dec 22, 2015
3049c9c
关闭debug模式
Dec 22, 2015
18bf13b
更新库版本
Dec 22, 2015
67d2dbb
修复PullToRefreshListView刷新问题
WenkaiZhou Dec 30, 2015
429d150
完善PullToRefreshListView测试
WenkaiZhou Dec 30, 2015
afe8d60
update version to 1.0.5
WenkaiZhou Dec 30, 2015
10ef498
PullToRefreshWrapRecyclerView 初步提交
Dec 31, 2015
577bee7
修复刷新加载布局混乱问题
WenkaiZhou Dec 31, 2015
684f414
完善注释
WenkaiZhou Dec 31, 2015
c95f70a
update version to 1.0.6
WenkaiZhou Dec 31, 2015
a0afe08
去除添加头部尾部RecyclerView
WenkaiZhou Dec 31, 2015
1a09d39
update version to 1.0.7
WenkaiZhou Dec 31, 2015
d99d854
update gradle version to 2.0.0
WenkaiZhou Apr 9, 2016
2e2e7f0
update RecyclerView to 23.3.0
WenkaiZhou Apr 9, 2016
696fca7
update version to 1.0.8
WenkaiZhou Apr 9, 2016
94bc431
add control of friction
WenkaiZhou Apr 10, 2016
3b67240
add setSecondLoadingLayout
WenkaiZhou Apr 10, 2016
0e44a7e
fix missing header file
ysmintor Apr 16, 2016
9aba415
Merge pull request #1 from ysmintor/patch-1
WenkaiZhou Apr 17, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 12 additions & 26 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,28 +1,14 @@
#Android generated
bin
gen

#Eclipse
.project
.classpath
.settings

#IntelliJ IDEA
.idea
*.iml
*.ipr
*.iws
out

#Maven
target
release.properties
pom.xml.*

#Ant
build.xml
local.properties
proguard.cfg

#OSX
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures

/sample/build
/pulltorefresh/build
/pulltorefresh/local.properties
/.idea
/pulltorefresh/.idea
202 changes: 0 additions & 202 deletions LICENSE

This file was deleted.

22 changes: 17 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,31 +1,43 @@
# PLEASE NOTE, THIS PROJECT IS NO LONGER BEING MAINTAINED

* * *

# Pull To Refresh Views for Android

Expanded support for **RecyclerView**
Expanded support for **Custom LoadingLayout**

![Screenshot](https://github.com/chrisbanes/Android-PullToRefresh/raw/master/header_graphic.png)

### RecyclerView with Custom LoadingLayout Demo ###
![Screenshot](https://raw.githubusercontent.com/xuehuayous/Android-PullToRefresh/master/recyclerView_demo.gif)

This project aims to provide a reusable Pull to Refresh widget for Android. It was originally based on Johan Nilsson's [library](https://github.com/johannilsson/android-pulltorefresh) (mainly for graphics, strings and animations), but these have been replaced since.

## Using Pull To Refresh in your application

If you are building with Gradle, simply add the following line to the `dependencies` section of your `build.gradle` file:

```
compile 'com.kevin:pulltorefresh:1.0.8'
```

## Features

* Supports both Pulling Down from the top, and Pulling Up from the bottom (or even both).
* Animated Scrolling for all devices.
* Over Scroll supports for devices on Android v2.3+.
* Currently works with:
* **ListView**
* **ListView**
* **ExpandableListView**
* **GridView**
* **WebView**
* **ScrollView**
* **HorizontalScrollView**
* **ViewPager**
* **RecyclerView**
* Integrated End of List Listener for use of detecting when the user has scrolled to the bottom.
* Maven Support.
* Indicators to show the user when a Pull-to-Refresh is available.
* Support for **ListFragment**!
* Lots of [Customisation](https://github.com/chrisbanes/Android-PullToRefresh/wiki/Customisation) options!
* Expanded support for **RecyclerView** by Kevin

Repository at <https://github.com/chrisbanes/Android-PullToRefresh>.

Expand Down
25 changes: 25 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.3'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
jcenter()
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}
Loading