Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 1.22 KB

README.md

File metadata and controls

44 lines (33 loc) · 1.22 KB

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