├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── BeautifulRefreshLayout.iml ├── README.md ├── app ├── .gitignore ├── app.iml ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── cjj │ │ └── beautifulrefreshlayout │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── cjj │ │ └── beautifulrefreshlayout │ │ ├── MainActivity.java │ │ ├── MainApplication.java │ │ └── SampleListFragment.java │ └── res │ ├── drawable-hdpi │ ├── bb.jpg │ ├── cc.jpg │ ├── ic_dashboard.png │ ├── ic_discuss.png │ ├── ic_done.png │ ├── ic_event.png │ ├── ic_forum.png │ ├── ic_headset.png │ └── ic_menu.png │ ├── layout │ ├── activity_main.xml │ ├── fragment_list.xml │ ├── fragment_test.xml │ ├── include_list_viewpager.xml │ ├── list_item.xml │ └── nav_header.xml │ ├── menu │ ├── drawer_view.xml │ └── menu_main.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── values-v19 │ └── theme.xml │ ├── values-v21 │ └── theme.xml │ ├── values-w820dp │ └── dimens.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ ├── styles.xml │ └── theme.xml ├── beautifulrefreshlibrary ├── .gitignore ├── beautifulrefreshlibrary.iml ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── cjj │ │ └── refresh │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── cjj │ │ └── refresh │ │ ├── BeautifulRefreshLayout.java │ │ ├── DensityUtil.java │ │ ├── PullToRefreshListener.java │ │ ├── PullWaveListener.java │ │ ├── Rain.java │ │ ├── RainView.java │ │ ├── RefreshLayout.java │ │ ├── RippleView.java │ │ ├── RoundDotView.java │ │ ├── RoundProgressView.java │ │ └── WaveView.java │ └── res │ ├── drawable │ └── gg.jpg │ ├── layout │ └── view_head.xml │ └── values │ ├── colors.xml │ └── strings.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | BeautifulRefreshLayout -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /BeautifulRefreshLayout.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/BeautifulRefreshLayout.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/cjj/beautifulrefreshlayout/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/androidTest/java/com/cjj/beautifulrefreshlayout/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/cjj/beautifulrefreshlayout/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/java/com/cjj/beautifulrefreshlayout/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/cjj/beautifulrefreshlayout/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/java/com/cjj/beautifulrefreshlayout/MainApplication.java -------------------------------------------------------------------------------- /app/src/main/java/com/cjj/beautifulrefreshlayout/SampleListFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/java/com/cjj/beautifulrefreshlayout/SampleListFragment.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/bb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/drawable-hdpi/bb.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/cc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/drawable-hdpi/cc.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/drawable-hdpi/ic_dashboard.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_discuss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/drawable-hdpi/ic_discuss.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/drawable-hdpi/ic_done.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/drawable-hdpi/ic_event.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/drawable-hdpi/ic_forum.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_headset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/drawable-hdpi/ic_headset.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/drawable-hdpi/ic_menu.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/layout/fragment_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/layout/fragment_test.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/include_list_viewpager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/layout/include_list_viewpager.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/layout/list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/nav_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/layout/nav_header.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/drawer_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/menu/drawer_view.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-v19/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/values-v19/theme.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v21/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/values-v21/theme.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/app/src/main/res/values/theme.xml -------------------------------------------------------------------------------- /beautifulrefreshlibrary/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /beautifulrefreshlibrary/beautifulrefreshlibrary.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/beautifulrefreshlibrary/beautifulrefreshlibrary.iml -------------------------------------------------------------------------------- /beautifulrefreshlibrary/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/beautifulrefreshlibrary/build.gradle -------------------------------------------------------------------------------- /beautifulrefreshlibrary/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/beautifulrefreshlibrary/proguard-rules.pro -------------------------------------------------------------------------------- /beautifulrefreshlibrary/src/androidTest/java/com/cjj/refresh/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/beautifulrefreshlibrary/src/androidTest/java/com/cjj/refresh/ApplicationTest.java -------------------------------------------------------------------------------- /beautifulrefreshlibrary/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/beautifulrefreshlibrary/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /beautifulrefreshlibrary/src/main/java/com/cjj/refresh/BeautifulRefreshLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/beautifulrefreshlibrary/src/main/java/com/cjj/refresh/BeautifulRefreshLayout.java -------------------------------------------------------------------------------- /beautifulrefreshlibrary/src/main/java/com/cjj/refresh/DensityUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/beautifulrefreshlibrary/src/main/java/com/cjj/refresh/DensityUtil.java -------------------------------------------------------------------------------- /beautifulrefreshlibrary/src/main/java/com/cjj/refresh/PullToRefreshListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/beautifulrefreshlibrary/src/main/java/com/cjj/refresh/PullToRefreshListener.java -------------------------------------------------------------------------------- /beautifulrefreshlibrary/src/main/java/com/cjj/refresh/PullWaveListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/beautifulrefreshlibrary/src/main/java/com/cjj/refresh/PullWaveListener.java -------------------------------------------------------------------------------- /beautifulrefreshlibrary/src/main/java/com/cjj/refresh/Rain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/beautifulrefreshlibrary/src/main/java/com/cjj/refresh/Rain.java -------------------------------------------------------------------------------- /beautifulrefreshlibrary/src/main/java/com/cjj/refresh/RainView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/beautifulrefreshlibrary/src/main/java/com/cjj/refresh/RainView.java -------------------------------------------------------------------------------- /beautifulrefreshlibrary/src/main/java/com/cjj/refresh/RefreshLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/beautifulrefreshlibrary/src/main/java/com/cjj/refresh/RefreshLayout.java -------------------------------------------------------------------------------- /beautifulrefreshlibrary/src/main/java/com/cjj/refresh/RippleView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/beautifulrefreshlibrary/src/main/java/com/cjj/refresh/RippleView.java -------------------------------------------------------------------------------- /beautifulrefreshlibrary/src/main/java/com/cjj/refresh/RoundDotView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/beautifulrefreshlibrary/src/main/java/com/cjj/refresh/RoundDotView.java -------------------------------------------------------------------------------- /beautifulrefreshlibrary/src/main/java/com/cjj/refresh/RoundProgressView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/beautifulrefreshlibrary/src/main/java/com/cjj/refresh/RoundProgressView.java -------------------------------------------------------------------------------- /beautifulrefreshlibrary/src/main/java/com/cjj/refresh/WaveView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/beautifulrefreshlibrary/src/main/java/com/cjj/refresh/WaveView.java -------------------------------------------------------------------------------- /beautifulrefreshlibrary/src/main/res/drawable/gg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/beautifulrefreshlibrary/src/main/res/drawable/gg.jpg -------------------------------------------------------------------------------- /beautifulrefreshlibrary/src/main/res/layout/view_head.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/beautifulrefreshlibrary/src/main/res/layout/view_head.xml -------------------------------------------------------------------------------- /beautifulrefreshlibrary/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/beautifulrefreshlibrary/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /beautifulrefreshlibrary/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/beautifulrefreshlibrary/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/BeautifulRefreshLayout/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':beautifulrefreshlibrary' 2 | --------------------------------------------------------------------------------