项目作者: sadeghpro

项目描述 :
android splash screen
高级语言: Java
项目地址: git://github.com/sadeghpro/AndroidSplash.git
创建时间: 2019-03-10T14:42:08Z
项目社区:https://github.com/sadeghpro/AndroidSplash

开源协议:MIT License

下载


AndroidSplash

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.

Demo

What the library is capable of is shown in this youtube video:

ScreenShot

You can download the demo app [here]
(https://github.com/ViksaaSkool/AwesomeSplash/blob/master/rdme/awesome_splash_demo.apk?raw=true)

Prerequisites/Credits

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).

Usage

Add this to your build.grade:

  1. repositories {
  2. //...
  3. maven { url "https://jitpack.io" }
  4. }

and then in dependencies:

  1. dependencies {
  2. implementation 'com.github.sadeghpro:AndroidSplash:v1.0.2'
  3. }

Here is how you utilze the library in your java code:

  1. //extends AndroidSplash!
  2. public class YourActivity extends AndroidSplash {
  3. //DO NOT OVERRIDE onCreate()!
  4. //if you need to start some services do it in initSplash()!
  5. @Override
  6. public void initSplash(ConfigSplash configSplash) {
  7. /* you don't have to override every property */
  8. //Customize Circular Reveal
  9. configSplash.setBackgroundColor(R.color.primary); //any color you want form colors.xml
  10. configSplash.setAnimCircularRevealDuration(2000); //int ms
  11. configSplash.setRevealFlagX(Flags.REVEAL_RIGHT); //or Flags.REVEAL_LEFT
  12. configSplash.setRevealFlagY(Flags.REVEAL_BOTTOM); //or Flags.REVEAL_TOP
  13. //Choose LOGO OR PATH; if you don't provide String value for path it's logo by default
  14. //Customize Logo
  15. configSplash.setLogoSplash(R.mipmap.ic_launcher); //or any other drawable
  16. configSplash.setAnimLogoSplashDuration(2000); //int ms
  17. configSplash.setAnimLogoSplashTechnique(Techniques.Bounce); //choose one form Techniques (ref: https://github.com/daimajia/AndroidViewAnimations)
  18. //Customize Path
  19. configSplash.setPathSplash(Constants.DROID_LOGO); //set path String
  20. configSplash.setOriginalHeight(400); //in relation to your svg (path) resource
  21. configSplash.setOriginalWidth(400); //in relation to your svg (path) resource
  22. configSplash.setAnimPathStrokeDrawingDuration(3000);
  23. configSplash.setPathSplashStrokeSize(3); //I advise value be <5
  24. configSplash.setPathSplashStrokeColor(R.color.accent); //any color you want form colors.xml
  25. configSplash.setAnimPathFillingDuration(3000);
  26. configSplash.setPathSplashFillColor(R.color.Wheat); //path object filling color
  27. //Customize Title
  28. configSplash.setTitleSplash("My Awesome App");
  29. configSplash.setTitleTextColor(R.color.Wheat);
  30. configSplash.setTitleTextSize(30f); //float value
  31. configSplash.setAnimTitleDuration(3000);
  32. configSplash.setAnimTitleTechnique(Techniques.FlipInX);
  33. configSplash.setTitleFont("fonts/myfont.ttf"); //provide string to your font located in assets/fonts/
  34. }
  35. @Override
  36. public void animationsFinished() {
  37. //transit to another activity here
  38. //or do whatever you want
  39. }
  40. }