├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── gradle.xml ├── markdown-navigator.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── AndroidPullToRefershLibrary ├── .gitignore ├── AndroidPullToRefershLibrary.iml ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── handmark │ │ └── pulltorefresh │ │ └── library │ │ ├── ILoadingLayout.java │ │ ├── IPullToRefresh.java │ │ ├── LoadingLayoutProxy.java │ │ ├── OverscrollHelper.java │ │ ├── PullToRefreshAdapterViewBase.java │ │ ├── PullToRefreshBase.java │ │ ├── PullToRefreshExpandableListView.java │ │ ├── PullToRefreshGridView.java │ │ ├── PullToRefreshHorizontalScrollView.java │ │ ├── PullToRefreshListView.java │ │ ├── PullToRefreshScrollView.java │ │ ├── PullToRefreshWebView.java │ │ ├── extras │ │ ├── PullToRefreshWebView2.java │ │ └── SoundPullEventListener.java │ │ └── internal │ │ ├── EmptyViewMethodAccessor.java │ │ ├── FlipLoadingLayout.java │ │ ├── IndicatorLayout.java │ │ ├── LoadingLayout.java │ │ ├── RotateLoadingLayout.java │ │ ├── Utils.java │ │ └── ViewCompat.java │ └── res │ ├── anim │ ├── slide_in_from_bottom.xml │ ├── slide_in_from_top.xml │ ├── slide_out_to_bottom.xml │ └── slide_out_to_top.xml │ ├── drawable-hdpi │ ├── default_ptr_flip.png │ ├── default_ptr_rotate.png │ └── indicator_arrow.png │ ├── drawable-mdpi │ ├── default_ptr_flip.png │ ├── default_ptr_rotate.png │ └── indicator_arrow.png │ ├── drawable-xhdpi │ ├── default_ptr_flip.png │ ├── default_ptr_rotate.png │ └── indicator_arrow.png │ ├── drawable │ ├── indicator_bg_bottom.xml │ └── indicator_bg_top.xml │ ├── layout │ ├── pull_to_refresh_header_horizontal.xml │ └── pull_to_refresh_header_vertical.xml │ ├── values-ar │ └── pull_refresh_strings.xml │ ├── values-cs │ └── pull_refresh_strings.xml │ ├── values-de │ └── pull_refresh_strings.xml │ ├── values-es │ └── pull_refresh_strings.xml │ ├── values-fi │ └── pull_refresh_strings.xml │ ├── values-fr │ └── pull_refresh_strings.xml │ ├── values-he │ └── pull_refresh_strings.xml │ ├── values-it │ └── pull_refresh_strings.xml │ ├── values-iw │ └── pull_refresh_strings.xml │ ├── values-ja │ └── pull_refresh_strings.xml │ ├── values-ko │ └── pull_refresh_strings.xml │ ├── values-nl │ └── pull_refresh_strings.xml │ ├── values-pl │ └── pull_refresh_strings.xml │ ├── values-pt-rBR │ └── pull_refresh_strings.xml │ ├── values-pt │ └── pull_refresh_strings.xml │ ├── values-ro │ └── pull_refresh_strings.xml │ ├── values-ru │ └── pull_refresh_strings.xml │ ├── values-zh │ └── pull_refresh_strings.xml │ └── values │ ├── attrs.xml │ ├── dimens.xml │ ├── ids.xml │ └── pull_refresh_strings.xml ├── README.md ├── Sample ├── .gitignore ├── Sample.iml ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── wanadapter │ │ └── wan7451 │ │ └── wan_recycleviewadapter │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── wanadapter │ │ └── wan7451 │ │ └── wan_recycleviewadapter │ │ └── MainActivity.java │ └── res │ ├── layout │ └── activity_main.xml │ ├── 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 │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── WanAdapter ├── .gitignore ├── WanAdapter.iml ├── bintrayUpload.gradle ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── wan7451 │ │ └── wanadapter │ │ └── mylibrary │ │ ├── HeaderFooterViewHelper.java │ │ ├── SimpleWanAdapter.java │ │ ├── SwipeRefreshRecyclerView.java │ │ ├── ViewScrollingHandler.java │ │ ├── WanAdapter.java │ │ ├── WanItemDecoration.java │ │ ├── WanPulltoRefreshRecycleView.java │ │ └── WanViewHolder.java │ └── res │ ├── drawable │ └── divider.xml │ ├── layout │ ├── pull_loadmore_recyclerview_layout.xml │ └── recyclerview_footer_layout.xml │ └── values │ └── strings.xml ├── Wan_RecycleViewAdapter.iml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/AndroidPullToRefershLibrary.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/AndroidPullToRefershLibrary.iml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/build.gradle -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/ILoadingLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/ILoadingLayout.java -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/IPullToRefresh.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/IPullToRefresh.java -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/LoadingLayoutProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/LoadingLayoutProxy.java -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/OverscrollHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/OverscrollHelper.java -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase.java -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshBase.java -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView.java -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshGridView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshGridView.java -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshHorizontalScrollView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshHorizontalScrollView.java -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshListView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshListView.java -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshScrollView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshScrollView.java -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshWebView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshWebView.java -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2.java -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/extras/SoundPullEventListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/extras/SoundPullEventListener.java -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/internal/EmptyViewMethodAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/internal/EmptyViewMethodAccessor.java -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/internal/FlipLoadingLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/internal/FlipLoadingLayout.java -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/internal/IndicatorLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/internal/IndicatorLayout.java -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/internal/LoadingLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/internal/LoadingLayout.java -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/internal/RotateLoadingLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/internal/RotateLoadingLayout.java -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/internal/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/internal/Utils.java -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/internal/ViewCompat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/java/com/handmark/pulltorefresh/library/internal/ViewCompat.java -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/anim/slide_in_from_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/anim/slide_in_from_bottom.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/anim/slide_in_from_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/anim/slide_in_from_top.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/anim/slide_out_to_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/anim/slide_out_to_bottom.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/anim/slide_out_to_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/anim/slide_out_to_top.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/drawable-hdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/drawable-hdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/drawable-hdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/drawable-hdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/drawable-hdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/drawable-hdpi/indicator_arrow.png -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/drawable-mdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/drawable-mdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/drawable-mdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/drawable-mdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/drawable-mdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/drawable-mdpi/indicator_arrow.png -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/drawable-xhdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/drawable-xhdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/drawable-xhdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/drawable-xhdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/drawable-xhdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/drawable-xhdpi/indicator_arrow.png -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/drawable/indicator_bg_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/drawable/indicator_bg_bottom.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/drawable/indicator_bg_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/drawable/indicator_bg_top.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/layout/pull_to_refresh_header_horizontal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/layout/pull_to_refresh_header_horizontal.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/layout/pull_to_refresh_header_vertical.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/layout/pull_to_refresh_header_vertical.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/values-ar/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/values-ar/pull_refresh_strings.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/values-cs/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/values-cs/pull_refresh_strings.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/values-de/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/values-de/pull_refresh_strings.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/values-es/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/values-es/pull_refresh_strings.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/values-fi/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/values-fi/pull_refresh_strings.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/values-fr/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/values-fr/pull_refresh_strings.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/values-he/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/values-he/pull_refresh_strings.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/values-it/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/values-it/pull_refresh_strings.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/values-iw/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/values-iw/pull_refresh_strings.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/values-ja/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/values-ja/pull_refresh_strings.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/values-ko/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/values-ko/pull_refresh_strings.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/values-nl/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/values-nl/pull_refresh_strings.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/values-pl/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/values-pl/pull_refresh_strings.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/values-pt-rBR/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/values-pt-rBR/pull_refresh_strings.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/values-pt/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/values-pt/pull_refresh_strings.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/values-ro/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/values-ro/pull_refresh_strings.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/values-ru/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/values-ru/pull_refresh_strings.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/values-zh/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/values-zh/pull_refresh_strings.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /AndroidPullToRefershLibrary/src/main/res/values/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/AndroidPullToRefershLibrary/src/main/res/values/pull_refresh_strings.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/README.md -------------------------------------------------------------------------------- /Sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Sample/Sample.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/Sample/Sample.iml -------------------------------------------------------------------------------- /Sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/Sample/build.gradle -------------------------------------------------------------------------------- /Sample/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/Sample/proguard-rules.pro -------------------------------------------------------------------------------- /Sample/src/androidTest/java/com/wanadapter/wan7451/wan_recycleviewadapter/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/Sample/src/androidTest/java/com/wanadapter/wan7451/wan_recycleviewadapter/ApplicationTest.java -------------------------------------------------------------------------------- /Sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/Sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Sample/src/main/java/com/wanadapter/wan7451/wan_recycleviewadapter/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/Sample/src/main/java/com/wanadapter/wan7451/wan_recycleviewadapter/MainActivity.java -------------------------------------------------------------------------------- /Sample/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/Sample/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Sample/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/Sample/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /Sample/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/Sample/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Sample/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/Sample/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Sample/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/Sample/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Sample/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/Sample/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Sample/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/Sample/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /Sample/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/Sample/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/Sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/Sample/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /WanAdapter/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /WanAdapter/WanAdapter.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/WanAdapter/WanAdapter.iml -------------------------------------------------------------------------------- /WanAdapter/bintrayUpload.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/WanAdapter/bintrayUpload.gradle -------------------------------------------------------------------------------- /WanAdapter/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/WanAdapter/build.gradle -------------------------------------------------------------------------------- /WanAdapter/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/WanAdapter/proguard-rules.pro -------------------------------------------------------------------------------- /WanAdapter/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/WanAdapter/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /WanAdapter/src/main/java/com/wan7451/wanadapter/mylibrary/HeaderFooterViewHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/WanAdapter/src/main/java/com/wan7451/wanadapter/mylibrary/HeaderFooterViewHelper.java -------------------------------------------------------------------------------- /WanAdapter/src/main/java/com/wan7451/wanadapter/mylibrary/SimpleWanAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/WanAdapter/src/main/java/com/wan7451/wanadapter/mylibrary/SimpleWanAdapter.java -------------------------------------------------------------------------------- /WanAdapter/src/main/java/com/wan7451/wanadapter/mylibrary/SwipeRefreshRecyclerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/WanAdapter/src/main/java/com/wan7451/wanadapter/mylibrary/SwipeRefreshRecyclerView.java -------------------------------------------------------------------------------- /WanAdapter/src/main/java/com/wan7451/wanadapter/mylibrary/ViewScrollingHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/WanAdapter/src/main/java/com/wan7451/wanadapter/mylibrary/ViewScrollingHandler.java -------------------------------------------------------------------------------- /WanAdapter/src/main/java/com/wan7451/wanadapter/mylibrary/WanAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/WanAdapter/src/main/java/com/wan7451/wanadapter/mylibrary/WanAdapter.java -------------------------------------------------------------------------------- /WanAdapter/src/main/java/com/wan7451/wanadapter/mylibrary/WanItemDecoration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/WanAdapter/src/main/java/com/wan7451/wanadapter/mylibrary/WanItemDecoration.java -------------------------------------------------------------------------------- /WanAdapter/src/main/java/com/wan7451/wanadapter/mylibrary/WanPulltoRefreshRecycleView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/WanAdapter/src/main/java/com/wan7451/wanadapter/mylibrary/WanPulltoRefreshRecycleView.java -------------------------------------------------------------------------------- /WanAdapter/src/main/java/com/wan7451/wanadapter/mylibrary/WanViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/WanAdapter/src/main/java/com/wan7451/wanadapter/mylibrary/WanViewHolder.java -------------------------------------------------------------------------------- /WanAdapter/src/main/res/drawable/divider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/WanAdapter/src/main/res/drawable/divider.xml -------------------------------------------------------------------------------- /WanAdapter/src/main/res/layout/pull_loadmore_recyclerview_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/WanAdapter/src/main/res/layout/pull_loadmore_recyclerview_layout.xml -------------------------------------------------------------------------------- /WanAdapter/src/main/res/layout/recyclerview_footer_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/WanAdapter/src/main/res/layout/recyclerview_footer_layout.xml -------------------------------------------------------------------------------- /WanAdapter/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/WanAdapter/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Wan_RecycleViewAdapter.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/Wan_RecycleViewAdapter.iml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wan7451/Wan_RecycleViewAdapter/HEAD/settings.gradle --------------------------------------------------------------------------------