├── .gitignore ├── .idea ├── .gitignore ├── compiler.xml ├── dbnavigator.xml ├── deploymentTargetDropDown.xml ├── encodings.xml ├── gradle.xml ├── jarRepositories.xml ├── misc.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── example │ │ └── splash │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── splash │ │ │ ├── MyApplication.kt │ │ │ ├── activity │ │ │ ├── Android12SplashActivity.kt │ │ │ ├── CustomizeSplashActivity.kt │ │ │ ├── ImageMainActivity.kt │ │ │ ├── JetpackSplashActivity.kt │ │ │ ├── MainActivity.kt │ │ │ ├── OldMainActivity.kt │ │ │ └── SplashActivity.kt │ │ │ ├── observer │ │ │ └── MyLifecycleObserver.kt │ │ │ └── viewmodel │ │ │ └── MyViewModel.kt │ └── res │ │ ├── animator-v22 │ │ └── ic_alarm_animation_button.xml │ │ ├── drawable-v24 │ │ ├── ic_launcher_animated_sample.xml │ │ ├── ic_launcher_animated_sample_2.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── ic_launcher_foreground_animated.xml │ │ └── ic_launcher_sample.xml │ │ ├── drawable-xxhdpi │ │ ├── xiaomi_brand.jpg │ │ └── xiaomi_brand_small.jpg │ │ ├── drawable │ │ ├── ic_alarm.xml │ │ ├── ic_alarm_fab.xml │ │ ├── ic_alarm_small.xml │ │ ├── ic_alarm_tab_static.xml │ │ ├── ic_app_bundle_logo.xml │ │ ├── ic_brand_tm_bold.png │ │ ├── ic_brand_tm_bold_black.png │ │ ├── ic_brand_tm_bold_white.png │ │ ├── ic_brand_tm_bold_yellow.png │ │ ├── ic_brand_tm_normal.png │ │ ├── ic_icon_bird.xml │ │ ├── ic_icon_bird_old.xml │ │ ├── ic_icon_movie.xml │ │ ├── ic_icon_movie_adp.xml │ │ ├── ic_icon_movie_adp_animated.xml │ │ ├── ic_icon_movie_adp_latest.xml │ │ ├── ic_icon_movie_adp_latest_animated.xml │ │ ├── ic_icon_movie_animated.xml │ │ ├── ic_icon_movie_mine.xml │ │ ├── ic_icon_movie_mine_animated.xml │ │ ├── ic_im_movie.xml │ │ ├── ic_kotlin_android.xml │ │ ├── ic_kotlin_hero.xml │ │ ├── ic_kotlin_hero_animated.xml │ │ ├── ic_kotlin_hero_new.xml │ │ ├── ic_kotlin_hero_new_animated.xml │ │ ├── ic_kotlin_hero_new_animated_rotate.xml │ │ ├── ic_kotlin_hero_new_animated_slide.xml │ │ ├── ic_kotlin_hero_new_animated_total.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_launcher_round_for_splash.png │ │ ├── ic_mi_logo.xml │ │ ├── ic_movie_logo_animated.xml │ │ ├── ic_splash.xml │ │ ├── ic_splash_bg.PNG │ │ ├── ic_splash_bg_kt.xml │ │ ├── ic_splash_test.PNG │ │ ├── ic_splash_xiaomi.xml │ │ ├── ic_splash_zhihu.xml │ │ ├── ic_tm_brand.png │ │ ├── ic_tm_brand_new.png │ │ ├── ic_tm_brand_newer.png │ │ ├── ic_tm_logo.png │ │ ├── ic_vinyl_dark_grey.xml │ │ ├── ic_zhihu_brand.png │ │ ├── ic_zhihu_logo.jpg │ │ ├── xiaomi_logo_2021.png │ │ ├── xiaomi_logo_black.jpg │ │ ├── xiaomi_logo_brand.jpeg │ │ ├── xiaomi_logo_new.jpg │ │ ├── xiaomi_logo_white.jpg │ │ └── xiaomi_logo_white_2.jpg │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── activity_main_simple.xml │ │ ├── activity_splash.xml │ │ ├── activity_splash_cus.xml │ │ └── activity_temp.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 │ │ └── ic_launcher_round_bg.png │ │ ├── values-v23 │ │ ├── styles-new.xml │ │ └── styles.xml │ │ ├── values-v26 │ │ ├── styles-old.xml │ │ └── styles.xml │ │ ├── values-v31 │ │ ├── styles-new.xml │ │ └── styles.xml │ │ └── values │ │ ├── colors.xml │ │ ├── colors_new.xml │ │ ├── constants.xml │ │ ├── strings.xml │ │ ├── styles-new.xml │ │ ├── styles-old.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── example │ └── splash │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshots ├── jet-splash-enter-12.gif ├── jet-splash-enter-8.gif ├── jet-splash-exit-icon-12.gif ├── jet-splash-exit-icon-8.gif ├── jet-splash-exit-total-12.gif ├── jet-splash-exit-total-8.gif ├── jet-splash-longer-12.gif └── jet-splash-longer-8.gif └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/dbnavigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/.idea/dbnavigator.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/example/splash/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/androidTest/java/com/example/splash/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/example/splash/MyApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/java/com/example/splash/MyApplication.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/splash/activity/Android12SplashActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/java/com/example/splash/activity/Android12SplashActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/splash/activity/CustomizeSplashActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/java/com/example/splash/activity/CustomizeSplashActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/splash/activity/ImageMainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/java/com/example/splash/activity/ImageMainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/splash/activity/JetpackSplashActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/java/com/example/splash/activity/JetpackSplashActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/splash/activity/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/java/com/example/splash/activity/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/splash/activity/OldMainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/java/com/example/splash/activity/OldMainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/splash/activity/SplashActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/java/com/example/splash/activity/SplashActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/splash/observer/MyLifecycleObserver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/java/com/example/splash/observer/MyLifecycleObserver.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/splash/viewmodel/MyViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/java/com/example/splash/viewmodel/MyViewModel.kt -------------------------------------------------------------------------------- /app/src/main/res/animator-v22/ic_alarm_animation_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/animator-v22/ic_alarm_animation_button.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_animated_sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable-v24/ic_launcher_animated_sample.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_animated_sample_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable-v24/ic_launcher_animated_sample_2.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground_animated.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable-v24/ic_launcher_sample.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/xiaomi_brand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable-xxhdpi/xiaomi_brand.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/xiaomi_brand_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable-xxhdpi/xiaomi_brand_small.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_alarm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_alarm.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_alarm_fab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_alarm_fab.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_alarm_small.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_alarm_small.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_alarm_tab_static.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_alarm_tab_static.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_app_bundle_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_app_bundle_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_brand_tm_bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_brand_tm_bold.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_brand_tm_bold_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_brand_tm_bold_black.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_brand_tm_bold_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_brand_tm_bold_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_brand_tm_bold_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_brand_tm_bold_yellow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_brand_tm_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_brand_tm_normal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_icon_bird.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_icon_bird.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_icon_bird_old.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_icon_bird_old.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_icon_movie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_icon_movie.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_icon_movie_adp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_icon_movie_adp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_icon_movie_adp_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_icon_movie_adp_animated.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_icon_movie_adp_latest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_icon_movie_adp_latest.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_icon_movie_adp_latest_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_icon_movie_adp_latest_animated.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_icon_movie_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_icon_movie_animated.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_icon_movie_mine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_icon_movie_mine.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_icon_movie_mine_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_icon_movie_mine_animated.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_im_movie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_im_movie.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_kotlin_android.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_kotlin_android.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_kotlin_hero.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_kotlin_hero.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_kotlin_hero_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_kotlin_hero_animated.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_kotlin_hero_new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_kotlin_hero_new.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_kotlin_hero_new_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_kotlin_hero_new_animated.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_kotlin_hero_new_animated_rotate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_kotlin_hero_new_animated_rotate.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_kotlin_hero_new_animated_slide.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_kotlin_hero_new_animated_slide.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_kotlin_hero_new_animated_total.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_kotlin_hero_new_animated_total.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_round_for_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_launcher_round_for_splash.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_mi_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_mi_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_movie_logo_animated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_movie_logo_animated.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_splash.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_splash_bg.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_splash_bg.PNG -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_splash_bg_kt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_splash_bg_kt.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_splash_test.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_splash_test.PNG -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_splash_xiaomi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_splash_xiaomi.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_splash_zhihu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_splash_zhihu.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_tm_brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_tm_brand.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_tm_brand_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_tm_brand_new.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_tm_brand_newer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_tm_brand_newer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_tm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_tm_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_vinyl_dark_grey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_vinyl_dark_grey.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_zhihu_brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_zhihu_brand.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_zhihu_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/ic_zhihu_logo.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/xiaomi_logo_2021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/xiaomi_logo_2021.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/xiaomi_logo_black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/xiaomi_logo_black.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/xiaomi_logo_brand.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/xiaomi_logo_brand.jpeg -------------------------------------------------------------------------------- /app/src/main/res/drawable/xiaomi_logo_new.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/xiaomi_logo_new.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/xiaomi_logo_white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/xiaomi_logo_white.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/xiaomi_logo_white_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/drawable/xiaomi_logo_white_2.jpg -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/layout/activity_main_simple.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/layout/activity_splash.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_splash_cus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/layout/activity_splash_cus.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_temp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/layout/activity_temp.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/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/ellisonchan/SplashScreen/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/ellisonchan/SplashScreen/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round_bg.png -------------------------------------------------------------------------------- /app/src/main/res/values-v23/styles-new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/values-v23/styles-new.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v23/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/values-v23/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v26/styles-old.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/values-v26/styles-old.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v26/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/values-v26/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v31/styles-new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/values-v31/styles-new.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/values-v31/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors_new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/values/colors_new.xml -------------------------------------------------------------------------------- /app/src/main/res/values/constants.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/values/constants.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles-new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/values/styles-new.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles-old.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/values/styles-old.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/example/splash/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/app/src/test/java/com/example/splash/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/gradlew.bat -------------------------------------------------------------------------------- /screenshots/jet-splash-enter-12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/screenshots/jet-splash-enter-12.gif -------------------------------------------------------------------------------- /screenshots/jet-splash-enter-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/screenshots/jet-splash-enter-8.gif -------------------------------------------------------------------------------- /screenshots/jet-splash-exit-icon-12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/screenshots/jet-splash-exit-icon-12.gif -------------------------------------------------------------------------------- /screenshots/jet-splash-exit-icon-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/screenshots/jet-splash-exit-icon-8.gif -------------------------------------------------------------------------------- /screenshots/jet-splash-exit-total-12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/screenshots/jet-splash-exit-total-12.gif -------------------------------------------------------------------------------- /screenshots/jet-splash-exit-total-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/screenshots/jet-splash-exit-total-8.gif -------------------------------------------------------------------------------- /screenshots/jet-splash-longer-12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/screenshots/jet-splash-longer-12.gif -------------------------------------------------------------------------------- /screenshots/jet-splash-longer-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellisonchan/SplashScreen/HEAD/screenshots/jet-splash-longer-8.gif -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "SplashScreen" --------------------------------------------------------------------------------