├── .gitignore ├── LICENSE ├── README.md ├── extras ├── PullToRefreshListFragment │ ├── AndroidManifest.xml │ ├── LICENSE │ ├── libs │ │ └── android-support-v4.jar │ ├── pom.xml │ ├── project.properties │ ├── res │ │ └── layout │ │ │ └── need_this_for_maven.xml │ └── src │ │ └── com │ │ └── handmark │ │ └── pulltorefresh │ │ └── extras │ │ └── listfragment │ │ ├── PullToRefreshBaseListFragment.java │ │ ├── PullToRefreshExpandableListFragment.java │ │ └── PullToRefreshListFragment.java ├── PullToRefreshViewPager │ ├── AndroidManifest.xml │ ├── ant.properties │ ├── libs │ │ └── android-support-v4.jar │ ├── pom.xml │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── layout │ │ │ └── need_this_for_maven.xml │ │ └── values │ │ │ └── ids.xml │ └── src │ │ └── com │ │ └── handmark │ │ └── pulltorefresh │ │ └── extras │ │ └── viewpager │ │ └── PullToRefreshViewPager.java └── pom.xml ├── header_graphic.png ├── library ├── AndroidManifest.xml ├── LICENSE ├── pom.xml ├── project.properties ├── 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 └── src │ └── com │ └── handmark │ └── pulltorefresh │ └── library │ ├── ILoadingLayout.java │ ├── IPullToRefresh.java │ ├── LoadingLayoutProxy.java │ ├── OverscrollHelper.java │ ├── PullToRefreshAdapterViewBase.java │ ├── PullToRefreshBase.java │ ├── PullToRefreshExpandableListView.java │ ├── PullToRefreshGridView.java │ ├── PullToRefreshHorizontalScrollView.java │ ├── PullToRefreshListView.java │ ├── PullToRefreshRecyclerView.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 ├── pom.xml └── sample ├── AndroidManifest.xml ├── LICENSE ├── assets └── ptr_webview2_sample.html ├── libs └── android-support-v4.jar ├── pom.xml ├── project.properties ├── res ├── drawable-hdpi │ ├── android.png │ └── icon.png ├── drawable-ldpi │ └── icon.png ├── drawable-mdpi │ └── icon.png ├── drawable-nodpi │ └── wallpaper.jpg ├── drawable-xhdpi │ └── android.png ├── drawable │ └── icon.png ├── layout │ ├── activity_ptr_expandable_list.xml │ ├── activity_ptr_grid.xml │ ├── activity_ptr_horizontalscrollview.xml │ ├── activity_ptr_list.xml │ ├── activity_ptr_list_fragment.xml │ ├── activity_ptr_list_in_vp.xml │ ├── activity_ptr_scrollview.xml │ ├── activity_ptr_viewpager.xml │ ├── activity_ptr_webview.xml │ ├── activity_ptr_webview2.xml │ └── layout_listview_in_viewpager.xml ├── raw │ ├── pull_event.mp3 │ ├── refreshing_sound.mp3 │ └── reset_sound.mp3 └── values │ ├── strings.xml │ └── styles.xml └── src └── com └── handmark └── pulltorefresh └── samples ├── LauncherActivity.java ├── PullToRefreshExpandableListActivity.java ├── PullToRefreshGridActivity.java ├── PullToRefreshHorizontalScrollViewActivity.java ├── PullToRefreshListActivity.java ├── PullToRefreshListFragmentActivity.java ├── PullToRefreshListInViewPagerActivity.java ├── PullToRefreshScrollViewActivity.java ├── PullToRefreshViewPagerActivity.java ├── PullToRefreshWebView2Activity.java └── PullToRefreshWebViewActivity.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/README.md -------------------------------------------------------------------------------- /extras/PullToRefreshListFragment/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/extras/PullToRefreshListFragment/AndroidManifest.xml -------------------------------------------------------------------------------- /extras/PullToRefreshListFragment/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/extras/PullToRefreshListFragment/LICENSE -------------------------------------------------------------------------------- /extras/PullToRefreshListFragment/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/extras/PullToRefreshListFragment/libs/android-support-v4.jar -------------------------------------------------------------------------------- /extras/PullToRefreshListFragment/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/extras/PullToRefreshListFragment/pom.xml -------------------------------------------------------------------------------- /extras/PullToRefreshListFragment/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/extras/PullToRefreshListFragment/project.properties -------------------------------------------------------------------------------- /extras/PullToRefreshListFragment/res/layout/need_this_for_maven.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/extras/PullToRefreshListFragment/res/layout/need_this_for_maven.xml -------------------------------------------------------------------------------- /extras/PullToRefreshListFragment/src/com/handmark/pulltorefresh/extras/listfragment/PullToRefreshBaseListFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/extras/PullToRefreshListFragment/src/com/handmark/pulltorefresh/extras/listfragment/PullToRefreshBaseListFragment.java -------------------------------------------------------------------------------- /extras/PullToRefreshListFragment/src/com/handmark/pulltorefresh/extras/listfragment/PullToRefreshExpandableListFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/extras/PullToRefreshListFragment/src/com/handmark/pulltorefresh/extras/listfragment/PullToRefreshExpandableListFragment.java -------------------------------------------------------------------------------- /extras/PullToRefreshListFragment/src/com/handmark/pulltorefresh/extras/listfragment/PullToRefreshListFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/extras/PullToRefreshListFragment/src/com/handmark/pulltorefresh/extras/listfragment/PullToRefreshListFragment.java -------------------------------------------------------------------------------- /extras/PullToRefreshViewPager/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/extras/PullToRefreshViewPager/AndroidManifest.xml -------------------------------------------------------------------------------- /extras/PullToRefreshViewPager/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/extras/PullToRefreshViewPager/ant.properties -------------------------------------------------------------------------------- /extras/PullToRefreshViewPager/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/extras/PullToRefreshViewPager/libs/android-support-v4.jar -------------------------------------------------------------------------------- /extras/PullToRefreshViewPager/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/extras/PullToRefreshViewPager/pom.xml -------------------------------------------------------------------------------- /extras/PullToRefreshViewPager/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/extras/PullToRefreshViewPager/proguard-project.txt -------------------------------------------------------------------------------- /extras/PullToRefreshViewPager/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/extras/PullToRefreshViewPager/project.properties -------------------------------------------------------------------------------- /extras/PullToRefreshViewPager/res/layout/need_this_for_maven.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/extras/PullToRefreshViewPager/res/layout/need_this_for_maven.xml -------------------------------------------------------------------------------- /extras/PullToRefreshViewPager/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/extras/PullToRefreshViewPager/res/values/ids.xml -------------------------------------------------------------------------------- /extras/PullToRefreshViewPager/src/com/handmark/pulltorefresh/extras/viewpager/PullToRefreshViewPager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/extras/PullToRefreshViewPager/src/com/handmark/pulltorefresh/extras/viewpager/PullToRefreshViewPager.java -------------------------------------------------------------------------------- /extras/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/extras/pom.xml -------------------------------------------------------------------------------- /header_graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/header_graphic.png -------------------------------------------------------------------------------- /library/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/AndroidManifest.xml -------------------------------------------------------------------------------- /library/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/LICENSE -------------------------------------------------------------------------------- /library/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/pom.xml -------------------------------------------------------------------------------- /library/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/project.properties -------------------------------------------------------------------------------- /library/res/anim/slide_in_from_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/anim/slide_in_from_bottom.xml -------------------------------------------------------------------------------- /library/res/anim/slide_in_from_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/anim/slide_in_from_top.xml -------------------------------------------------------------------------------- /library/res/anim/slide_out_to_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/anim/slide_out_to_bottom.xml -------------------------------------------------------------------------------- /library/res/anim/slide_out_to_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/anim/slide_out_to_top.xml -------------------------------------------------------------------------------- /library/res/drawable-hdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/drawable-hdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /library/res/drawable-hdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/drawable-hdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /library/res/drawable-hdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/drawable-hdpi/indicator_arrow.png -------------------------------------------------------------------------------- /library/res/drawable-mdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/drawable-mdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /library/res/drawable-mdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/drawable-mdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /library/res/drawable-mdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/drawable-mdpi/indicator_arrow.png -------------------------------------------------------------------------------- /library/res/drawable-xhdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/drawable-xhdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /library/res/drawable-xhdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/drawable-xhdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /library/res/drawable-xhdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/drawable-xhdpi/indicator_arrow.png -------------------------------------------------------------------------------- /library/res/drawable/indicator_bg_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/drawable/indicator_bg_bottom.xml -------------------------------------------------------------------------------- /library/res/drawable/indicator_bg_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/drawable/indicator_bg_top.xml -------------------------------------------------------------------------------- /library/res/layout/pull_to_refresh_header_horizontal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/layout/pull_to_refresh_header_horizontal.xml -------------------------------------------------------------------------------- /library/res/layout/pull_to_refresh_header_vertical.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/layout/pull_to_refresh_header_vertical.xml -------------------------------------------------------------------------------- /library/res/values-ar/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/values-ar/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-cs/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/values-cs/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-de/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/values-de/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-es/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/values-es/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-fi/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/values-fi/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-fr/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/values-fr/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-he/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/values-he/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-it/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/values-it/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-iw/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/values-iw/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-ja/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/values-ja/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-ko/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/values-ko/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-nl/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/values-nl/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-pl/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/values-pl/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-pt-rBR/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/values-pt-rBR/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-pt/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/values-pt/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-ro/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/values-ro/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-ru/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/values-ru/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-zh/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/values-zh/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/values/attrs.xml -------------------------------------------------------------------------------- /library/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/values/dimens.xml -------------------------------------------------------------------------------- /library/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/values/ids.xml -------------------------------------------------------------------------------- /library/res/values/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/res/values/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/src/com/handmark/pulltorefresh/library/ILoadingLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/src/com/handmark/pulltorefresh/library/ILoadingLayout.java -------------------------------------------------------------------------------- /library/src/com/handmark/pulltorefresh/library/IPullToRefresh.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/src/com/handmark/pulltorefresh/library/IPullToRefresh.java -------------------------------------------------------------------------------- /library/src/com/handmark/pulltorefresh/library/LoadingLayoutProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/src/com/handmark/pulltorefresh/library/LoadingLayoutProxy.java -------------------------------------------------------------------------------- /library/src/com/handmark/pulltorefresh/library/OverscrollHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/src/com/handmark/pulltorefresh/library/OverscrollHelper.java -------------------------------------------------------------------------------- /library/src/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/src/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase.java -------------------------------------------------------------------------------- /library/src/com/handmark/pulltorefresh/library/PullToRefreshBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/src/com/handmark/pulltorefresh/library/PullToRefreshBase.java -------------------------------------------------------------------------------- /library/src/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/src/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView.java -------------------------------------------------------------------------------- /library/src/com/handmark/pulltorefresh/library/PullToRefreshGridView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/src/com/handmark/pulltorefresh/library/PullToRefreshGridView.java -------------------------------------------------------------------------------- /library/src/com/handmark/pulltorefresh/library/PullToRefreshHorizontalScrollView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/src/com/handmark/pulltorefresh/library/PullToRefreshHorizontalScrollView.java -------------------------------------------------------------------------------- /library/src/com/handmark/pulltorefresh/library/PullToRefreshListView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/src/com/handmark/pulltorefresh/library/PullToRefreshListView.java -------------------------------------------------------------------------------- /library/src/com/handmark/pulltorefresh/library/PullToRefreshRecyclerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/src/com/handmark/pulltorefresh/library/PullToRefreshRecyclerView.java -------------------------------------------------------------------------------- /library/src/com/handmark/pulltorefresh/library/PullToRefreshScrollView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/src/com/handmark/pulltorefresh/library/PullToRefreshScrollView.java -------------------------------------------------------------------------------- /library/src/com/handmark/pulltorefresh/library/PullToRefreshWebView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/src/com/handmark/pulltorefresh/library/PullToRefreshWebView.java -------------------------------------------------------------------------------- /library/src/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/src/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2.java -------------------------------------------------------------------------------- /library/src/com/handmark/pulltorefresh/library/extras/SoundPullEventListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/src/com/handmark/pulltorefresh/library/extras/SoundPullEventListener.java -------------------------------------------------------------------------------- /library/src/com/handmark/pulltorefresh/library/internal/EmptyViewMethodAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/src/com/handmark/pulltorefresh/library/internal/EmptyViewMethodAccessor.java -------------------------------------------------------------------------------- /library/src/com/handmark/pulltorefresh/library/internal/FlipLoadingLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/src/com/handmark/pulltorefresh/library/internal/FlipLoadingLayout.java -------------------------------------------------------------------------------- /library/src/com/handmark/pulltorefresh/library/internal/IndicatorLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/src/com/handmark/pulltorefresh/library/internal/IndicatorLayout.java -------------------------------------------------------------------------------- /library/src/com/handmark/pulltorefresh/library/internal/LoadingLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/src/com/handmark/pulltorefresh/library/internal/LoadingLayout.java -------------------------------------------------------------------------------- /library/src/com/handmark/pulltorefresh/library/internal/RotateLoadingLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/src/com/handmark/pulltorefresh/library/internal/RotateLoadingLayout.java -------------------------------------------------------------------------------- /library/src/com/handmark/pulltorefresh/library/internal/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/src/com/handmark/pulltorefresh/library/internal/Utils.java -------------------------------------------------------------------------------- /library/src/com/handmark/pulltorefresh/library/internal/ViewCompat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/library/src/com/handmark/pulltorefresh/library/internal/ViewCompat.java -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/pom.xml -------------------------------------------------------------------------------- /sample/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/LICENSE -------------------------------------------------------------------------------- /sample/assets/ptr_webview2_sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/assets/ptr_webview2_sample.html -------------------------------------------------------------------------------- /sample/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/libs/android-support-v4.jar -------------------------------------------------------------------------------- /sample/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/pom.xml -------------------------------------------------------------------------------- /sample/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/project.properties -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/res/drawable-hdpi/android.png -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /sample/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /sample/res/drawable-nodpi/wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/res/drawable-nodpi/wallpaper.jpg -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/res/drawable-xhdpi/android.png -------------------------------------------------------------------------------- /sample/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/res/drawable/icon.png -------------------------------------------------------------------------------- /sample/res/layout/activity_ptr_expandable_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/res/layout/activity_ptr_expandable_list.xml -------------------------------------------------------------------------------- /sample/res/layout/activity_ptr_grid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/res/layout/activity_ptr_grid.xml -------------------------------------------------------------------------------- /sample/res/layout/activity_ptr_horizontalscrollview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/res/layout/activity_ptr_horizontalscrollview.xml -------------------------------------------------------------------------------- /sample/res/layout/activity_ptr_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/res/layout/activity_ptr_list.xml -------------------------------------------------------------------------------- /sample/res/layout/activity_ptr_list_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/res/layout/activity_ptr_list_fragment.xml -------------------------------------------------------------------------------- /sample/res/layout/activity_ptr_list_in_vp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/res/layout/activity_ptr_list_in_vp.xml -------------------------------------------------------------------------------- /sample/res/layout/activity_ptr_scrollview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/res/layout/activity_ptr_scrollview.xml -------------------------------------------------------------------------------- /sample/res/layout/activity_ptr_viewpager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/res/layout/activity_ptr_viewpager.xml -------------------------------------------------------------------------------- /sample/res/layout/activity_ptr_webview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/res/layout/activity_ptr_webview.xml -------------------------------------------------------------------------------- /sample/res/layout/activity_ptr_webview2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/res/layout/activity_ptr_webview2.xml -------------------------------------------------------------------------------- /sample/res/layout/layout_listview_in_viewpager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/res/layout/layout_listview_in_viewpager.xml -------------------------------------------------------------------------------- /sample/res/raw/pull_event.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/res/raw/pull_event.mp3 -------------------------------------------------------------------------------- /sample/res/raw/refreshing_sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/res/raw/refreshing_sound.mp3 -------------------------------------------------------------------------------- /sample/res/raw/reset_sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/res/raw/reset_sound.mp3 -------------------------------------------------------------------------------- /sample/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/res/values/strings.xml -------------------------------------------------------------------------------- /sample/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/res/values/styles.xml -------------------------------------------------------------------------------- /sample/src/com/handmark/pulltorefresh/samples/LauncherActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/src/com/handmark/pulltorefresh/samples/LauncherActivity.java -------------------------------------------------------------------------------- /sample/src/com/handmark/pulltorefresh/samples/PullToRefreshExpandableListActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/src/com/handmark/pulltorefresh/samples/PullToRefreshExpandableListActivity.java -------------------------------------------------------------------------------- /sample/src/com/handmark/pulltorefresh/samples/PullToRefreshGridActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/src/com/handmark/pulltorefresh/samples/PullToRefreshGridActivity.java -------------------------------------------------------------------------------- /sample/src/com/handmark/pulltorefresh/samples/PullToRefreshHorizontalScrollViewActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/src/com/handmark/pulltorefresh/samples/PullToRefreshHorizontalScrollViewActivity.java -------------------------------------------------------------------------------- /sample/src/com/handmark/pulltorefresh/samples/PullToRefreshListActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/src/com/handmark/pulltorefresh/samples/PullToRefreshListActivity.java -------------------------------------------------------------------------------- /sample/src/com/handmark/pulltorefresh/samples/PullToRefreshListFragmentActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/src/com/handmark/pulltorefresh/samples/PullToRefreshListFragmentActivity.java -------------------------------------------------------------------------------- /sample/src/com/handmark/pulltorefresh/samples/PullToRefreshListInViewPagerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/src/com/handmark/pulltorefresh/samples/PullToRefreshListInViewPagerActivity.java -------------------------------------------------------------------------------- /sample/src/com/handmark/pulltorefresh/samples/PullToRefreshScrollViewActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/src/com/handmark/pulltorefresh/samples/PullToRefreshScrollViewActivity.java -------------------------------------------------------------------------------- /sample/src/com/handmark/pulltorefresh/samples/PullToRefreshViewPagerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/src/com/handmark/pulltorefresh/samples/PullToRefreshViewPagerActivity.java -------------------------------------------------------------------------------- /sample/src/com/handmark/pulltorefresh/samples/PullToRefreshWebView2Activity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/src/com/handmark/pulltorefresh/samples/PullToRefreshWebView2Activity.java -------------------------------------------------------------------------------- /sample/src/com/handmark/pulltorefresh/samples/PullToRefreshWebViewActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkmeteor/Android-PullToRefresh-RecyclerView-Extention/HEAD/sample/src/com/handmark/pulltorefresh/samples/PullToRefreshWebViewActivity.java --------------------------------------------------------------------------------