├── .gitignore ├── LICENSE ├── README.md ├── Sample ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── dreamgyf │ │ └── android │ │ └── ui │ │ └── widget │ │ └── swipe │ │ ├── MainActivity.kt │ │ └── RvAdapter.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_background.xml │ ├── layout │ └── activity_main.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-mdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── values-night │ └── themes.xml │ └── values │ ├── colors.xml │ ├── strings.xml │ └── themes.xml ├── SwipeLoadingLayout.gif ├── SwipeLoadingLayout ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── dreamgyf │ │ └── android │ │ └── ui │ │ └── widget │ │ └── swipe │ │ ├── DefaultSwipeLoadingEndView.kt │ │ ├── DefaultSwipeLoadingLoadMoreView.kt │ │ ├── DefaultSwipeLoadingRefreshView.kt │ │ ├── SwipeLoadingAssistView.kt │ │ └── SwipeLoadingLayout.kt │ └── res │ ├── drawable-xxhdpi │ └── ic_loading_20px_black.png │ └── values │ └── attrs.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/README.md -------------------------------------------------------------------------------- /Sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/Sample/build.gradle -------------------------------------------------------------------------------- /Sample/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/Sample/proguard-rules.pro -------------------------------------------------------------------------------- /Sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/Sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Sample/src/main/java/com/dreamgyf/android/ui/widget/swipe/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/Sample/src/main/java/com/dreamgyf/android/ui/widget/swipe/MainActivity.kt -------------------------------------------------------------------------------- /Sample/src/main/java/com/dreamgyf/android/ui/widget/swipe/RvAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/Sample/src/main/java/com/dreamgyf/android/ui/widget/swipe/RvAdapter.kt -------------------------------------------------------------------------------- /Sample/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/Sample/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /Sample/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/Sample/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /Sample/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/Sample/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/Sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/Sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /Sample/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/Sample/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sample/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/Sample/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sample/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/Sample/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sample/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/Sample/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sample/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/Sample/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sample/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/Sample/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sample/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/Sample/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/Sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sample/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/Sample/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /Sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/Sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /Sample/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/Sample/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /Sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/Sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/Sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Sample/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/Sample/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /SwipeLoadingLayout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/SwipeLoadingLayout.gif -------------------------------------------------------------------------------- /SwipeLoadingLayout/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/SwipeLoadingLayout/build.gradle -------------------------------------------------------------------------------- /SwipeLoadingLayout/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SwipeLoadingLayout/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/SwipeLoadingLayout/proguard-rules.pro -------------------------------------------------------------------------------- /SwipeLoadingLayout/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/SwipeLoadingLayout/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /SwipeLoadingLayout/src/main/java/com/dreamgyf/android/ui/widget/swipe/DefaultSwipeLoadingEndView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/SwipeLoadingLayout/src/main/java/com/dreamgyf/android/ui/widget/swipe/DefaultSwipeLoadingEndView.kt -------------------------------------------------------------------------------- /SwipeLoadingLayout/src/main/java/com/dreamgyf/android/ui/widget/swipe/DefaultSwipeLoadingLoadMoreView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/SwipeLoadingLayout/src/main/java/com/dreamgyf/android/ui/widget/swipe/DefaultSwipeLoadingLoadMoreView.kt -------------------------------------------------------------------------------- /SwipeLoadingLayout/src/main/java/com/dreamgyf/android/ui/widget/swipe/DefaultSwipeLoadingRefreshView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/SwipeLoadingLayout/src/main/java/com/dreamgyf/android/ui/widget/swipe/DefaultSwipeLoadingRefreshView.kt -------------------------------------------------------------------------------- /SwipeLoadingLayout/src/main/java/com/dreamgyf/android/ui/widget/swipe/SwipeLoadingAssistView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/SwipeLoadingLayout/src/main/java/com/dreamgyf/android/ui/widget/swipe/SwipeLoadingAssistView.kt -------------------------------------------------------------------------------- /SwipeLoadingLayout/src/main/java/com/dreamgyf/android/ui/widget/swipe/SwipeLoadingLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/SwipeLoadingLayout/src/main/java/com/dreamgyf/android/ui/widget/swipe/SwipeLoadingLayout.kt -------------------------------------------------------------------------------- /SwipeLoadingLayout/src/main/res/drawable-xxhdpi/ic_loading_20px_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/SwipeLoadingLayout/src/main/res/drawable-xxhdpi/ic_loading_20px_black.png -------------------------------------------------------------------------------- /SwipeLoadingLayout/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/SwipeLoadingLayout/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamgyf/SwipeLoadingLayout/HEAD/settings.gradle --------------------------------------------------------------------------------