Posts

Showing posts with the label Splash Screen

Best Ways To Use Android Splash Screen

Image
Android Splash Screen is the first screen visible to the user when the application’s launched. Splash screen is one of the most vital screens in the application since it’s the user’s first experience with the application. Splash screens are used to display some animations (typically of the application logo) and illustrations while some data for the next screens are fetched. Typically, the Activity that has the following intent filter set in the AndroidManifest.xml file is the Splash Activity. < intent-filter > < action android:name = "android.intent.action.MAIN" /> < category android:name = "android.intent.category.LAUNCHER" /> </ intent-filter > Android Splash Screen Example Project Structure There are few ways to create the initial screen i.e. Splash Screen of the application. Let’s see each of them. Splash Screen Classical Approach SplashActivity.java import android.content.I...