├── .gitignore ├── ic_launcher-web.png ├── libs └── android-support-v4.jar ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── drawable │ └── umeng_socialize_pulltorefresh_arrow.png ├── values │ ├── colors.xml │ ├── strings.xml │ └── styles.xml └── layout │ ├── pull_to_refresh_footer.xml │ └── pull_to_refresh_header.xml ├── android_my_pull_demo ├── ic_launcher-web.png ├── res │ ├── drawable │ │ └── icon.png │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── values │ │ ├── strings.xml │ │ └── styles.xml │ └── layout │ │ ├── test.xml │ │ ├── slide_item_layout.xml │ │ ├── swipe_lv_layout.xml │ │ ├── pull_refresh_main.xml │ │ └── main.xml ├── libs │ ├── android-support-v4.jar │ └── android_common_adapter.jar ├── project.properties ├── proguard-project.txt ├── AndroidManifest.xml └── src │ └── com │ └── example │ └── pull │ ├── MainActivity.java │ └── ShowActivity.java ├── AndroidManifest.xml ├── project.properties ├── proguard-project.txt ├── src └── com │ └── uit │ └── pullrefresh │ ├── listener │ ├── OnLoadListener.java │ └── OnRefreshListener.java │ ├── swipe │ ├── RefreshGvLayout.java │ ├── RefreshLvLayout.java │ └── RefreshLayout.java │ ├── scroller │ ├── RefreshAdaterView.java │ ├── impl │ │ ├── RefreshTextView.java │ │ ├── RefreshGridView.java │ │ ├── RefreshListView.java │ │ └── RefreshSlideDeleteListView.java │ └── RefreshLayoutBase.java │ └── base │ ├── impl │ ├── PullRefreshTextView.java │ └── PullRefreshListView.java │ └── PullRefreshBase.java └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.project 2 | *.classpath 3 | bin/ 4 | gen/ 5 | *.DS_Store 6 | */bin/ 7 | */gen/ 8 | .settings/ 9 | -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_my_pull_demo/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/android_my_pull_demo/ic_launcher-web.png -------------------------------------------------------------------------------- /android_my_pull_demo/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/android_my_pull_demo/res/drawable/icon.png -------------------------------------------------------------------------------- /android_my_pull_demo/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/android_my_pull_demo/libs/android-support-v4.jar -------------------------------------------------------------------------------- /android_my_pull_demo/libs/android_common_adapter.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/android_my_pull_demo/libs/android_common_adapter.jar -------------------------------------------------------------------------------- /res/drawable/umeng_socialize_pulltorefresh_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/res/drawable/umeng_socialize_pulltorefresh_arrow.png -------------------------------------------------------------------------------- /android_my_pull_demo/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/android_my_pull_demo/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_my_pull_demo/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/android_my_pull_demo/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_my_pull_demo/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/android_my_pull_demo/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_my_pull_demo/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/android_my_pull_demo/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | #33b5e5 6 | #ff4444 7 | #99cc00 8 | #ffbb33 9 | 10 | -------------------------------------------------------------------------------- /android_my_pull_demo/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | android_my_pull_demo 4 | listview下拉刷新 5 | GridView下拉刷新 6 | TextView下拉刷新 7 | 滑动删除下拉刷新 8 | SwipeRefreshLayout下拉刷新 9 | 删除 10 | 11 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 9 | 10 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-10 15 | android.library=true 16 | -------------------------------------------------------------------------------- /android_my_pull_demo/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-10 15 | android.library.reference.1=.. 16 | -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | android_my_pull_refresh 4 | 点击刷新 5 | 下拉刷新 6 | 松开可以刷新 7 | 加载中… 8 | 上次更新时间 9 | 上拉加载更多 10 | 加载更多 11 | 12 | -------------------------------------------------------------------------------- /android_my_pull_demo/res/layout/test.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 14 | 15 | 20 | 21 | -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /android_my_pull_demo/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /android_my_pull_demo/res/layout/slide_item_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 15 | 16 |