This repo is based on ViksaaSkool/AwesomeSplash and have almost all functionality of it and for now I only add support of android api 28.
Awesome-looking customizable splash screen
Splash screens have been around for quite a while. It's the first thing the users see when they run your app, so make it simple yet eventful and impressionable. This library does exactly that, provides you with beautiful template screen, with wide range of customizations to fit your concept of the splash screen. To be noted, with the last acknowledgement form google that splash screens got, having a library that tackles this issue is kind of necessity.
Ready to see implementation details? Let's scroll.
What the library is capable of is shown in this youtube video:
You can download the demo app [here] (https://github.com/ViksaaSkool/AwesomeSplash/blob/master/rdme/awesome_splash_demo.apk?raw=true)
This library is based and utilizes 3 great libraries:
So before diving into AwesomeSplash library, look into the libraries. Especially make sure you understand the concept of SVG path and look deeply on how to create you custom svg (and get the string values needed for AwesomeSplash).
Add this to your build.grade:
repositories{//...maven{url"https://jitpack.io"}}and then in dependencies:
dependencies{implementation'com.github.sadeghpro:AndroidSplash:v1.0.2'}Here is how you utilze the library in your java code:
//extends AndroidSplash!publicclassYourActivityextendsAndroidSplash {
//DO NOT OVERRIDE onCreate()!//if you need to start some services do it in initSplash()!@OverridepublicvoidinitSplash(ConfigSplashconfigSplash) {
/* you don't have to override every property *///Customize Circular RevealconfigSplash.setBackgroundColor(R.color.primary); //any color you want form colors.xmlconfigSplash.setAnimCircularRevealDuration(2000); //int msconfigSplash.setRevealFlagX(Flags.REVEAL_RIGHT); //or Flags.REVEAL_LEFTconfigSplash.setRevealFlagY(Flags.REVEAL_BOTTOM); //or Flags.REVEAL_TOP//Choose LOGO OR PATH; if you don't provide String value for path it's logo by default//Customize LogoconfigSplash.setLogoSplash(R.mipmap.ic_launcher); //or any other drawableconfigSplash.setAnimLogoSplashDuration(2000); //int msconfigSplash.setAnimLogoSplashTechnique(Techniques.Bounce); //choose one form Techniques (ref: https://github.com/daimajia/AndroidViewAnimations)//Customize PathconfigSplash.setPathSplash(Constants.DROID_LOGO); //set path StringconfigSplash.setOriginalHeight(400); //in relation to your svg (path) resourceconfigSplash.setOriginalWidth(400); //in relation to your svg (path) resourceconfigSplash.setAnimPathStrokeDrawingDuration(3000);
configSplash.setPathSplashStrokeSize(3); //I advise value be <5configSplash.setPathSplashStrokeColor(R.color.accent); //any color you want form colors.xmlconfigSplash.setAnimPathFillingDuration(3000);
configSplash.setPathSplashFillColor(R.color.Wheat); //path object filling color//Customize TitleconfigSplash.setTitleSplash("My Awesome App");
configSplash.setTitleTextColor(R.color.Wheat);
configSplash.setTitleTextSize(30f); //float valueconfigSplash.setAnimTitleDuration(3000);
configSplash.setAnimTitleTechnique(Techniques.FlipInX);
configSplash.setTitleFont("fonts/myfont.ttf"); //provide string to your font located in assets/fonts/
}
@OverridepublicvoidanimationsFinished() {
//transit to another activity here//or do whatever you want
}
}


