* color.xml의 디렉터리(파일 위치)는 당신의 개발 환경에 따라 조금씩 다를 수 있습니다.
<color name="windowBackground">#FFFFFFFF</color>
4. SplashScreenActivity 생성
SplashScreenActivity 코틀린 클래스 하나 생성하셔서 아래의 코드를 기입합니다.
class SplashScreenActivity : AppCompatActivity() {
// After 3000 mileSeconds / 3 seconds your next activity will display.
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_splash_screen)
loadSplashScreen()
}
private fun loadSplashScreen(){
Handler().postDelayed({
// You can declare your desire activity here to open after finishing splash screen. Like MainActivity
val intent = Intent(this,MainActivity::class.java)
startActivity(intent)
finish()
}, 3000)
}
}