Splash Screen (Kotlin) - Android Studio
DESCRIPTION In this tutorial i'll show you how to create a splash screen for your android app using android studio. We need at least two activities one is splash screen and second is some other activity that will display after splash screen. VIDEO SOURCE CODE Step 1: Create a new project OR Open your project Step 2: Create New Activity File>New>Activity>EmptyActivity Step 3: Place an image in res>drawable folder Step 4: Open manifest and add android:theme="@style/Theme.AppCompat.Light.NoActionBar" in <activity android :name= ".SplashActivity" ...> Step 5: Code AndroidMenifest.xml <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android= "http://schemas.android.com/apk/res/android" package= "com.blogspot.atifsoftwares.spla...