Posts

Showing posts with the label create splash screen

Splash Screen (Kotlin) - Android Studio

Image
      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...

Splash Screen (Java) - Android Studio

Image
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. 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: AndroidManifest.xml <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android= "http://schemas.android.com/apk/res/android" package= "com.blogspot.devofandroid.myapplication" > <application android:allowBackup= "true" android:icon= "@mipmap/ic_launcher" android:label= "...