├── .gitignore ├── AndroidManifest.xml ├── README.md ├── android_my_pull_demo ├── AndroidManifest.xml ├── ic_launcher-web.png ├── libs │ ├── android-support-v4.jar │ └── android_common_adapter.jar ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── drawable │ │ └── icon.png │ ├── layout │ │ ├── main.xml │ │ ├── pull_refresh_main.xml │ │ ├── slide_item_layout.xml │ │ ├── swipe_lv_layout.xml │ │ └── test.xml │ └── values │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── example │ └── pull │ ├── MainActivity.java │ └── ShowActivity.java ├── ic_launcher-web.png ├── libs └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── 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 ├── layout │ ├── pull_to_refresh_footer.xml │ └── pull_to_refresh_header.xml └── values │ ├── colors.xml │ ├── strings.xml │ └── styles.xml └── src └── com └── uit └── pullrefresh ├── base ├── PullRefreshBase.java └── impl │ ├── PullRefreshListView.java │ └── PullRefreshTextView.java ├── listener ├── OnLoadListener.java └── OnRefreshListener.java ├── scroller ├── RefreshAdaterView.java ├── RefreshLayoutBase.java └── impl │ ├── RefreshGridView.java │ ├── RefreshListView.java │ ├── RefreshSlideDeleteListView.java │ └── RefreshTextView.java └── swipe ├── RefreshGvLayout.java ├── RefreshLayout.java └── RefreshLvLayout.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/.gitignore -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/README.md -------------------------------------------------------------------------------- /android_my_pull_demo/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/android_my_pull_demo/AndroidManifest.xml -------------------------------------------------------------------------------- /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/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 -------------------------------------------------------------------------------- /android_my_pull_demo/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/android_my_pull_demo/proguard-project.txt -------------------------------------------------------------------------------- /android_my_pull_demo/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/android_my_pull_demo/project.properties -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /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/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/android_my_pull_demo/res/layout/main.xml -------------------------------------------------------------------------------- /android_my_pull_demo/res/layout/pull_refresh_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/android_my_pull_demo/res/layout/pull_refresh_main.xml -------------------------------------------------------------------------------- /android_my_pull_demo/res/layout/slide_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/android_my_pull_demo/res/layout/slide_item_layout.xml -------------------------------------------------------------------------------- /android_my_pull_demo/res/layout/swipe_lv_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/android_my_pull_demo/res/layout/swipe_lv_layout.xml -------------------------------------------------------------------------------- /android_my_pull_demo/res/layout/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/android_my_pull_demo/res/layout/test.xml -------------------------------------------------------------------------------- /android_my_pull_demo/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/android_my_pull_demo/res/values/strings.xml -------------------------------------------------------------------------------- /android_my_pull_demo/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/android_my_pull_demo/res/values/styles.xml -------------------------------------------------------------------------------- /android_my_pull_demo/src/com/example/pull/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/android_my_pull_demo/src/com/example/pull/MainActivity.java -------------------------------------------------------------------------------- /android_my_pull_demo/src/com/example/pull/ShowActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/android_my_pull_demo/src/com/example/pull/ShowActivity.java -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/project.properties -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /res/layout/pull_to_refresh_footer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/res/layout/pull_to_refresh_footer.xml -------------------------------------------------------------------------------- /res/layout/pull_to_refresh_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/res/layout/pull_to_refresh_header.xml -------------------------------------------------------------------------------- /res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/res/values/colors.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /src/com/uit/pullrefresh/base/PullRefreshBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/src/com/uit/pullrefresh/base/PullRefreshBase.java -------------------------------------------------------------------------------- /src/com/uit/pullrefresh/base/impl/PullRefreshListView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/src/com/uit/pullrefresh/base/impl/PullRefreshListView.java -------------------------------------------------------------------------------- /src/com/uit/pullrefresh/base/impl/PullRefreshTextView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/src/com/uit/pullrefresh/base/impl/PullRefreshTextView.java -------------------------------------------------------------------------------- /src/com/uit/pullrefresh/listener/OnLoadListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/src/com/uit/pullrefresh/listener/OnLoadListener.java -------------------------------------------------------------------------------- /src/com/uit/pullrefresh/listener/OnRefreshListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/src/com/uit/pullrefresh/listener/OnRefreshListener.java -------------------------------------------------------------------------------- /src/com/uit/pullrefresh/scroller/RefreshAdaterView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/src/com/uit/pullrefresh/scroller/RefreshAdaterView.java -------------------------------------------------------------------------------- /src/com/uit/pullrefresh/scroller/RefreshLayoutBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/src/com/uit/pullrefresh/scroller/RefreshLayoutBase.java -------------------------------------------------------------------------------- /src/com/uit/pullrefresh/scroller/impl/RefreshGridView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/src/com/uit/pullrefresh/scroller/impl/RefreshGridView.java -------------------------------------------------------------------------------- /src/com/uit/pullrefresh/scroller/impl/RefreshListView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/src/com/uit/pullrefresh/scroller/impl/RefreshListView.java -------------------------------------------------------------------------------- /src/com/uit/pullrefresh/scroller/impl/RefreshSlideDeleteListView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/src/com/uit/pullrefresh/scroller/impl/RefreshSlideDeleteListView.java -------------------------------------------------------------------------------- /src/com/uit/pullrefresh/scroller/impl/RefreshTextView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/src/com/uit/pullrefresh/scroller/impl/RefreshTextView.java -------------------------------------------------------------------------------- /src/com/uit/pullrefresh/swipe/RefreshGvLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/src/com/uit/pullrefresh/swipe/RefreshGvLayout.java -------------------------------------------------------------------------------- /src/com/uit/pullrefresh/swipe/RefreshLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/src/com/uit/pullrefresh/swipe/RefreshLayout.java -------------------------------------------------------------------------------- /src/com/uit/pullrefresh/swipe/RefreshLvLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hehonghui/android_my_pull_refresh_view/HEAD/src/com/uit/pullrefresh/swipe/RefreshLvLayout.java --------------------------------------------------------------------------------