Skip to content

naved997/Android-Splash-Screen-Example

Repository files navigation

Android-Splash-Screen-Example

This is a simple example for Android Splash Screen.

Splash Screen

A Splash Screen is a introductory screen which is a first startup screen and appears when application opened. It is also appears when application fetches the relevant content such as Network Calls and Database.

Use of Splash Screen

  1. It is used to beautify and animate startup screen for an application.
  2. It is used to load Network Calls and Database in background.

Concept

new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent i=new Intent(MainActivity.this,Home.class);
startActivity(i);
finish();
}
},5000);







Splash icons created by AbtoCreative - Flaticon

About

Simple Android Splash Screen

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages