To Watch video tutorial click here
step 1
- Create new project with activity name "SplashScreen"
step 2
- go to spashscreen xml file
- create Relative layout
- add image view (for your logo)
- also add textview for display your company name .
- Add image and text as you want
step 3
- go to splashscreen.java file and type following code :
private static int SPLASH_TIME_OUT = 5000;
new Handler().postDelayed(new Runnable() { @Override public void run() { Intent homeIntent = new Intent(SplashScreen.this, MainActivity.class);startActivity(homeIntent);finish();} }, SPLASH_TIME_OUT);
step 4
- create your home activity name as "mainActivity"
- add textview or what you want
- Done . Launch your App