├── .gitignore ├── .idea ├── gradle.xml ├── misc.xml ├── modules.xml └── runConfigurations.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── net │ │ └── vrgsoft │ │ └── parallaxview │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── net │ │ │ └── vrgsoft │ │ │ └── parallaxview │ │ │ ├── MainActivity.kt │ │ │ └── TestAdapter.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-xxxhdpi │ │ ├── earth.png │ │ ├── fast_furious_back.png │ │ ├── fast_furious_front.png │ │ ├── game_of_thrones_back.png │ │ ├── game_of_thrones_front.png │ │ ├── jupiter.png │ │ ├── mars.png │ │ ├── mercury.png │ │ ├── mult_back.png │ │ ├── mult_front.png │ │ ├── neptune.png │ │ ├── saturn.png │ │ ├── sherlok_back.png │ │ ├── sherlok_front.png │ │ ├── space.jpg │ │ ├── star_wars_back.png │ │ ├── star_wars_front.png │ │ ├── uranus.png │ │ └── venus.png │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ └── ic_navigate_next.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── fragment_scroll.xml │ │ └── item.xml │ │ ├── menu │ │ └── menu.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── net │ └── vrgsoft │ └── parallaxview │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── parallax ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── net │ │ └── vrgsoft │ │ └── parallaxview │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── net │ │ │ └── vrgsoft │ │ │ └── parallaxview │ │ │ └── ParallaxView.kt │ └── res │ │ └── values │ │ ├── attrs.xml │ │ └── strings.xml │ └── test │ └── java │ └── net │ └── vrgsoft │ └── parallaxview │ └── ExampleUnitTest.java ├── scroll1.gif ├── scroll2.gif └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/net/vrgsoft/parallaxview/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/androidTest/java/net/vrgsoft/parallaxview/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/net/vrgsoft/parallaxview/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/java/net/vrgsoft/parallaxview/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/net/vrgsoft/parallaxview/TestAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/java/net/vrgsoft/parallaxview/TestAdapter.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/drawable-xxxhdpi/earth.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/fast_furious_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/drawable-xxxhdpi/fast_furious_back.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/fast_furious_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/drawable-xxxhdpi/fast_furious_front.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/game_of_thrones_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/drawable-xxxhdpi/game_of_thrones_back.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/game_of_thrones_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/drawable-xxxhdpi/game_of_thrones_front.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/jupiter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/drawable-xxxhdpi/jupiter.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/mars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/drawable-xxxhdpi/mars.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/mercury.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/drawable-xxxhdpi/mercury.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/mult_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/drawable-xxxhdpi/mult_back.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/mult_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/drawable-xxxhdpi/mult_front.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/neptune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/drawable-xxxhdpi/neptune.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/saturn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/drawable-xxxhdpi/saturn.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sherlok_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/drawable-xxxhdpi/sherlok_back.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sherlok_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/drawable-xxxhdpi/sherlok_front.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/drawable-xxxhdpi/space.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/star_wars_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/drawable-xxxhdpi/star_wars_back.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/star_wars_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/drawable-xxxhdpi/star_wars_front.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/uranus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/drawable-xxxhdpi/uranus.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/venus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/drawable-xxxhdpi/venus.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_navigate_next.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/drawable/ic_navigate_next.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_scroll.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/layout/fragment_scroll.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/layout/item.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/menu/menu.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/net/vrgsoft/parallaxview/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/app/src/test/java/net/vrgsoft/parallaxview/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/gradlew.bat -------------------------------------------------------------------------------- /parallax/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /parallax/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/parallax/build.gradle -------------------------------------------------------------------------------- /parallax/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/parallax/proguard-rules.pro -------------------------------------------------------------------------------- /parallax/src/androidTest/java/net/vrgsoft/parallaxview/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/parallax/src/androidTest/java/net/vrgsoft/parallaxview/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /parallax/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/parallax/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /parallax/src/main/java/net/vrgsoft/parallaxview/ParallaxView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/parallax/src/main/java/net/vrgsoft/parallaxview/ParallaxView.kt -------------------------------------------------------------------------------- /parallax/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/parallax/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /parallax/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/parallax/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /parallax/src/test/java/net/vrgsoft/parallaxview/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/parallax/src/test/java/net/vrgsoft/parallaxview/ExampleUnitTest.java -------------------------------------------------------------------------------- /scroll1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/scroll1.gif -------------------------------------------------------------------------------- /scroll2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VRGsoftUA/ParallaxView/HEAD/scroll2.gif -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':parallax' 2 | --------------------------------------------------------------------------------