├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── Android_PullToRefreshLibrary_Collection.iml ├── Phoenix ├── .gitignore ├── Phoenix.iml ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── yalantis │ │ └── phoenix │ │ ├── PullToRefreshView.java │ │ ├── refresh_view │ │ ├── BaseRefreshView.java │ │ └── SunRefreshView.java │ │ └── util │ │ ├── Logger.java │ │ └── Utils.java │ └── res │ ├── drawable-hdpi │ ├── buildings.png │ ├── sky.png │ └── sun.png │ ├── drawable-mdpi │ ├── buildings.png │ ├── sky.png │ └── sun.png │ ├── drawable-xhdpi │ ├── buildings.png │ ├── sky.png │ └── sun.png │ ├── drawable-xxhdpi │ ├── buildings.png │ ├── sky.png │ └── sun.png │ ├── drawable-xxxhdpi │ ├── buildings.png │ ├── sky.png │ └── sun.png │ └── values │ └── attrs.xml ├── README.md ├── app ├── .gitignore ├── app.iml ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── tellh │ │ └── android_pulltorefreshlibrary_collection │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── tellh │ │ │ └── android_pulltorefreshlibrary_collection │ │ │ ├── BaseActivity.java │ │ │ ├── CircleRefreshLayoutActivity.java │ │ │ ├── JellyRefreshActivity.java │ │ │ ├── MainActivity.java │ │ │ ├── PullToRefreshLayoutActivity.java │ │ │ ├── PullToRefreshLayoutTellH │ │ │ └── PullToRefreshLayout.java │ │ │ ├── PullToRefreshViewPhoenixActivity.java │ │ │ ├── PullToRefreshViewTaurusActivity.java │ │ │ ├── SwipeToRefreshActivity.java │ │ │ ├── WaterDropListView │ │ │ ├── Circle.java │ │ │ ├── Utils.java │ │ │ ├── WaterDropListView.java │ │ │ ├── WaterDropListViewFooter.java │ │ │ ├── WaterDropListViewHeader.java │ │ │ └── WaterDropView.java │ │ │ ├── WaterDropListViewActivity.java │ │ │ ├── XListView │ │ │ ├── LoadView.java │ │ │ ├── XListView.java │ │ │ ├── XListViewFooter.java │ │ │ └── XListViewHeader.java │ │ │ ├── XListViewActivity.java │ │ │ └── util │ │ │ └── Logger.java │ └── res │ │ ├── drawable-hdpi │ │ ├── ic_check_circle_black.png │ │ └── water_drop_refresh_arrow.png │ │ ├── drawable-mdpi │ │ └── ic_check_circle_black.png │ │ ├── drawable-xhdpi │ │ └── ic_check_circle_black.png │ │ ├── drawable-xxhdpi │ │ ├── ic_check_circle_black.png │ │ ├── xlistview_arrow.png │ │ └── xlistview_loading.png │ │ ├── drawable-xxxhdpi │ │ └── ic_check_circle_black.png │ │ ├── drawable │ │ ├── card_selector.xml │ │ └── down_arrow.png │ │ ├── layout │ │ ├── activity_circle_refresh.xml │ │ ├── activity_jelly_refresh.xml │ │ ├── activity_main.xml │ │ ├── activity_pull_to_refresh_phoenix.xml │ │ ├── activity_pull_to_refresh_taurus_fly_plane.xml │ │ ├── activity_pull_to_refresh_tellh.xml │ │ ├── activity_swipe_to_refresh_google.xml │ │ ├── activity_water_drop_listview.xml │ │ ├── activity_xlistview.xml │ │ ├── layout_refresh_view.xml │ │ ├── list_item.xml │ │ ├── waterdroplistview_footer.xml │ │ ├── waterdroplistview_header.xml │ │ ├── xlistview_footer.xml │ │ └── xlistview_header.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ids.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── tellh │ └── android_pulltorefreshlibrary_collection │ └── ExampleUnitTest.java ├── circlerefreshlayout ├── .gitignore ├── build.gradle ├── circlerefreshlayout.iml ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── tellh │ │ └── circlerefreshlayout │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── tuesda │ │ │ └── walker │ │ │ └── circlerefresh │ │ │ ├── AnimationView.java │ │ │ └── CircleRefreshLayout.java │ └── res │ │ ├── menu │ │ └── menu_main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── attrs.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── tellh │ └── circlerefreshlayout │ └── ExampleUnitTest.java ├── gif └── Refresh.gif ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── jellyrefresh ├── .gitignore ├── build.gradle ├── jellyrefresh.iml ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── tellh │ │ └── jellyrefresh │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── uk │ │ │ └── co │ │ │ └── imallan │ │ │ └── jellyrefresh │ │ │ ├── JellyRefreshLayout.java │ │ │ ├── JellyView.java │ │ │ ├── JellyViewFrameLayout.java │ │ │ ├── MathUtils.java │ │ │ └── PullToRefreshLayout.java │ └── res │ │ ├── layout │ │ ├── new_view_pull_header.xml │ │ └── view_pull_header.xml │ │ └── values │ │ ├── attrs.xml │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── tellh │ └── jellyrefresh │ └── ExampleUnitTest.java ├── settings.gradle ├── swipetorefreshlayoutgoogle ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── src │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── tellh │ │ │ └── swipetorefreshlayoutgoogle │ │ │ └── ApplicationTest.java │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── tellh │ │ │ │ └── swipetorefreshlayoutgoogle │ │ │ │ ├── CircleImageView.java │ │ │ │ ├── MaterialProgressDrawable.java │ │ │ │ ├── SwipeRefreshTestLayout.java │ │ │ │ └── util │ │ │ │ └── Logger.java │ │ └── res │ │ │ └── values │ │ │ └── strings.xml │ └── test │ │ └── java │ │ └── com │ │ └── tellh │ │ └── swipetorefreshlayoutgoogle │ │ └── ExampleUnitTest.java └── swipetorefreshlayoutgoogle.iml └── taurus_flyplane ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── src ├── androidTest │ └── java │ │ └── com │ │ └── tellh │ │ └── taurus_flyplane │ │ └── ApplicationTest.java ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── yalantis │ │ │ └── taurus │ │ │ ├── PullToRefreshView.java │ │ │ └── RefreshView.java │ └── res │ │ ├── drawable-hdpi │ │ ├── airplane.png │ │ ├── clouds_center.png │ │ ├── clouds_left.png │ │ └── clouds_right.png │ │ ├── drawable-mdpi │ │ ├── airplane.png │ │ ├── clouds_center.png │ │ ├── clouds_left.png │ │ └── clouds_right.png │ │ ├── drawable-xhdpi │ │ ├── airplane.png │ │ ├── clouds_center.png │ │ ├── clouds_left.png │ │ └── clouds_right.png │ │ ├── drawable-xxhdpi │ │ ├── airplane.png │ │ ├── clouds_center.png │ │ ├── clouds_left.png │ │ └── clouds_right.png │ │ ├── drawable-xxxhdpi │ │ ├── airplane.png │ │ ├── clouds_center.png │ │ ├── clouds_left.png │ │ └── clouds_right.png │ │ └── values │ │ ├── colors.xml │ │ └── strings.xml └── test │ └── java │ └── com │ └── tellh │ └── taurus_flyplane │ └── ExampleUnitTest.java └── taurus_flyplane.iml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Android_PullToRefreshLibrary_Collection -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Android_PullToRefreshLibrary_Collection.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/Android_PullToRefreshLibrary_Collection.iml -------------------------------------------------------------------------------- /Phoenix/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Phoenix/Phoenix.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/Phoenix/Phoenix.iml -------------------------------------------------------------------------------- /Phoenix/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/Phoenix/build.gradle -------------------------------------------------------------------------------- /Phoenix/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/Phoenix/proguard-rules.pro -------------------------------------------------------------------------------- /Phoenix/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Phoenix/src/main/java/com/yalantis/phoenix/PullToRefreshView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/Phoenix/src/main/java/com/yalantis/phoenix/PullToRefreshView.java -------------------------------------------------------------------------------- /Phoenix/src/main/java/com/yalantis/phoenix/refresh_view/BaseRefreshView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/Phoenix/src/main/java/com/yalantis/phoenix/refresh_view/BaseRefreshView.java -------------------------------------------------------------------------------- /Phoenix/src/main/java/com/yalantis/phoenix/refresh_view/SunRefreshView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/Phoenix/src/main/java/com/yalantis/phoenix/refresh_view/SunRefreshView.java -------------------------------------------------------------------------------- /Phoenix/src/main/java/com/yalantis/phoenix/util/Logger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/Phoenix/src/main/java/com/yalantis/phoenix/util/Logger.java -------------------------------------------------------------------------------- /Phoenix/src/main/java/com/yalantis/phoenix/util/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/Phoenix/src/main/java/com/yalantis/phoenix/util/Utils.java -------------------------------------------------------------------------------- /Phoenix/src/main/res/drawable-hdpi/buildings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/Phoenix/src/main/res/drawable-hdpi/buildings.png -------------------------------------------------------------------------------- /Phoenix/src/main/res/drawable-hdpi/sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/Phoenix/src/main/res/drawable-hdpi/sky.png -------------------------------------------------------------------------------- /Phoenix/src/main/res/drawable-hdpi/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/Phoenix/src/main/res/drawable-hdpi/sun.png -------------------------------------------------------------------------------- /Phoenix/src/main/res/drawable-mdpi/buildings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/Phoenix/src/main/res/drawable-mdpi/buildings.png -------------------------------------------------------------------------------- /Phoenix/src/main/res/drawable-mdpi/sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/Phoenix/src/main/res/drawable-mdpi/sky.png -------------------------------------------------------------------------------- /Phoenix/src/main/res/drawable-mdpi/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/Phoenix/src/main/res/drawable-mdpi/sun.png -------------------------------------------------------------------------------- /Phoenix/src/main/res/drawable-xhdpi/buildings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/Phoenix/src/main/res/drawable-xhdpi/buildings.png -------------------------------------------------------------------------------- /Phoenix/src/main/res/drawable-xhdpi/sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/Phoenix/src/main/res/drawable-xhdpi/sky.png -------------------------------------------------------------------------------- /Phoenix/src/main/res/drawable-xhdpi/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/Phoenix/src/main/res/drawable-xhdpi/sun.png -------------------------------------------------------------------------------- /Phoenix/src/main/res/drawable-xxhdpi/buildings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/Phoenix/src/main/res/drawable-xxhdpi/buildings.png -------------------------------------------------------------------------------- /Phoenix/src/main/res/drawable-xxhdpi/sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/Phoenix/src/main/res/drawable-xxhdpi/sky.png -------------------------------------------------------------------------------- /Phoenix/src/main/res/drawable-xxhdpi/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/Phoenix/src/main/res/drawable-xxhdpi/sun.png -------------------------------------------------------------------------------- /Phoenix/src/main/res/drawable-xxxhdpi/buildings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/Phoenix/src/main/res/drawable-xxxhdpi/buildings.png -------------------------------------------------------------------------------- /Phoenix/src/main/res/drawable-xxxhdpi/sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/Phoenix/src/main/res/drawable-xxxhdpi/sky.png -------------------------------------------------------------------------------- /Phoenix/src/main/res/drawable-xxxhdpi/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/Phoenix/src/main/res/drawable-xxxhdpi/sun.png -------------------------------------------------------------------------------- /Phoenix/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/Phoenix/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/tellh/android_pulltorefreshlibrary_collection/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/androidTest/java/com/tellh/android_pulltorefreshlibrary_collection/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/BaseActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/BaseActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/CircleRefreshLayoutActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/CircleRefreshLayoutActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/JellyRefreshActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/JellyRefreshActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/PullToRefreshLayoutActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/PullToRefreshLayoutActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/PullToRefreshLayoutTellH/PullToRefreshLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/PullToRefreshLayoutTellH/PullToRefreshLayout.java -------------------------------------------------------------------------------- /app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/PullToRefreshViewPhoenixActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/PullToRefreshViewPhoenixActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/PullToRefreshViewTaurusActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/PullToRefreshViewTaurusActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/SwipeToRefreshActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/SwipeToRefreshActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/WaterDropListView/Circle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/WaterDropListView/Circle.java -------------------------------------------------------------------------------- /app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/WaterDropListView/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/WaterDropListView/Utils.java -------------------------------------------------------------------------------- /app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/WaterDropListView/WaterDropListView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/WaterDropListView/WaterDropListView.java -------------------------------------------------------------------------------- /app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/WaterDropListView/WaterDropListViewFooter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/WaterDropListView/WaterDropListViewFooter.java -------------------------------------------------------------------------------- /app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/WaterDropListView/WaterDropListViewHeader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/WaterDropListView/WaterDropListViewHeader.java -------------------------------------------------------------------------------- /app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/WaterDropListView/WaterDropView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/WaterDropListView/WaterDropView.java -------------------------------------------------------------------------------- /app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/WaterDropListViewActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/WaterDropListViewActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/XListView/LoadView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/XListView/LoadView.java -------------------------------------------------------------------------------- /app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/XListView/XListView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/XListView/XListView.java -------------------------------------------------------------------------------- /app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/XListView/XListViewFooter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/XListView/XListViewFooter.java -------------------------------------------------------------------------------- /app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/XListView/XListViewHeader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/XListView/XListViewHeader.java -------------------------------------------------------------------------------- /app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/XListViewActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/XListViewActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/util/Logger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/java/com/tellh/android_pulltorefreshlibrary_collection/util/Logger.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_check_circle_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/drawable-hdpi/ic_check_circle_black.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/water_drop_refresh_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/drawable-hdpi/water_drop_refresh_arrow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_check_circle_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/drawable-mdpi/ic_check_circle_black.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_check_circle_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/drawable-xhdpi/ic_check_circle_black.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_check_circle_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/drawable-xxhdpi/ic_check_circle_black.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/xlistview_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/drawable-xxhdpi/xlistview_arrow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/xlistview_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/drawable-xxhdpi/xlistview_loading.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_check_circle_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/drawable-xxxhdpi/ic_check_circle_black.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/card_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/drawable/card_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/drawable/down_arrow.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_circle_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/layout/activity_circle_refresh.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_jelly_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/layout/activity_jelly_refresh.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_pull_to_refresh_phoenix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/layout/activity_pull_to_refresh_phoenix.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_pull_to_refresh_taurus_fly_plane.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/layout/activity_pull_to_refresh_taurus_fly_plane.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_pull_to_refresh_tellh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/layout/activity_pull_to_refresh_tellh.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_swipe_to_refresh_google.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/layout/activity_swipe_to_refresh_google.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_water_drop_listview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/layout/activity_water_drop_listview.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_xlistview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/layout/activity_xlistview.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/layout_refresh_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/layout/layout_refresh_view.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/layout/list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/waterdroplistview_footer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/layout/waterdroplistview_footer.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/waterdroplistview_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/layout/waterdroplistview_header.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/xlistview_footer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/layout/xlistview_footer.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/xlistview_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/layout/xlistview_header.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/tellh/android_pulltorefreshlibrary_collection/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/app/src/test/java/com/tellh/android_pulltorefreshlibrary_collection/ExampleUnitTest.java -------------------------------------------------------------------------------- /circlerefreshlayout/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /circlerefreshlayout/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/circlerefreshlayout/build.gradle -------------------------------------------------------------------------------- /circlerefreshlayout/circlerefreshlayout.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/circlerefreshlayout/circlerefreshlayout.iml -------------------------------------------------------------------------------- /circlerefreshlayout/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/circlerefreshlayout/proguard-rules.pro -------------------------------------------------------------------------------- /circlerefreshlayout/src/androidTest/java/com/tellh/circlerefreshlayout/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/circlerefreshlayout/src/androidTest/java/com/tellh/circlerefreshlayout/ApplicationTest.java -------------------------------------------------------------------------------- /circlerefreshlayout/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/circlerefreshlayout/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /circlerefreshlayout/src/main/java/com/tuesda/walker/circlerefresh/AnimationView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/circlerefreshlayout/src/main/java/com/tuesda/walker/circlerefresh/AnimationView.java -------------------------------------------------------------------------------- /circlerefreshlayout/src/main/java/com/tuesda/walker/circlerefresh/CircleRefreshLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/circlerefreshlayout/src/main/java/com/tuesda/walker/circlerefresh/CircleRefreshLayout.java -------------------------------------------------------------------------------- /circlerefreshlayout/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/circlerefreshlayout/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /circlerefreshlayout/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/circlerefreshlayout/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /circlerefreshlayout/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/circlerefreshlayout/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /circlerefreshlayout/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/circlerefreshlayout/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /circlerefreshlayout/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/circlerefreshlayout/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /circlerefreshlayout/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/circlerefreshlayout/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /circlerefreshlayout/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/circlerefreshlayout/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /circlerefreshlayout/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/circlerefreshlayout/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /circlerefreshlayout/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/circlerefreshlayout/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /circlerefreshlayout/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/circlerefreshlayout/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /circlerefreshlayout/src/test/java/com/tellh/circlerefreshlayout/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/circlerefreshlayout/src/test/java/com/tellh/circlerefreshlayout/ExampleUnitTest.java -------------------------------------------------------------------------------- /gif/Refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/gif/Refresh.gif -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/gradlew.bat -------------------------------------------------------------------------------- /jellyrefresh/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /jellyrefresh/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/jellyrefresh/build.gradle -------------------------------------------------------------------------------- /jellyrefresh/jellyrefresh.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/jellyrefresh/jellyrefresh.iml -------------------------------------------------------------------------------- /jellyrefresh/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/jellyrefresh/proguard-rules.pro -------------------------------------------------------------------------------- /jellyrefresh/src/androidTest/java/com/tellh/jellyrefresh/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/jellyrefresh/src/androidTest/java/com/tellh/jellyrefresh/ApplicationTest.java -------------------------------------------------------------------------------- /jellyrefresh/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/jellyrefresh/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /jellyrefresh/src/main/java/uk/co/imallan/jellyrefresh/JellyRefreshLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/jellyrefresh/src/main/java/uk/co/imallan/jellyrefresh/JellyRefreshLayout.java -------------------------------------------------------------------------------- /jellyrefresh/src/main/java/uk/co/imallan/jellyrefresh/JellyView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/jellyrefresh/src/main/java/uk/co/imallan/jellyrefresh/JellyView.java -------------------------------------------------------------------------------- /jellyrefresh/src/main/java/uk/co/imallan/jellyrefresh/JellyViewFrameLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/jellyrefresh/src/main/java/uk/co/imallan/jellyrefresh/JellyViewFrameLayout.java -------------------------------------------------------------------------------- /jellyrefresh/src/main/java/uk/co/imallan/jellyrefresh/MathUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/jellyrefresh/src/main/java/uk/co/imallan/jellyrefresh/MathUtils.java -------------------------------------------------------------------------------- /jellyrefresh/src/main/java/uk/co/imallan/jellyrefresh/PullToRefreshLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/jellyrefresh/src/main/java/uk/co/imallan/jellyrefresh/PullToRefreshLayout.java -------------------------------------------------------------------------------- /jellyrefresh/src/main/res/layout/new_view_pull_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/jellyrefresh/src/main/res/layout/new_view_pull_header.xml -------------------------------------------------------------------------------- /jellyrefresh/src/main/res/layout/view_pull_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/jellyrefresh/src/main/res/layout/view_pull_header.xml -------------------------------------------------------------------------------- /jellyrefresh/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/jellyrefresh/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /jellyrefresh/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/jellyrefresh/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /jellyrefresh/src/test/java/com/tellh/jellyrefresh/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/jellyrefresh/src/test/java/com/tellh/jellyrefresh/ExampleUnitTest.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/settings.gradle -------------------------------------------------------------------------------- /swipetorefreshlayoutgoogle/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /swipetorefreshlayoutgoogle/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/swipetorefreshlayoutgoogle/build.gradle -------------------------------------------------------------------------------- /swipetorefreshlayoutgoogle/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/swipetorefreshlayoutgoogle/proguard-rules.pro -------------------------------------------------------------------------------- /swipetorefreshlayoutgoogle/src/androidTest/java/com/tellh/swipetorefreshlayoutgoogle/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/swipetorefreshlayoutgoogle/src/androidTest/java/com/tellh/swipetorefreshlayoutgoogle/ApplicationTest.java -------------------------------------------------------------------------------- /swipetorefreshlayoutgoogle/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/swipetorefreshlayoutgoogle/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /swipetorefreshlayoutgoogle/src/main/java/com/tellh/swipetorefreshlayoutgoogle/CircleImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/swipetorefreshlayoutgoogle/src/main/java/com/tellh/swipetorefreshlayoutgoogle/CircleImageView.java -------------------------------------------------------------------------------- /swipetorefreshlayoutgoogle/src/main/java/com/tellh/swipetorefreshlayoutgoogle/MaterialProgressDrawable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/swipetorefreshlayoutgoogle/src/main/java/com/tellh/swipetorefreshlayoutgoogle/MaterialProgressDrawable.java -------------------------------------------------------------------------------- /swipetorefreshlayoutgoogle/src/main/java/com/tellh/swipetorefreshlayoutgoogle/SwipeRefreshTestLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/swipetorefreshlayoutgoogle/src/main/java/com/tellh/swipetorefreshlayoutgoogle/SwipeRefreshTestLayout.java -------------------------------------------------------------------------------- /swipetorefreshlayoutgoogle/src/main/java/com/tellh/swipetorefreshlayoutgoogle/util/Logger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/swipetorefreshlayoutgoogle/src/main/java/com/tellh/swipetorefreshlayoutgoogle/util/Logger.java -------------------------------------------------------------------------------- /swipetorefreshlayoutgoogle/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/swipetorefreshlayoutgoogle/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /swipetorefreshlayoutgoogle/src/test/java/com/tellh/swipetorefreshlayoutgoogle/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/swipetorefreshlayoutgoogle/src/test/java/com/tellh/swipetorefreshlayoutgoogle/ExampleUnitTest.java -------------------------------------------------------------------------------- /swipetorefreshlayoutgoogle/swipetorefreshlayoutgoogle.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/swipetorefreshlayoutgoogle/swipetorefreshlayoutgoogle.iml -------------------------------------------------------------------------------- /taurus_flyplane/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /taurus_flyplane/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/build.gradle -------------------------------------------------------------------------------- /taurus_flyplane/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/proguard-rules.pro -------------------------------------------------------------------------------- /taurus_flyplane/src/androidTest/java/com/tellh/taurus_flyplane/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/androidTest/java/com/tellh/taurus_flyplane/ApplicationTest.java -------------------------------------------------------------------------------- /taurus_flyplane/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /taurus_flyplane/src/main/java/com/yalantis/taurus/PullToRefreshView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/main/java/com/yalantis/taurus/PullToRefreshView.java -------------------------------------------------------------------------------- /taurus_flyplane/src/main/java/com/yalantis/taurus/RefreshView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/main/java/com/yalantis/taurus/RefreshView.java -------------------------------------------------------------------------------- /taurus_flyplane/src/main/res/drawable-hdpi/airplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/main/res/drawable-hdpi/airplane.png -------------------------------------------------------------------------------- /taurus_flyplane/src/main/res/drawable-hdpi/clouds_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/main/res/drawable-hdpi/clouds_center.png -------------------------------------------------------------------------------- /taurus_flyplane/src/main/res/drawable-hdpi/clouds_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/main/res/drawable-hdpi/clouds_left.png -------------------------------------------------------------------------------- /taurus_flyplane/src/main/res/drawable-hdpi/clouds_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/main/res/drawable-hdpi/clouds_right.png -------------------------------------------------------------------------------- /taurus_flyplane/src/main/res/drawable-mdpi/airplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/main/res/drawable-mdpi/airplane.png -------------------------------------------------------------------------------- /taurus_flyplane/src/main/res/drawable-mdpi/clouds_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/main/res/drawable-mdpi/clouds_center.png -------------------------------------------------------------------------------- /taurus_flyplane/src/main/res/drawable-mdpi/clouds_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/main/res/drawable-mdpi/clouds_left.png -------------------------------------------------------------------------------- /taurus_flyplane/src/main/res/drawable-mdpi/clouds_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/main/res/drawable-mdpi/clouds_right.png -------------------------------------------------------------------------------- /taurus_flyplane/src/main/res/drawable-xhdpi/airplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/main/res/drawable-xhdpi/airplane.png -------------------------------------------------------------------------------- /taurus_flyplane/src/main/res/drawable-xhdpi/clouds_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/main/res/drawable-xhdpi/clouds_center.png -------------------------------------------------------------------------------- /taurus_flyplane/src/main/res/drawable-xhdpi/clouds_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/main/res/drawable-xhdpi/clouds_left.png -------------------------------------------------------------------------------- /taurus_flyplane/src/main/res/drawable-xhdpi/clouds_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/main/res/drawable-xhdpi/clouds_right.png -------------------------------------------------------------------------------- /taurus_flyplane/src/main/res/drawable-xxhdpi/airplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/main/res/drawable-xxhdpi/airplane.png -------------------------------------------------------------------------------- /taurus_flyplane/src/main/res/drawable-xxhdpi/clouds_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/main/res/drawable-xxhdpi/clouds_center.png -------------------------------------------------------------------------------- /taurus_flyplane/src/main/res/drawable-xxhdpi/clouds_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/main/res/drawable-xxhdpi/clouds_left.png -------------------------------------------------------------------------------- /taurus_flyplane/src/main/res/drawable-xxhdpi/clouds_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/main/res/drawable-xxhdpi/clouds_right.png -------------------------------------------------------------------------------- /taurus_flyplane/src/main/res/drawable-xxxhdpi/airplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/main/res/drawable-xxxhdpi/airplane.png -------------------------------------------------------------------------------- /taurus_flyplane/src/main/res/drawable-xxxhdpi/clouds_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/main/res/drawable-xxxhdpi/clouds_center.png -------------------------------------------------------------------------------- /taurus_flyplane/src/main/res/drawable-xxxhdpi/clouds_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/main/res/drawable-xxxhdpi/clouds_left.png -------------------------------------------------------------------------------- /taurus_flyplane/src/main/res/drawable-xxxhdpi/clouds_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/main/res/drawable-xxxhdpi/clouds_right.png -------------------------------------------------------------------------------- /taurus_flyplane/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /taurus_flyplane/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /taurus_flyplane/src/test/java/com/tellh/taurus_flyplane/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/src/test/java/com/tellh/taurus_flyplane/ExampleUnitTest.java -------------------------------------------------------------------------------- /taurus_flyplane/taurus_flyplane.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TellH/Android_PullToRefreshLibrary_Collection/HEAD/taurus_flyplane/taurus_flyplane.iml --------------------------------------------------------------------------------