├── .gitignore ├── LICENSE ├── README.md ├── downloads └── sample-3.0.0.apk ├── extras ├── PullToRefreshListFragment │ ├── AndroidManifest.xml │ ├── LICENSE │ ├── build.gradle │ ├── 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 │ ├── build.gradle │ ├── 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 ├── gradle.properties ├── header_graphic.png ├── library ├── AndroidManifest.xml ├── LICENSE ├── build.gradle ├── 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 │ │ ├── progress_bg_holo_light.9.png │ │ ├── progress_primary_holo_light.9.png │ │ ├── progress_secondary_holo_light.9.png │ │ ├── progressbar_indeterminate_holo1.png │ │ ├── progressbar_indeterminate_holo2.png │ │ ├── progressbar_indeterminate_holo3.png │ │ ├── progressbar_indeterminate_holo4.png │ │ ├── progressbar_indeterminate_holo5.png │ │ ├── progressbar_indeterminate_holo6.png │ │ ├── progressbar_indeterminate_holo7.png │ │ └── progressbar_indeterminate_holo8.png │ ├── drawable-mdpi │ │ ├── default_ptr_flip.png │ │ ├── default_ptr_rotate.png │ │ ├── indicator_arrow.png │ │ ├── progress_bg_holo_light.9.png │ │ ├── progress_primary_holo_light.9.png │ │ ├── progress_secondary_holo_light.9.png │ │ ├── progressbar_indeterminate_holo1.png │ │ ├── progressbar_indeterminate_holo2.png │ │ ├── progressbar_indeterminate_holo3.png │ │ ├── progressbar_indeterminate_holo4.png │ │ ├── progressbar_indeterminate_holo5.png │ │ ├── progressbar_indeterminate_holo6.png │ │ ├── progressbar_indeterminate_holo7.png │ │ └── progressbar_indeterminate_holo8.png │ ├── drawable-xhdpi │ │ ├── default_ptr_flip.png │ │ ├── default_ptr_rotate.png │ │ ├── indicator_arrow.png │ │ ├── progress_bg_holo_light.9.png │ │ ├── progress_primary_holo_light.9.png │ │ ├── progress_secondary_holo_light.9.png │ │ ├── progressbar_indeterminate_holo1.png │ │ ├── progressbar_indeterminate_holo2.png │ │ ├── progressbar_indeterminate_holo3.png │ │ ├── progressbar_indeterminate_holo4.png │ │ ├── progressbar_indeterminate_holo5.png │ │ ├── progressbar_indeterminate_holo6.png │ │ ├── progressbar_indeterminate_holo7.png │ │ └── progressbar_indeterminate_holo8.png │ ├── drawable │ │ ├── indicator_bg_bottom.xml │ │ ├── indicator_bg_top.xml │ │ ├── progress_horizontal_holo_light.xml │ │ ├── progress_horizontal_holo_light_right.xml │ │ └── progress_indeterminate_horizontal_holo.xml │ ├── layout │ │ ├── pull_to_refresh_header_google_style.xml │ │ ├── pull_to_refresh_header_horizontal.xml │ │ ├── pull_to_refresh_header_vertical.xml │ │ ├── pull_to_refresh_progress_google_style.xml │ │ └── pulling_progress_layout.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 │ └── xml │ │ └── pulltorefresh.xml └── src │ └── main │ └── java │ └── com │ └── handmark │ └── pulltorefresh │ ├── configuration │ └── xml │ │ ├── ExtendedXmlConfigParserFactory.java │ │ ├── PullToRefreshConfigXmlParser.java │ │ ├── PullToRefreshNode.java │ │ ├── PullToRefreshXmlConfiguration.java │ │ ├── XmlPullNode.java │ │ ├── XmlPullNodeParser.java │ │ └── XmlPullParserWrapper.java │ └── library │ ├── AlphaAnimator.java │ ├── GoogleStyleProgressLayout.java │ ├── GoogleStyleProgressLayoutFactory.java │ ├── GoogleStyleViewLayout.java │ ├── GoogleStyleViewLayoutFactory.java │ ├── IGoogleStyleProgressLayout.java │ ├── IGoogleStyleViewLayout.java │ ├── IIndicatorLayout.java │ ├── ILoadingLayout.java │ ├── IPullToRefresh.java │ ├── IPullToRefreshConsumer.java │ ├── IndicatorLayoutFactory.java │ ├── LoadingLayoutFactory.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 │ ├── AbstractDefaultGoogleStyleViewLayout.java │ ├── Assert.java │ ├── DefaultGoogleStyleProgressLayout.java │ ├── DefaultGoogleStyleViewLayout.java │ ├── DefaultIndicatorLayout.java │ ├── EmptyViewMethodAccessor.java │ ├── FlipLoadingLayout.java │ ├── FlippedProgressBar.java │ ├── IndicatorLayout.java │ ├── LoadingLayout.java │ ├── PullingProgressLayout.java │ ├── RotateLoadingLayout.java │ ├── Utils.java │ └── ViewCompat.java ├── pom.xml ├── sample ├── AndroidManifest.xml ├── LICENSE ├── assets │ ├── ptr_webview2_sample.html │ └── pulltorefresh.xml ├── 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_custom_loadinglayout.xml │ │ ├── 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 │ ├── PullToRefreshCustomLoadingLayoutActivity.java │ ├── PullToRefreshExpandableListActivity.java │ ├── PullToRefreshGridActivity.java │ ├── PullToRefreshHorizontalScrollViewActivity.java │ ├── PullToRefreshListActivity.java │ ├── PullToRefreshListFragmentActivity.java │ ├── PullToRefreshListInViewPagerActivity.java │ ├── PullToRefreshScrollViewActivity.java │ ├── PullToRefreshViewPagerActivity.java │ ├── PullToRefreshWebView2Activity.java │ ├── PullToRefreshWebViewActivity.java │ └── loadinglayout │ └── CustomLoadingLayout.java └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/README.md -------------------------------------------------------------------------------- /downloads/sample-3.0.0.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/downloads/sample-3.0.0.apk -------------------------------------------------------------------------------- /extras/PullToRefreshListFragment/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/extras/PullToRefreshListFragment/AndroidManifest.xml -------------------------------------------------------------------------------- /extras/PullToRefreshListFragment/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/extras/PullToRefreshListFragment/LICENSE -------------------------------------------------------------------------------- /extras/PullToRefreshListFragment/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/extras/PullToRefreshListFragment/build.gradle -------------------------------------------------------------------------------- /extras/PullToRefreshListFragment/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/extras/PullToRefreshListFragment/libs/android-support-v4.jar -------------------------------------------------------------------------------- /extras/PullToRefreshListFragment/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/extras/PullToRefreshListFragment/pom.xml -------------------------------------------------------------------------------- /extras/PullToRefreshListFragment/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/extras/PullToRefreshListFragment/project.properties -------------------------------------------------------------------------------- /extras/PullToRefreshListFragment/res/layout/need_this_for_maven.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/extras/PullToRefreshListFragment/res/layout/need_this_for_maven.xml -------------------------------------------------------------------------------- /extras/PullToRefreshListFragment/src/com/handmark/pulltorefresh/extras/listfragment/PullToRefreshBaseListFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/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/naver/android-pull-to-refresh/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/naver/android-pull-to-refresh/HEAD/extras/PullToRefreshListFragment/src/com/handmark/pulltorefresh/extras/listfragment/PullToRefreshListFragment.java -------------------------------------------------------------------------------- /extras/PullToRefreshViewPager/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/extras/PullToRefreshViewPager/AndroidManifest.xml -------------------------------------------------------------------------------- /extras/PullToRefreshViewPager/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/extras/PullToRefreshViewPager/ant.properties -------------------------------------------------------------------------------- /extras/PullToRefreshViewPager/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/extras/PullToRefreshViewPager/build.gradle -------------------------------------------------------------------------------- /extras/PullToRefreshViewPager/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/extras/PullToRefreshViewPager/libs/android-support-v4.jar -------------------------------------------------------------------------------- /extras/PullToRefreshViewPager/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/extras/PullToRefreshViewPager/pom.xml -------------------------------------------------------------------------------- /extras/PullToRefreshViewPager/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/extras/PullToRefreshViewPager/proguard-project.txt -------------------------------------------------------------------------------- /extras/PullToRefreshViewPager/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/extras/PullToRefreshViewPager/project.properties -------------------------------------------------------------------------------- /extras/PullToRefreshViewPager/res/layout/need_this_for_maven.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/extras/PullToRefreshViewPager/res/layout/need_this_for_maven.xml -------------------------------------------------------------------------------- /extras/PullToRefreshViewPager/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/extras/PullToRefreshViewPager/res/values/ids.xml -------------------------------------------------------------------------------- /extras/PullToRefreshViewPager/src/com/handmark/pulltorefresh/extras/viewpager/PullToRefreshViewPager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/extras/PullToRefreshViewPager/src/com/handmark/pulltorefresh/extras/viewpager/PullToRefreshViewPager.java -------------------------------------------------------------------------------- /extras/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/extras/pom.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/gradle.properties -------------------------------------------------------------------------------- /header_graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/header_graphic.png -------------------------------------------------------------------------------- /library/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/AndroidManifest.xml -------------------------------------------------------------------------------- /library/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/LICENSE -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/pom.xml -------------------------------------------------------------------------------- /library/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/project.properties -------------------------------------------------------------------------------- /library/res/anim/slide_in_from_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/anim/slide_in_from_bottom.xml -------------------------------------------------------------------------------- /library/res/anim/slide_in_from_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/anim/slide_in_from_top.xml -------------------------------------------------------------------------------- /library/res/anim/slide_out_to_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/anim/slide_out_to_bottom.xml -------------------------------------------------------------------------------- /library/res/anim/slide_out_to_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/anim/slide_out_to_top.xml -------------------------------------------------------------------------------- /library/res/drawable-hdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-hdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /library/res/drawable-hdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-hdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /library/res/drawable-hdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-hdpi/indicator_arrow.png -------------------------------------------------------------------------------- /library/res/drawable-hdpi/progress_bg_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-hdpi/progress_bg_holo_light.9.png -------------------------------------------------------------------------------- /library/res/drawable-hdpi/progress_primary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-hdpi/progress_primary_holo_light.9.png -------------------------------------------------------------------------------- /library/res/drawable-hdpi/progress_secondary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-hdpi/progress_secondary_holo_light.9.png -------------------------------------------------------------------------------- /library/res/drawable-hdpi/progressbar_indeterminate_holo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-hdpi/progressbar_indeterminate_holo1.png -------------------------------------------------------------------------------- /library/res/drawable-hdpi/progressbar_indeterminate_holo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-hdpi/progressbar_indeterminate_holo2.png -------------------------------------------------------------------------------- /library/res/drawable-hdpi/progressbar_indeterminate_holo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-hdpi/progressbar_indeterminate_holo3.png -------------------------------------------------------------------------------- /library/res/drawable-hdpi/progressbar_indeterminate_holo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-hdpi/progressbar_indeterminate_holo4.png -------------------------------------------------------------------------------- /library/res/drawable-hdpi/progressbar_indeterminate_holo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-hdpi/progressbar_indeterminate_holo5.png -------------------------------------------------------------------------------- /library/res/drawable-hdpi/progressbar_indeterminate_holo6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-hdpi/progressbar_indeterminate_holo6.png -------------------------------------------------------------------------------- /library/res/drawable-hdpi/progressbar_indeterminate_holo7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-hdpi/progressbar_indeterminate_holo7.png -------------------------------------------------------------------------------- /library/res/drawable-hdpi/progressbar_indeterminate_holo8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-hdpi/progressbar_indeterminate_holo8.png -------------------------------------------------------------------------------- /library/res/drawable-mdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-mdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /library/res/drawable-mdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-mdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /library/res/drawable-mdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-mdpi/indicator_arrow.png -------------------------------------------------------------------------------- /library/res/drawable-mdpi/progress_bg_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-mdpi/progress_bg_holo_light.9.png -------------------------------------------------------------------------------- /library/res/drawable-mdpi/progress_primary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-mdpi/progress_primary_holo_light.9.png -------------------------------------------------------------------------------- /library/res/drawable-mdpi/progress_secondary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-mdpi/progress_secondary_holo_light.9.png -------------------------------------------------------------------------------- /library/res/drawable-mdpi/progressbar_indeterminate_holo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-mdpi/progressbar_indeterminate_holo1.png -------------------------------------------------------------------------------- /library/res/drawable-mdpi/progressbar_indeterminate_holo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-mdpi/progressbar_indeterminate_holo2.png -------------------------------------------------------------------------------- /library/res/drawable-mdpi/progressbar_indeterminate_holo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-mdpi/progressbar_indeterminate_holo3.png -------------------------------------------------------------------------------- /library/res/drawable-mdpi/progressbar_indeterminate_holo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-mdpi/progressbar_indeterminate_holo4.png -------------------------------------------------------------------------------- /library/res/drawable-mdpi/progressbar_indeterminate_holo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-mdpi/progressbar_indeterminate_holo5.png -------------------------------------------------------------------------------- /library/res/drawable-mdpi/progressbar_indeterminate_holo6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-mdpi/progressbar_indeterminate_holo6.png -------------------------------------------------------------------------------- /library/res/drawable-mdpi/progressbar_indeterminate_holo7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-mdpi/progressbar_indeterminate_holo7.png -------------------------------------------------------------------------------- /library/res/drawable-mdpi/progressbar_indeterminate_holo8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-mdpi/progressbar_indeterminate_holo8.png -------------------------------------------------------------------------------- /library/res/drawable-xhdpi/default_ptr_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-xhdpi/default_ptr_flip.png -------------------------------------------------------------------------------- /library/res/drawable-xhdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-xhdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /library/res/drawable-xhdpi/indicator_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-xhdpi/indicator_arrow.png -------------------------------------------------------------------------------- /library/res/drawable-xhdpi/progress_bg_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-xhdpi/progress_bg_holo_light.9.png -------------------------------------------------------------------------------- /library/res/drawable-xhdpi/progress_primary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-xhdpi/progress_primary_holo_light.9.png -------------------------------------------------------------------------------- /library/res/drawable-xhdpi/progress_secondary_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-xhdpi/progress_secondary_holo_light.9.png -------------------------------------------------------------------------------- /library/res/drawable-xhdpi/progressbar_indeterminate_holo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-xhdpi/progressbar_indeterminate_holo1.png -------------------------------------------------------------------------------- /library/res/drawable-xhdpi/progressbar_indeterminate_holo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-xhdpi/progressbar_indeterminate_holo2.png -------------------------------------------------------------------------------- /library/res/drawable-xhdpi/progressbar_indeterminate_holo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-xhdpi/progressbar_indeterminate_holo3.png -------------------------------------------------------------------------------- /library/res/drawable-xhdpi/progressbar_indeterminate_holo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-xhdpi/progressbar_indeterminate_holo4.png -------------------------------------------------------------------------------- /library/res/drawable-xhdpi/progressbar_indeterminate_holo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-xhdpi/progressbar_indeterminate_holo5.png -------------------------------------------------------------------------------- /library/res/drawable-xhdpi/progressbar_indeterminate_holo6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-xhdpi/progressbar_indeterminate_holo6.png -------------------------------------------------------------------------------- /library/res/drawable-xhdpi/progressbar_indeterminate_holo7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-xhdpi/progressbar_indeterminate_holo7.png -------------------------------------------------------------------------------- /library/res/drawable-xhdpi/progressbar_indeterminate_holo8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable-xhdpi/progressbar_indeterminate_holo8.png -------------------------------------------------------------------------------- /library/res/drawable/indicator_bg_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable/indicator_bg_bottom.xml -------------------------------------------------------------------------------- /library/res/drawable/indicator_bg_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable/indicator_bg_top.xml -------------------------------------------------------------------------------- /library/res/drawable/progress_horizontal_holo_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable/progress_horizontal_holo_light.xml -------------------------------------------------------------------------------- /library/res/drawable/progress_horizontal_holo_light_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable/progress_horizontal_holo_light_right.xml -------------------------------------------------------------------------------- /library/res/drawable/progress_indeterminate_horizontal_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/drawable/progress_indeterminate_horizontal_holo.xml -------------------------------------------------------------------------------- /library/res/layout/pull_to_refresh_header_google_style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/layout/pull_to_refresh_header_google_style.xml -------------------------------------------------------------------------------- /library/res/layout/pull_to_refresh_header_horizontal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/layout/pull_to_refresh_header_horizontal.xml -------------------------------------------------------------------------------- /library/res/layout/pull_to_refresh_header_vertical.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/layout/pull_to_refresh_header_vertical.xml -------------------------------------------------------------------------------- /library/res/layout/pull_to_refresh_progress_google_style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/layout/pull_to_refresh_progress_google_style.xml -------------------------------------------------------------------------------- /library/res/layout/pulling_progress_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/layout/pulling_progress_layout.xml -------------------------------------------------------------------------------- /library/res/values-ar/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/values-ar/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-cs/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/values-cs/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-de/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/values-de/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-es/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/values-es/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-fi/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/values-fi/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-fr/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/values-fr/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-he/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/values-he/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-it/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/values-it/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-iw/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/values-iw/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-ja/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/values-ja/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-ko/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/values-ko/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-nl/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/values-nl/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-pl/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/values-pl/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-pt-rBR/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/values-pt-rBR/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-pt/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/values-pt/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-ro/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/values-ro/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-ru/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/values-ru/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values-zh/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/values-zh/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/values/attrs.xml -------------------------------------------------------------------------------- /library/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/values/dimens.xml -------------------------------------------------------------------------------- /library/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/values/ids.xml -------------------------------------------------------------------------------- /library/res/values/pull_refresh_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/values/pull_refresh_strings.xml -------------------------------------------------------------------------------- /library/res/xml/pulltorefresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/res/xml/pulltorefresh.xml -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/configuration/xml/ExtendedXmlConfigParserFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/configuration/xml/ExtendedXmlConfigParserFactory.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/configuration/xml/PullToRefreshConfigXmlParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/configuration/xml/PullToRefreshConfigXmlParser.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/configuration/xml/PullToRefreshNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/configuration/xml/PullToRefreshNode.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/configuration/xml/PullToRefreshXmlConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/configuration/xml/PullToRefreshXmlConfiguration.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/configuration/xml/XmlPullNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/configuration/xml/XmlPullNode.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/configuration/xml/XmlPullNodeParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/configuration/xml/XmlPullNodeParser.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/configuration/xml/XmlPullParserWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/configuration/xml/XmlPullParserWrapper.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/AlphaAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/AlphaAnimator.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/GoogleStyleProgressLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/GoogleStyleProgressLayout.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/GoogleStyleProgressLayoutFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/GoogleStyleProgressLayoutFactory.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/GoogleStyleViewLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/GoogleStyleViewLayout.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/GoogleStyleViewLayoutFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/GoogleStyleViewLayoutFactory.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/IGoogleStyleProgressLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/IGoogleStyleProgressLayout.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/IGoogleStyleViewLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/IGoogleStyleViewLayout.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/IIndicatorLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/IIndicatorLayout.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/ILoadingLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/ILoadingLayout.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/IPullToRefresh.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/IPullToRefresh.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/IPullToRefreshConsumer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/IPullToRefreshConsumer.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/IndicatorLayoutFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/IndicatorLayoutFactory.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/LoadingLayoutFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/LoadingLayoutFactory.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/LoadingLayoutProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/LoadingLayoutProxy.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/OverscrollHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/OverscrollHelper.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshAdapterViewBase.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshBase.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshExpandableListView.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshGridView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshGridView.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshHorizontalScrollView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshHorizontalScrollView.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshListView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshListView.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshScrollView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshScrollView.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshWebView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/PullToRefreshWebView.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/extras/PullToRefreshWebView2.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/extras/SoundPullEventListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/extras/SoundPullEventListener.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/internal/AbstractDefaultGoogleStyleViewLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/internal/AbstractDefaultGoogleStyleViewLayout.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/internal/Assert.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/internal/Assert.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/internal/DefaultGoogleStyleProgressLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/internal/DefaultGoogleStyleProgressLayout.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/internal/DefaultGoogleStyleViewLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/internal/DefaultGoogleStyleViewLayout.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/internal/DefaultIndicatorLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/internal/DefaultIndicatorLayout.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/internal/EmptyViewMethodAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/internal/EmptyViewMethodAccessor.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/internal/FlipLoadingLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/internal/FlipLoadingLayout.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/internal/FlippedProgressBar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/internal/FlippedProgressBar.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/internal/IndicatorLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/internal/IndicatorLayout.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/internal/LoadingLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/internal/LoadingLayout.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/internal/PullingProgressLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/internal/PullingProgressLayout.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/internal/RotateLoadingLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/internal/RotateLoadingLayout.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/internal/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/internal/Utils.java -------------------------------------------------------------------------------- /library/src/main/java/com/handmark/pulltorefresh/library/internal/ViewCompat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/library/src/main/java/com/handmark/pulltorefresh/library/internal/ViewCompat.java -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/pom.xml -------------------------------------------------------------------------------- /sample/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/LICENSE -------------------------------------------------------------------------------- /sample/assets/ptr_webview2_sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/assets/ptr_webview2_sample.html -------------------------------------------------------------------------------- /sample/assets/pulltorefresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/assets/pulltorefresh.xml -------------------------------------------------------------------------------- /sample/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/libs/android-support-v4.jar -------------------------------------------------------------------------------- /sample/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/pom.xml -------------------------------------------------------------------------------- /sample/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/project.properties -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/res/drawable-hdpi/android.png -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /sample/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /sample/res/drawable-nodpi/wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/res/drawable-nodpi/wallpaper.jpg -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/res/drawable-xhdpi/android.png -------------------------------------------------------------------------------- /sample/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/res/drawable/icon.png -------------------------------------------------------------------------------- /sample/res/layout/activity_ptr_custom_loadinglayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/res/layout/activity_ptr_custom_loadinglayout.xml -------------------------------------------------------------------------------- /sample/res/layout/activity_ptr_expandable_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/res/layout/activity_ptr_expandable_list.xml -------------------------------------------------------------------------------- /sample/res/layout/activity_ptr_grid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/res/layout/activity_ptr_grid.xml -------------------------------------------------------------------------------- /sample/res/layout/activity_ptr_horizontalscrollview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/res/layout/activity_ptr_horizontalscrollview.xml -------------------------------------------------------------------------------- /sample/res/layout/activity_ptr_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/res/layout/activity_ptr_list.xml -------------------------------------------------------------------------------- /sample/res/layout/activity_ptr_list_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/res/layout/activity_ptr_list_fragment.xml -------------------------------------------------------------------------------- /sample/res/layout/activity_ptr_list_in_vp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/res/layout/activity_ptr_list_in_vp.xml -------------------------------------------------------------------------------- /sample/res/layout/activity_ptr_scrollview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/res/layout/activity_ptr_scrollview.xml -------------------------------------------------------------------------------- /sample/res/layout/activity_ptr_viewpager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/res/layout/activity_ptr_viewpager.xml -------------------------------------------------------------------------------- /sample/res/layout/activity_ptr_webview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/res/layout/activity_ptr_webview.xml -------------------------------------------------------------------------------- /sample/res/layout/activity_ptr_webview2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/res/layout/activity_ptr_webview2.xml -------------------------------------------------------------------------------- /sample/res/layout/layout_listview_in_viewpager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/res/layout/layout_listview_in_viewpager.xml -------------------------------------------------------------------------------- /sample/res/raw/pull_event.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/res/raw/pull_event.mp3 -------------------------------------------------------------------------------- /sample/res/raw/refreshing_sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/res/raw/refreshing_sound.mp3 -------------------------------------------------------------------------------- /sample/res/raw/reset_sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/res/raw/reset_sound.mp3 -------------------------------------------------------------------------------- /sample/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/res/values/strings.xml -------------------------------------------------------------------------------- /sample/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/res/values/styles.xml -------------------------------------------------------------------------------- /sample/src/com/handmark/pulltorefresh/samples/LauncherActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/src/com/handmark/pulltorefresh/samples/LauncherActivity.java -------------------------------------------------------------------------------- /sample/src/com/handmark/pulltorefresh/samples/PullToRefreshCustomLoadingLayoutActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/src/com/handmark/pulltorefresh/samples/PullToRefreshCustomLoadingLayoutActivity.java -------------------------------------------------------------------------------- /sample/src/com/handmark/pulltorefresh/samples/PullToRefreshExpandableListActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/src/com/handmark/pulltorefresh/samples/PullToRefreshExpandableListActivity.java -------------------------------------------------------------------------------- /sample/src/com/handmark/pulltorefresh/samples/PullToRefreshGridActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/src/com/handmark/pulltorefresh/samples/PullToRefreshGridActivity.java -------------------------------------------------------------------------------- /sample/src/com/handmark/pulltorefresh/samples/PullToRefreshHorizontalScrollViewActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/src/com/handmark/pulltorefresh/samples/PullToRefreshHorizontalScrollViewActivity.java -------------------------------------------------------------------------------- /sample/src/com/handmark/pulltorefresh/samples/PullToRefreshListActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/src/com/handmark/pulltorefresh/samples/PullToRefreshListActivity.java -------------------------------------------------------------------------------- /sample/src/com/handmark/pulltorefresh/samples/PullToRefreshListFragmentActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/src/com/handmark/pulltorefresh/samples/PullToRefreshListFragmentActivity.java -------------------------------------------------------------------------------- /sample/src/com/handmark/pulltorefresh/samples/PullToRefreshListInViewPagerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/src/com/handmark/pulltorefresh/samples/PullToRefreshListInViewPagerActivity.java -------------------------------------------------------------------------------- /sample/src/com/handmark/pulltorefresh/samples/PullToRefreshScrollViewActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/src/com/handmark/pulltorefresh/samples/PullToRefreshScrollViewActivity.java -------------------------------------------------------------------------------- /sample/src/com/handmark/pulltorefresh/samples/PullToRefreshViewPagerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/src/com/handmark/pulltorefresh/samples/PullToRefreshViewPagerActivity.java -------------------------------------------------------------------------------- /sample/src/com/handmark/pulltorefresh/samples/PullToRefreshWebView2Activity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/src/com/handmark/pulltorefresh/samples/PullToRefreshWebView2Activity.java -------------------------------------------------------------------------------- /sample/src/com/handmark/pulltorefresh/samples/PullToRefreshWebViewActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/src/com/handmark/pulltorefresh/samples/PullToRefreshWebViewActivity.java -------------------------------------------------------------------------------- /sample/src/com/handmark/pulltorefresh/samples/loadinglayout/CustomLoadingLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/sample/src/com/handmark/pulltorefresh/samples/loadinglayout/CustomLoadingLayout.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naver/android-pull-to-refresh/HEAD/settings.gradle --------------------------------------------------------------------------------