Splash Screen Mudah di Android Studio untuk Pemula
Step by Step Implementation: Step 1: Open Android Studio and Click on New Project.
Step 2: Choose “Empty Activity” and click Next.
Step 3: Name your project as “Splash Screen Demo” and Click Finish.
Step 4: Copy your logo image and paste it into the drawable folder.
Make sure the logo image is png and the naming convention does not consist of uppercase letters and numbers otherwise it will create errors.
Step 5: Go to activity_main.xml and type the below code.
You can customize your own background color as per your brand as well as your logo.
In the activity_main.xml design section, click on the image.
Tip: Right-click on the image and Click on Center. You have to center the image horizontally as well as vertically to make it in the middle of the screen.
<?xml version="1.0" encoding="utf-8"?>
< androidx.constraintlayout.widget.ConstraintLayout xmlns:android = "http://schemas.android.com/apk/res/android"
xmlns:app = "http://schemas.android.com/apk/res-auto"
xmlns:tools = "http://schemas.android.com/tools"
android:layout_width = "match_parent"
android:layout_height = "match_parent"
android:background = "@color/purple_500" //Add your background color here
tools:context = ".MainActivity" >
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:src = "@drawable/aklogo" //Add your logo here
app:layout_constraintBottom_toBottomOf = "parent"
app:layout_constraintEnd_toEndOf = "parent"
app:layout_constraintHorizontal_bias = "0.5"
app:layout_constraintStart_toStartOf = "parent"
app:layout_constraintTop_toTopOf = "parent" />
</ androidx.constraintlayout.widget.ConstraintLayout >
Step 6: Create second activity named as HomeActivity and type the below code in activity_home.xml
After the splash screen disappears, then the second activity will be opened.
<?xml version="1.0" encoding="utf-8"?>
< androidx.constraintlayout.widget.ConstraintLayout xmlns:android = "http://schemas.android.com/apk/res/android"
xmlns:app = "http://schemas.android.com/apk/res-auto"
xmlns:tools = "http://schemas.android.com/tools"
android:layout_width = "match_parent"
android:layout_height = "match_parent"
tools:context = ".HomeActivity" >
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:text = "Welcome to Android Knowledge"
android:textColor = "@color/black"
app:layout_constraintBottom_toBottomOf = "parent"
app:layout_constraintEnd_toEndOf = "parent"
app:layout_constraintHorizontal_bias = "0.5"
app:layout_constraintStart_toStartOf = "parent"
app:layout_constraintTop_toTopOf = "parent" />
</ androidx.constraintlayout.widget.ConstraintLayout >
Step 7: Type the below code in MainActivity.java
package com.example.splashscreendemo ;
import androidx.appcompat.app.AppCompatActivity ;
import android.content.Intent ;
import android.os.Bundle ;
import android.os.Handler ;
public class MainActivity extends AppCompatActivity {
public static int SPLASH_TIMER = 3000 ;
protected void onCreate ( Bundle savedInstanceState ) {
super . onCreate ( savedInstanceState ) ;
setContentView ( R. layout . activity_main ) ;
new Handler () . postDelayed ( new Runnable () {
Intent intent = new Intent ( MainActivity. this , HomeActivity. class ) ;
Step 8: Go to AndroidManifest.xml and type the below code.
<?xml version="1.0" encoding="utf-8"?>
< manifest xmlns:android = "http://schemas.android.com/apk/res/android"
package = "com.example.splashscreendemo" >
android:allowBackup = "true"
android:icon = "@mipmap/ic_launcher"
android:label = "@string/app_name"
android:roundIcon = "@mipmap/ic_launcher_round"
android:supportsRtl = "true"
android:theme = "@style/Theme.SplashScreenDemo" >
android:name = ".HomeActivity"
android:exported = "true" />
android:name = ".MainActivity"
android:theme = "@style/Theme.MaterialComponents.DayNight.NoActionBar" > //Fullscreen
< action android:name = "android.intent.action.MAIN" />
< category android:name = "android.intent.category.LAUNCHER" />
Output
0 Komentar