├── .gitignore ├── .idea ├── caches │ └── build_file_checksums.ser ├── codeStyles │ └── Project.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── app-release.apk ├── build.gradle ├── proguard-rules.pro ├── release │ └── output.json └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── example │ │ └── cheng │ │ └── complexanimation │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── cheng │ │ │ └── complexanimation │ │ │ ├── MainActivity.kt │ │ │ ├── util │ │ │ └── Util.kt │ │ │ └── view │ │ │ ├── AnimationGroup.kt │ │ │ ├── AnimationInterface.kt │ │ │ ├── Band.kt │ │ │ ├── NavigationBarView.kt │ │ │ ├── RotateAnimationManager.kt │ │ │ └── TranslationAnimationManager.kt │ └── res │ │ ├── drawable-hdpi │ │ ├── p_1.png │ │ ├── p_2.png │ │ ├── p_3.png │ │ ├── p_4.png │ │ └── p_5.png │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── circle_drawable.xml │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ └── circle_animation.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 │ └── com │ └── example │ └── cheng │ └── complexanimation │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── imitate.mp4 ├── pic ├── c_0.gif ├── c_1.gif ├── c_1.png ├── c_2.gif ├── c_2.png ├── c_3.gif ├── c_3.png ├── c_4.gif ├── c_4.png ├── c_5.gif ├── c_5.png └── c_6.png └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/app-release.apk -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/release/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/release/output.json -------------------------------------------------------------------------------- /app/src/androidTest/java/com/example/cheng/complexanimation/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/androidTest/java/com/example/cheng/complexanimation/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/example/cheng/complexanimation/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/java/com/example/cheng/complexanimation/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/cheng/complexanimation/util/Util.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/java/com/example/cheng/complexanimation/util/Util.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/cheng/complexanimation/view/AnimationGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/java/com/example/cheng/complexanimation/view/AnimationGroup.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/cheng/complexanimation/view/AnimationInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/java/com/example/cheng/complexanimation/view/AnimationInterface.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/cheng/complexanimation/view/Band.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/java/com/example/cheng/complexanimation/view/Band.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/cheng/complexanimation/view/NavigationBarView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/java/com/example/cheng/complexanimation/view/NavigationBarView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/cheng/complexanimation/view/RotateAnimationManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/java/com/example/cheng/complexanimation/view/RotateAnimationManager.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/cheng/complexanimation/view/TranslationAnimationManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/java/com/example/cheng/complexanimation/view/TranslationAnimationManager.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/p_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/res/drawable-hdpi/p_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/p_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/res/drawable-hdpi/p_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/p_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/res/drawable-hdpi/p_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/p_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/res/drawable-hdpi/p_4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/p_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/res/drawable-hdpi/p_5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/circle_drawable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/res/drawable/circle_drawable.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/circle_animation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/res/layout/circle_animation.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/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/chengxiaobo2/ComplexAnimation/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/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/example/cheng/complexanimation/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/app/src/test/java/com/example/cheng/complexanimation/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/gradlew.bat -------------------------------------------------------------------------------- /imitate.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/imitate.mp4 -------------------------------------------------------------------------------- /pic/c_0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/pic/c_0.gif -------------------------------------------------------------------------------- /pic/c_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/pic/c_1.gif -------------------------------------------------------------------------------- /pic/c_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/pic/c_1.png -------------------------------------------------------------------------------- /pic/c_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/pic/c_2.gif -------------------------------------------------------------------------------- /pic/c_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/pic/c_2.png -------------------------------------------------------------------------------- /pic/c_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/pic/c_3.gif -------------------------------------------------------------------------------- /pic/c_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/pic/c_3.png -------------------------------------------------------------------------------- /pic/c_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/pic/c_4.gif -------------------------------------------------------------------------------- /pic/c_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/pic/c_4.png -------------------------------------------------------------------------------- /pic/c_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/pic/c_5.gif -------------------------------------------------------------------------------- /pic/c_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/pic/c_5.png -------------------------------------------------------------------------------- /pic/c_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chengxiaobo2/ComplexAnimation/HEAD/pic/c_6.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------