Skip to content

Android library for getting a nice and simple SlashScreen into your Android app

Notifications You must be signed in to change notification settings

morristech/SplashScreen

 
 

Repository files navigation

Android SplashScreen

Android Arsenal API

Android library for getting a nice and simple SlashScreen into your Android app.

Animated demo

Installation

Up to now, the library is only available in JitPack. Please add this code to your build.gradle file on project level:

allprojects {
  repositories {
    ...
    maven { url 'https://jitpack.io' }
  }
}

To load the library into your project use this code in the build.gradle file within the app module:

  implementation 'com.github.mrgames13:SplashScreen:1.0.0'

Usage

To use the SplashScreen, paste this code to the beginning of the onCreate method of the launcher activity of your app. For better performance, we recommend to do this before setContentView().

SplashScreenBuilder.getInstance(this)
                .setVideo(R.raw.splash_animation)
                .setImage(R.drawable.app_icon)
                .show();

You can customize the appearance of the SplashScreen using following arguments when building the Activity with SplashScreenBuilder:

Method Description
setVideo(int res_id) Sets the animation video of the SplashScreen. You have to pass this argument, otherwise the app will get an error.
setImage(int res_id) Sets the image of the SplashScreen, which is displayed when the animation has ended. You have to pass this argument, otherwise the app will get an error.
setTextFadeInDuration(int millis) You can call this method to set the duration of the fade in animation of the title and the subtitle.
setTitle(String title) This method replaces the name of your app, which is the default title of the SplashScreen, with a custom string.
setSubtitle(String title) This method replaces the default subtitle, with a custom string.

Thank you for using the SplashScreen!

© M&R Games 2018 (Designed and developed by Marc Auberer in 2018)

About

Android library for getting a nice and simple SlashScreen into your Android app

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%