Many popular Android Apps such as Skype, Facebook, Adobe Reader, 500px, Dropbox etc., uses splash screen to display their logo. Most Android Apps uses Android Splash Screen before launching application Activity. Android splash screen is used to display a logo or brand for an app. In this article we are going to discuss about implementing an Android Splash Screen in a simple manner. Click on File > New Project. Next, define Application Name and Minimum SDK and hit Next Select Blank Activity and Hit Next . Activity name as SplashScreen Hit Finish This creates a simple Hello world Project for which we will implement android Splash screen. With Activity name SplashScreen Create new activity, Select it as blank activity. Name it as Second activity Open SplashScreen.java package com . example . test ; import android . app . Activity ; import android . content . Intent ; import android . os . Bundle ; public class SplashScreen ext...