├── .gitignore ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── markdown-navigator.xml ├── markdown-navigator │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── a.gif ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── worksplash │ │ └── akscorp │ │ └── myapplication │ │ ├── MenuActivity.kt │ │ └── examples_activity │ │ ├── WithHeaderNoScale.kt │ │ ├── WithHeaderScale.kt │ │ └── WithoutHeader.kt │ └── res │ ├── drawable │ ├── ic_launcher_background.xml │ ├── img.jpg │ └── rounded_dialog.xml │ ├── layout │ ├── menu_activity.xml │ ├── with_header.xml │ └── without_header.xml │ └── values │ ├── strings.xml │ └── styles.xml ├── b.gif ├── c.gif ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── overscrollablescrollview ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── akscorp │ └── overscrollablescrollview │ └── OverscrollableNestedScrollView.kt └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/.idea/markdown-navigator/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/README.md -------------------------------------------------------------------------------- /a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/a.gif -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/worksplash/akscorp/myapplication/MenuActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/app/src/main/java/com/worksplash/akscorp/myapplication/MenuActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/worksplash/akscorp/myapplication/examples_activity/WithHeaderNoScale.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/app/src/main/java/com/worksplash/akscorp/myapplication/examples_activity/WithHeaderNoScale.kt -------------------------------------------------------------------------------- /app/src/main/java/com/worksplash/akscorp/myapplication/examples_activity/WithHeaderScale.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/app/src/main/java/com/worksplash/akscorp/myapplication/examples_activity/WithHeaderScale.kt -------------------------------------------------------------------------------- /app/src/main/java/com/worksplash/akscorp/myapplication/examples_activity/WithoutHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/app/src/main/java/com/worksplash/akscorp/myapplication/examples_activity/WithoutHeader.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/app/src/main/res/drawable/img.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/app/src/main/res/drawable/rounded_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/menu_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/app/src/main/res/layout/menu_activity.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/with_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/app/src/main/res/layout/with_header.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/without_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/app/src/main/res/layout/without_header.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/b.gif -------------------------------------------------------------------------------- /c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/c.gif -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/gradlew.bat -------------------------------------------------------------------------------- /overscrollablescrollview/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/overscrollablescrollview/.gitignore -------------------------------------------------------------------------------- /overscrollablescrollview/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/overscrollablescrollview/build.gradle -------------------------------------------------------------------------------- /overscrollablescrollview/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/overscrollablescrollview/proguard-rules.pro -------------------------------------------------------------------------------- /overscrollablescrollview/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/overscrollablescrollview/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /overscrollablescrollview/src/main/java/com/akscorp/overscrollablescrollview/OverscrollableNestedScrollView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/overscrollablescrollview/src/main/java/com/akscorp/overscrollablescrollview/OverscrollableNestedScrollView.kt -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vovaksenov99/OverscrollableScrollView/HEAD/settings.gradle --------------------------------------------------------------------------------