Android

splash 화면

지 슈 2023. 1. 3. 15:47

splash 화면이란 모바일 앱 실행 시, 애플리케이션의 첫 화면이다.

1~3초 정도 사용자에게 보여주다가 서비스로 넘어간다.

 

1. SplashActivity를 만든다.

 

2. 앱을 실행하고 첫 화면으로 splash화면을 설정하려면,

AndroidManifest.xml 창에서 첫 번째 <activity/></activity> 사이에

<intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>

 를 옮겨 넣는다. 

 

3. splash 화면에 사진 삽입

java > res > layout > activity_splash.xml

의 ImageView를 하나 만든다.

 <ImageView
        android:src="@drawable/splash"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>